/* ========================================
   CSS SahabatDana Customer Service
   Gradient Theme: Green (#1a5f3f to #4ade80)
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Primary Colors - Green Gradient */
    --primary-dark: #1a5f3f;
    --primary: #22863a;
    --primary-light: #2ea44f;
    --primary-lighter: #4ade80;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #1a5f3f 0%, #22863a 50%, #4ade80 100%);
    --gradient-light: linear-gradient(135deg, #4ade80 0%, #a7f3d0 100%);
    --gradient-dark: linear-gradient(135deg, #0f4227 0%, #1a5f3f 100%);
    
    /* Secondary Colors */
    --secondary: #059669;
    --accent: #10b981;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-green: 0 10px 30px rgba(34, 134, 58, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --container-max: 1280px;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--gray-50);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER & NAVBAR ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-green);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(34, 134, 58, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 134, 58, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 4rem 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.floating-card span {
    font-weight: 600;
    color: var(--gray-800);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========== QUICK CONTACT ========== */
.quick-contact {
    padding: 2rem 0;
    background: var(--white);
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.quick-contact-card {
    background: var(--gradient-primary);
    padding: 2rem 3rem;
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-green);
}

.qc-icon {
    font-size: 3rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.qc-content {
    flex: 1;
    color: var(--white);
}

.qc-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.qc-content p {
    opacity: 0.9;
}

.qc-button {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.qc-button:hover {
    transform: scale(1.05);
}

/* ========== SECTIONS ========== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-light);
    color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

/* ========== FEATURES ========== */
.features {
    background: var(--white);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--gray-600);
    line-height: 1.6;
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.visual-card i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.visual-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.visual-card p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ========== FAQ ========== */
.faq {
    background: var(--gray-50);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gray-900);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ========== CONTACT FORM ========== */
.contact-form {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.detail-text p,
.detail-text a {
    color: var(--gray-600);
    line-height: 1.6;
}

.detail-text a:hover {
    color: var(--primary);
}

.form-container {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== TERMS ========== */
.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.terms-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.terms-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.terms-card h3 i {
    color: var(--primary);
}

.terms-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.terms-card li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
    line-height: 1.6;
}

.terms-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-col ul li {
    opacity: 0.9;
}

.footer-col ul a:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

.footer-col ul i {
    margin-right: 0.5rem;
    color: var(--primary-lighter);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ========== FLOATING BUTTONS ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--gradient-primary);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    opacity: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== CS SPECIFIC STYLES ========== */
.cs-main {
    background: var(--white);
    padding: 3rem 0;
}

.cs-hero {
    text-align: center;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-light);
    color: var(--primary-dark);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cs-hero h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.cs-hero p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cs-main-contact {
    max-width: 800px;
    margin: 0 auto;
}

.main-contact-card {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-green);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.contact-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Contact Methods */
.contact-methods {
    background: var(--gray-50);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.method-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.method-icon.phone {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-icon.email {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.method-icon.form {
    background: var(--gradient-primary);
}

.method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.method-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.method-link:hover {
    text-decoration: underline;
}

.method-status {
    display: inline-block;
    background: var(--gradient-light);
    color: var(--primary-dark);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

/* CS Services */
.cs-services {
    background: var(--white);
}

.cs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cs-service-item {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.cs-service-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.cs-service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cs-service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.cs-service-item ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cs-service-item li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
    line-height: 1.6;
}

.cs-service-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Operating Hours */
.operating-hours {
    background: var(--gray-50);
}

.hours-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hours-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.hours-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hours-header h2 {
    font-size: 2rem;
    font-weight: 800;
}

.hours-content {
    padding: 2.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.hours-item .day {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1.125rem;
}

.hours-item .time {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

.hours-note {
    background: var(--gradient-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1rem;
    align-items: start;
}

.hours-note i {
    color: var(--primary-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hours-note p {
    color: var(--primary-dark);
    line-height: 1.6;
    font-weight: 500;
}

/* CS Tips */
.cs-tips {
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--gray-50);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-lighter);
}

.tip-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.tip-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Warning Section */
.warning-section {
    background: var(--gray-50);
}

.warning-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    gap: 2rem;
}

.warning-icon {
    width: 80px;
    height: 80px;
    background: #f59e0b;
    color: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.warning-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 1rem;
}

.warning-content > p {
    color: #78350f;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.warning-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.warning-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #78350f;
}

.warning-point i {
    color: #059669;
    font-size: 1.25rem;
}

.warning-point strong {
    color: #92400e;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-note {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========== CANCELLATION PAGE STYLES ========== */
.important-notice {
    background: var(--white);
    padding: 3rem 0;
}

.notice-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fee2e2;
    border: 2px solid var(--error);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
}

.notice-icon {
    width: 80px;
    height: 80px;
    background: var(--error);
    color: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: pulse-error 2s ease-in-out infinite;
}

@keyframes pulse-error {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.notice-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #991b1b;
    margin-bottom: 1rem;
}

.notice-content p {
    color: #7f1d1d;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.notice-content strong {
    font-weight: 700;
    color: #991b1b;
}

/* Cancellation Steps */
.cancellation-steps {
    background: var(--gray-50);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    overflow: hidden;
    border-left: 6px solid var(--primary);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.step-card:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--gradient-primary);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-content {
    padding: 2.5rem;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.step-content > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.step-action {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.step-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checklist-item i {
    color: var(--success);
    font-size: 1.5rem;
}

.checklist-item span {
    color: var(--gray-700);
    font-weight: 500;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-list li {
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.step-warning {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-warning i {
    color: #f59e0b;
    font-size: 1.75rem;
}

.step-warning span {
    color: #78350f;
    font-weight: 600;
    line-height: 1.5;
}

.status-check {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.status-item {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: start;
    gap: 1rem;
    border: 2px solid;
}

.status-item.can-cancel {
    background: #d1fae5;
    border-color: var(--success);
}

.status-item.cannot-cancel {
    background: #fee2e2;
    border-color: var(--error);
}

.status-item i {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-item.can-cancel i {
    color: var(--success);
}

.status-item.cannot-cancel i {
    color: var(--error);
}

.status-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.status-item.can-cancel strong {
    color: #065f46;
}

.status-item.cannot-cancel strong {
    color: #991b1b;
}

.status-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-lighter);
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -2.4375rem;
    top: 0.25rem;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.timeline-content strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.confirmation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.conf-method {
    background: var(--gradient-light);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.conf-method i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.conf-method span {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.step-success {
    background: #d1fae5;
    border: 2px solid var(--success);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step-success i {
    color: var(--success);
    font-size: 1.75rem;
}

.step-success span {
    color: #065f46;
    font-weight: 600;
    line-height: 1.5;
}

/* Alternative Methods */
.alternative-methods {
    background: var(--white);
}

.methods-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.method-alt-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.method-alt-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.method-alt-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.method-alt-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.method-alt-card ol {
    counter-reset: item;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.method-alt-card ol li {
    counter-increment: item;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-600);
    line-height: 1.6;
}

.method-alt-card ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.email-template {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.method-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #dbeafe;
    border: 2px solid var(--info);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
}

.method-note i {
    color: var(--info);
    font-size: 1.25rem;
}

.method-note span {
    color: #1e40af;
    font-weight: 500;
    line-height: 1.5;
}

.method-note.warning {
    background: #fef3c7;
    border-color: #f59e0b;
}

.method-note.warning i {
    color: #f59e0b;
}

.method-note.warning span {
    color: #78350f;
}

/* FAQ Cancellation */
.faq-cancellation {
    background: var(--gray-50);
}

/* Warning Banner */
.warning-banner {
    background: #fef3c7;
    padding: 3rem 0;
}

.warning-banner-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 3px solid #f59e0b;
    box-shadow: var(--shadow-lg);
}

.warning-banner-icon {
    width: 80px;
    height: 80px;
    background: #f59e0b;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

.warning-banner-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 0.75rem;
}

.warning-banner-text p {
    color: #78350f;
    line-height: 1.7;
}

.warning-banner-text strong {
    color: #92400e;
    font-weight: 700;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content,
    .features-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .quick-contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .methods-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-card,
    .warning-card,
    .warning-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .methods-grid-alt {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-number {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 5rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .method-card,
    .cs-service-item,
    .tip-card,
    .method-alt-card {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
}