 :root {
            --primary-blue: #1a3a52;
            --secondary-teal: #2d7a99;
            --accent-cyan: #0ea5e9;
            --accent-indigo: #6366f1;
            --dark-bg: #f9fafb;
            --card-bg: #ffffff;
            --text-dark: #0f172a;
            --text-light: #64748b;
            --border-light: #e2e8f0;
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
            --shadow-contact: 0 20px 60px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            color: var(--text-dark);
            background-color: var(--dark-bg);
            line-height: 1.6;
            letter-spacing: -0.3px;
        }

/* ==================== HEADER ==================== */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            z-index: 1000;
            box-shadow: var(--shadow-xs);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .logo img {
    max-height: 45px;
    max-width: 160px;
    object-fit: contain;
}


        .cta-header {
            background: #1F4FD8;
            color: white;
            padding: 0.65rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
            text-decoration: none;
            border: none;
            font-size: 0.9rem;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
        }

        .cta-header:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }

        /* ==================== PAGE HEADER ==================== */
        .page-header {
            background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.pexels.com/photos/7709157/pexels-photo-7709157.jpeg?_gl=1*1i7tvbl*_ga*NDY5MjQ2MzQ4LjE3Njk5MTY2OTE.*_ga_8JE65Q40S6*czE3NzA1MzI0NzUkbzQkZzEkdDE3NzA1MzM1NTkkajYwJGwwJGgw') center/cover no-repeat;
            color: white;
            padding: 4rem 2rem 3rem;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            letter-spacing: -1px;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: var(--shadow-contact);
            overflow: hidden;
            border: 1px solid var(--border-light);
            position: relative;
            margin-top: -4rem;
        }

        /* LEFT: FORM */
        .form-container {
            padding: 3rem 3rem 3rem 3.5rem;
        }

        .form-header {
            margin-bottom: 2.5rem;
        }

        .form-header h2 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .form-header p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

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

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

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        .form-control {
            padding: 0.85rem 1rem;
            border: 1px solid var(--border-light);
            border-radius: 10px;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--card-bg);
            transition: var(--transition);
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }

        .form-control::placeholder {
            color: var(--text-light);
            opacity: 0.6;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .btn-submit {
            background: var(--secondary-teal);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.5rem;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        /* RIGHT: CONTACT INFO */
        .info-container {
            background: linear-gradient(165deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
            color: white;
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .info-header {
            margin-bottom: 2.5rem;
        }

        .info-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .info-header p {
            font-size: 0.9rem;
            opacity: 0.85;
            line-height: 1.6;
        }

        .info-items {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            backdrop-filter: blur(10px);
        }

        .info-content {
            flex: 1;
        }

        .info-label {
            font-size: 0.8rem;
            opacity: 0.75;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .info-value {
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .info-value a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .info-value a:hover {
            opacity: 0.8;
        }

        /* ==================== REASSURANCE SECTION ==================== */
        .reassurance-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 5rem;
        }

        .reassurance-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 2rem 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .reassurance-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

        .reassurance-card strong {
            color: var(--accent-cyan);
            font-weight: 600;
        }

 /* ==================== FOOTER ==================== */
        footer {
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-teal) 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            justify-content: center;   
            align-items: center;    
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            max-height: 65px;
            width: auto;
            height: auto;
            display: block;
}


        .footer-descriptor {
            font-size: 0.92rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            font-size: 0.92rem;
            margin-bottom: 2rem;
        }

        .footer-contact a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: var(--transition-fast);
            font-weight: 500;
        }

        .footer-contact a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(203, 213, 225, 0.2);
            padding-top: 2rem;
            font-size: 0.82rem;
            color: #94a3b8;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 968px) {
            .contact-container {
                grid-template-columns: 1fr;
                margin-top: -2rem;
            }

            .info-container {
                padding: 2.5rem 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 3rem 1.5rem 2rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .contact-section {
                padding: 3rem 1.5rem;
            }

            .form-container {
                padding: 2rem 1.5rem;
            }

            .info-container {
                padding: 2rem 1.5rem;
            }

            .form-header h2 {
                font-size: 1.5rem;
            }

            .info-header h3 {
                font-size: 1.3rem;
            }
        }

        /* ==================== FORM VALIDATION STYLES ==================== */
        .form-control:invalid:not(:placeholder-shown) {
            border-color: rgba(239, 68, 68, 0.5);
        }

        .form-control:valid:not(:placeholder-shown) {
            border-color: rgba(16, 185, 129, 0.5);
        }

        /* Success message */
        .success-message {
            display: none;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #059669;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            font-size: 0.9rem;
            text-align: center;
        }

        .success-message.show {
            display: block;
        }