:root {
            --primary-dark: #0a2540;
            --primary: #0077b6;
            --primary-light: #00b4d8;
            --accent: #ffc800;
            --light: #f8f9fa;
            --dark: #1a2a40;
            --text: #333;
            --text-light: #7a7a7a;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }


       

        /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
        }

        .contact-hero-flex {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            margin-top: -90px;
        }

        .contact-hero-img {
            flex: 1 1 320px;
            max-width: 500px;
            min-width: 220px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transform: rotate(-2deg);
            transition: transform 0.5s ease;
        }

        .contact-hero-img:hover {
            transform: rotate(0) scale(1.02);
        }

        .contact-hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .contact-hero-content {
            flex: 1 1 500px;
            color: #fff;
            padding: 0 20px;
        }

        .contact-hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .contact-hero-content h1 span {
            color: var(--light);
            display: block;
        }

        .contact-hero-content p {
            font-size: 1.25rem;
            margin-bottom: 35px;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            line-height: 1.7;
        }

        .contact-infoh {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .contact-info-footer {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 8px;
            margin-top: 30px;
        }

        /* Mobile Responsive Contact Info */
       

        

        

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-info-icon {
            background: rgba(255,255,255,0.15);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.5rem;
        }

        .contact-info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #fff;
        }

        .contact-info-text p {
            color: rgba(255,255,255,0.8);
            margin: 0;
            font-size: 1rem;
        }

        .btn-main {
            background: var(--primary);
            color: var(--light);
            padding: 15px 38px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            margin-top: 30px;
        }

        .btn-main:hover {
            background: #fff;
            color:var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        }

        /* Contact Form Section */
        .contact-form-section {
            background: #fff;
            padding: 32px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .section-title h2 span {
            color: var(--primary);
        }

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .contact-form-container {
            display: flex;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            align-items: flex-start;
        }

        .contact-form-content {
            flex: 1;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .contact-form-content h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }

        .contact-form-modern {
            background: linear-gradient(135deg, #0a2540 0%, #0077b6 100%);
            border-radius: 28px;
            box-shadow: 0 8px 32px rgba(44,106,229,0.13);
            padding: 48px 36px 36px 36px;
            max-width: 600px;
            margin: 0 auto;
            color: #fff;
        }

        .contact-form-modern h3 {
            color: #fff;
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 32px;
        }

        .contact-form-modern .form-row {
            display: flex;
            gap: 24px;
            margin-bottom: 18px;
        }

        .contact-form-modern .form-group {
            flex: 1 1 0;
            display: flex;
            flex-direction: column;
        }

        .contact-form-modern label {
            color: #fff;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 1.08rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-form-modern .form-control {
            border: none;
            border-radius: 12px;
            padding: 16px 18px;
            font-size: 1.08rem;
            margin-bottom: 0;
            background: #fff;
            color: #222;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: box-shadow 0.2s, border 0.2s;
        }

        .contact-form-modern .form-control:focus {
            outline: none;
            box-shadow: 0 0 0 3px #00b4d8;
            border: 1.5px solid #00b4d8;
        }

        .contact-form-modern textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .btn-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        .btn-modern {
            background: #0077b6;
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 16px 0;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            width: 60%;
            margin: 24px auto 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 16px rgba(0,119,182,0.13);
            transition: background 0.2s, transform 0.2s;
        }

        .btn-modern:hover {
            background: #005f8a;
            transform: translateY(-2px) scale(1.03);
        }

        .contact-map {
            flex: 1;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            height: 600px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Info Section */
        .contact-info-section {
            background: linear-gradient(to bottom, #f3f3f3 0%, #fff 100%);
            padding: 38px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .contact-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: var(--transition);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--light);
            font-size: 2rem;
        }

        .contact-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

        .contact-card p {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .contact-details {
            list-style: none;
            text-align: left;
            padding: 0;
            margin: 0;
        }

        .contact-details li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text);
        }

        .contact-details i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 5px;
        }

       

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .contact-form-container {
                flex-direction: column;
            }
            
            .contact-map {
                height: 400px;
            }
        }

        @media (max-width: 992px) {
            .contact-hero-content h1 {
                font-size: 2.7rem;
            }
            
           
        }

        @media (max-width: 768px) {
            .contact-hero {
                padding: 100px 0 60px;
            }
            
            .contact-hero-flex {
                flex-direction: column;
                gap: 40px;
                margin-top: -60px;
            }
            
            .contact-hero-img {
                order: 2;
                max-width: 100%;
                transform: rotate(0);
            }
            
            .contact-hero-content {
                order: 1;
                
                padding: 0 15px;
            }
            
            .contact-hero-content h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
            .form-group.full {
                grid-column: span 1;
            }
        }

        @media (max-width: 600px) {
            .container {
                max-width: 98vw !important;
                padding: 0 6px !important;
            }
            .contact-hero-flex,
            .contact-form-container {
                flex-direction: column !important;
                gap: 18px !important;
                width: 100% !important;
                margin: 0 auto !important;
            }
            .contact-hero-img,
            .contact-hero-img img {
                width: 100% !important;
                max-width: 100% !important;
                border-radius: 18px !important;
                margin-bottom: 12px !important;
            }
            .contact-hero-content {
                padding: 0 6px !important;
                width: 100% !important;
            }
            .contact-form-section {
                padding: 12px 0 !important;
            }
            .form-row {
                flex-direction: column !important;
                gap: 0 !important;
            }
            .form-group {
                width: 100% !important;
                margin-bottom: 12px !important;
            }
            .btn-submit, .btn-modern {
                width: 100% !important;
                font-size: 1rem !important;
                padding: 12px 0 !important;
            }
            .section-title {
                padding: 0 6px !important;
            }
        }
        /* Footer Mobile Responsive */
        @media (max-width: 768px) {
            footer {
                padding: 60px 0 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 40px;
                padding: 0 20px;
            }
            
            .footer-col {
                padding-left: 0;
            }
            
            .footer-col h3 {
                font-size: 1.3rem;
                margin-bottom: 20px;
                padding-left: 0;
            }
            
            .footer-links,
            .contact-info-rows {
                padding-left: 0;
                margin-left: 0;
            }
            
            .footer-about {
                padding-left: 0;
                margin-left: 0;
            }
            
            .footer-social {
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 40px 0 0;
            }
            
            .footer-grid {
                padding: 0 15px;
            }
            
            .footer-col {
                padding-left: 0;
            }
            
            .footer-col h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .footer-links,
            .contact-info-rows {
                margin-left: 0;
            }
            
            .footer-about {
                margin-left: 0;
            }
            
            .footer-about p {
                font-size: 1rem;
            }
            
            .footer-links a,
            .contact-info-rows li {
                font-size: 1rem;
            }
            
            .contact-info-rows i {
                font-size: 1.1rem;
                min-width: 20px;
            }
            
            .footer-social {
                margin-left: 0;
            }
            
            .copyright {
                padding: 25px 15px;
                font-size: 0.9rem;
            }
        }

        /* Very Small Screens (Z Fold 5 and similar - 344px) */
        @media (max-width: 350px) {
            .container {
                padding: 0 10px;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            body {
                overflow-x: hidden;
            }
            
            /* Navigation adjustments */
            .navbar {
                padding: 12px 10px;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
            
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            
            /* Hero section */
            .hero {
                padding: 60px 0 40px;
                min-height: 300px;
            }
            
            .hero h1 {
                font-size: 1.8rem !important;
                line-height: 1.1;
                margin-bottom: 12px;
            }
            
            .hero p {
                font-size: 0.9rem !important;
                line-height: 1.4;
                margin-bottom: 15px;
            }
            
            /* Contact info grid */
            .contact-info-grid {
                grid-template-columns: 1fr !important;
                gap: 15px;
                padding: 0 5px;
            }
            
            .contact-info-card {
                padding: 15px 10px;
                text-align: center;
            }
            
            .contact-info-card i {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }
            
            .contact-info-card h3 {
                font-size: 1rem;
                margin-bottom: 8px;
            }
            
            .contact-info-card p {
                font-size: 0.8rem;
                line-height: 1.3;
            }
            
            /* Contact form */
            .contact-form {
                padding: 20px 10px;
                box-sizing: border-box;
            }
            
            .form-grid {
                grid-template-columns: 1fr !important;
                gap: 15px;
            }
            
            .form-group {
                margin-bottom: 15px;
                width: 100%;
            }
            
            .form-control {
                padding: 10px 12px;
                font-size: 0.9rem;
                width: 100%;
                box-sizing: border-box;
            }
            
            .form-control[type="textarea"] {
                min-height: 100px;
                resize: vertical;
            }
            
            .btn-primary {
                padding: 12px 20px;
                font-size: 0.95rem;
                width: 100%;
                box-sizing: border-box;
            }
            
            /* Map container */
            .map-container {
                height: 250px;
                margin: 20px 0;
                border-radius: 10px;
                overflow: hidden;
            }
            
            /* Office locations */
            .office-locations {
                grid-template-columns: 1fr !important;
                gap: 15px;
                padding: 0 5px;
            }
            
            .office-card {
                padding: 15px 10px;
            }
            
            .office-card h3 {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }
            
            .office-card p {
                font-size: 0.8rem;
                line-height: 1.3;
                margin-bottom: 5px;
            }
            
            /* FAQ section */
            .faq-item {
                margin-bottom: 12px;
            }
            
            .faq-question {
                padding: 12px 10px;
                font-size: 0.9rem;
            }
            
            .faq-answer {
                padding: 10px 12px;
                font-size: 0.85rem;
                line-height: 1.3;
            }
            
            /* Section titles */
            .section-title h2 {
                font-size: 1.5rem !important;
                margin-bottom: 15px;
            }
            
            .section-title p {
                font-size: 0.85rem;
                line-height: 1.3;
            }
            
            /* Footer adjustments */
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 25px;
                padding: 0 10px;
            }
            
            .footer-col h3 {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }
            
            .footer-links a,
            .contact-info-rows li {
                font-size: 0.9rem;
            }
        }
         /* Floating Action Buttons */
        .fab-contact {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 3000;
            background: #0077b6;
            color: var(--light);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.18);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            text-decoration: none;
        }

        .fab-contact:hover {
            background: #005a87;
            color: var(--light);
            box-shadow: 0 8px 32px rgba(0,119,182,0.3);
            transform: translateY(-2px);
        }

        .fab-whatsapp {
            position: fixed;
            bottom: 32px;
            left: 32px;
            z-index: 3000;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.18);
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            text-decoration: none;
        }

        .fab-whatsapp:hover {
            background: #128c7e;
            color: white;
            box-shadow: 0 8px 32px rgba(37,211,102,0.3);
            transform: translateY(-2px);
        }

        .fab-scroll-top {
            position: fixed;
            bottom: 104px;
            right: 32px;
            z-index: 3000;
            background: #0a2540;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.18);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .fab-scroll-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .fab-scroll-top:hover {
            background: #0077b6;
            color: white;
            box-shadow: 0 8px 32px rgba(10,37,64,0.3);
            transform: translateY(-2px);
        }

        /* Mobile adjustments for FABs */
        @media (max-width: 768px) {
            .fab-contact,
            .fab-whatsapp,
            .fab-scroll-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .fab-whatsapp {
                font-size: 1.5rem;
            }
            
            .fab-contact,
            .fab-scroll-top {
                right: 20px;
            }
            
            .fab-whatsapp {
                left: 20px;
            }
            
            .fab-scroll-top {
                bottom: 82px;
            }
        }

        @media (max-width: 480px) {
            .fab-contact,
            .fab-whatsapp,
            .fab-scroll-top {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            .fab-whatsapp {
                font-size: 1.3rem;
            }
            
            .fab-contact,
            .fab-scroll-top {
                right: 15px;
            }
            
            .fab-whatsapp {
                left: 15px;
            }
            
            .fab-scroll-top {
                bottom: 80px;
            }
        }