    :root {
            --primary: #002D55;
            --secondary: #00c9c9;
            --light: #f8fafc;
            --dark: #0f172a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #fff;
            color: #1e293b;
        }

        /* ===== HERO ===== */
        .contact-hero {
           background: linear-gradient(rgb(37 42 45 / 85%), rgb(0 0 0 / 90%)), url(../images/testimonial-bg.png);
            background-size: cover;
            background-position: center;
            color: white;
    padding: 70px 0 60px;
            margin-top: 0;
            text-align: start;
        }

        .contact-hero h1 {
      font-size: 28px;
    font-weight: 700;
        }

        .contact-hero-title span {
            color: #00c9c9;
        }

        .contact-breadcrumb {
            display: flex;
            align-items: center;
            justify-content:start;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-breadcrumb a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-breadcrumb a:hover {
            color: #00c9c9;
        }

        .contact-breadcrumb .active {
            color: #00c9c9;
            font-weight: 600;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            max-width: 1200px;
            margin: -40px auto 80px;
            background: #fff;
            padding: 20px 32px;
            border-radius: 14px;
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
            text-align: center;
        }

        .breadcrumb a {
            text-decoration: none;
            color: #002D55;
            font-weight: 500;
        }

        .breadcrumb span {
            margin: 0 6px;
        }

        .breadcrumb .active {
            color: #00c9c9;
        }

        /* ===== CONTACT WRAPPER ===== */
        .contact-wrapper {
            max-width: 1200px;
            margin: auto;
            padding: 50px 20px 120px;
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 70px;
        }

        /* ===== FORM CARD ===== */
        .form-card {
            background: rgba(255,255,255,.9);
            backdrop-filter: blur(14px);
            border-radius: 22px;
            padding: 50px;
            box-shadow: 0 40px 80px rgba(0,0,0,.1);
            border: 1px solid rgba(0, 201, 201, 0.2);
        }

        .form-card h2 {
            font-size: 34px;
            margin-bottom: 10px;
            color: #002D55;
            font-weight: 700;
        }

        .form-card p {
            font-size: 15px;
            margin-bottom: 35px;
            color: #64748b;
        }

        /* Floating fields - FIXED FOR SELECT */
        .field {
            position: relative;
            margin-bottom: 26px;
        }

        .field input,
        .field select,
        .field textarea {
            width: 100%;
            padding: 16px 14px;
            border: none;
            background: #f1f5f9;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            color: #1e293b;
        }

        .field textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Style for select placeholder */
        .field select:required:invalid {
            color: #64748b;
        }

        .field select option {
            color: #1e293b;
        }

        .field select option[value=""][disabled] {
            display: none;
        }

        .field label {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 14px;
            pointer-events: none;
            transition: .3s;
            background: transparent;
            padding: 0 4px;
        }

        /* Textarea label positioning */
        .field textarea + label {
            top: 20px;
            transform: none;
        }

        /* Input focus/valid state */
        .field input:focus + label,
        .field input:not(:placeholder-shown) + label {
            top: -8px;
            background: #fff;
            padding: 0 6px;
            font-size: 12px;
            color: #00c9c9;
        }

        /* Select focus/valid state - FIXED */
        .field select:focus + label,
        .field select:not(:invalid) + label {
            top: -8px;
            background: #fff;
            padding: 0 6px;
            font-size: 12px;
            color: #00c9c9;
        }

        /* Select when empty/invalid (placeholder showing) */
        .field select:invalid + label {
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            font-size: 14px;
            color: #64748b;
        }

        /* Textarea focus/valid state */
        .field textarea:focus + label,
        .field textarea:not(:placeholder-shown) + label {
            top: -8px;
            background: #fff;
            padding: 0 6px;
            font-size: 12px;
            color: #00c9c9;
            transform: none;
        }

        .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #00c9c9, #002D55);
            color: #fff;
            border: none;
            padding: 16px;
            width: 100%;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 201, 201, 0.2);
        }

        /* ===== INFO PANEL ===== */
        .info-panel {
            padding-top: 20px;
        }

        .info-panel span {
            letter-spacing: 3px;
            font-size: 13px;
            color: #00c9c9;
            text-transform: uppercase;
        }

        .info-panel h2 {
            font-size: 40px;
            font-weight: 700;
            margin: 14px 0 10px;
            color: #002D55;
        }

        .info-panel .cin {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 40px;
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 34px;
        }

        .icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #00c9c9, #002D55);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .info-item h4 {
            margin-bottom: 4px;
            color: #002D55;
            font-weight: 600;
        }

        .info-item p {
            color: #64748b;
            line-height: 1.6;
        }
        @media(max-width:350px){
             .info-item p {
            color: #64748b;
            font-size: 12px;
            line-height: 1.6;
        } 
        }

        .office {
            margin-top: 50px;
        }

        .office h3 {
            font-size: 26px;
            margin-bottom: 20px;
            color: #002D55;
        }

        /* ===== MAP SECTION ===== */
        .map-section {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }

        .map-section h2 {
            text-align: center;
            color: #002D55;
            margin-bottom: 40px;
            font-size: 32px;
            font-weight: 700;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,.1);
            height: 400px;
        }

        .map-placeholder {
            background: linear-gradient(135deg, #00c9c9, #002D55);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        /* ===== CONTACT HOURS ===== */
        .contact-hours {
            background: #f8f9fa;
            padding: 60px 0;
            margin-top: 40px;
        }

        .hours-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .hours-container h2 {
            color: #002D55;
            margin-bottom: 40px;
            font-size: 32px;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .hour-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,.08);
            border-top: 4px solid #00c9c9;
        }

        .hour-card h4 {
            color: #002D55;
            margin-bottom: 15px;
        }

        .hour-card p {
            color: #64748b;
            font-size: 15px;
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width: 992px){
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .row {
                grid-template-columns: 1fr;
            }
            
            .contact-hero h1 {
                font-size: 36px;
            }
            
            .form-card {
                padding: 30px;
            }
            
            .info-panel h2 {
                font-size: 32px;
            }
        }
        
        @media(max-width: 768px) {
            .contact-hero {
                padding: 50px 0 50px;
            }
            
            .breadcrumb {
                margin: -20px 20px 40px;
                padding: 15px;
            }
            
            .contact-wrapper {
                padding: 0 15px 60px;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
        }