 

        :root {
            --navy: #1a2744;
            --navy-light: #243352;
            --gold: #c8a951;
            --gold-light: #e8d590;
            --green-dark: #2d5016;
            --green-medium: #4a7c23;
            --green-light: #6ba339;
            --green-accent: #8bc34a;
            --cream: #faf8f3;
            --white: #ffffff;
            --text-dark: #1a2744;
            --text-muted: #6b7a8d;
            --border-light: #e8ecf1;
            --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
            --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.1);
            --shadow-lg: 0 10px 40px rgba(26, 39, 68, 0.12);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--text-dark);
            background: #fdf6e3;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ============================================
           NAVBAR
           ============================================ */
  

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact-section {
            padding-top: 130px;
            padding-bottom: 80px;
            max-width: 1100px;
            margin: 0 auto;
            padding-left: 30px;
            padding-right: 30px;
        }

        /* Header */
        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-badge {
            display: inline-block;
              background: linear-gradient(135deg, #0f94ac 0%, #066aab 50%, #2a3c54 100%);
            color: var(--white);
            font-family: 'Barlow', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 6px 20px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .contact-subtitle {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            max-width: 460px;
            margin: 0 auto;
        }

        /* Layout Grid */
        .contact-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 45px;
            align-items: flex-start;
        }

        /* ============================================
           LEFT SIDEBAR
           ============================================ */
        .contact-sidebar {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        /* Info Card (cream background) */
        .contact-info-card {
            background: #fdf6e3;
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .info-card-icon {
            flex-shrink: 0;
        }

        .info-card-icon i {
            font-size: 2.2rem;
            color: var(--gold);
        }

        .info-card-text {
            font-size: 0.78rem;
            color: var(--text-dark);
            line-height: 1.6;
            font-weight: 400;
        }

        /* Contact Method Cards */
        .contact-method-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-light);
        }

        .contact-method-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            text-decoration: none;
            color: inherit;
        }

        .method-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
           background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
        }

        .method-icon i {
            color: var(--white);
            font-size: 1rem;
        }

        .method-info h5 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1px;
        }

        .method-info p {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* Sidebar Image */
        .sidebar-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-top: 4px;
        }

        .sidebar-image img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        /* ============================================
           RIGHT SIDE - FORM
           ============================================ */
        .contact-form-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 35px 35px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }

        .form-row-full {
            grid-template-columns: 1fr;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 11px 14px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--text-dark);
            background: var(--white);
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-sm);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
        }

        .form-input::placeholder {
            color: #b8c0cc;
            font-weight: 400;
        }

        .form-select {
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            padding-right: 36px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7a8d' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
        }

        /* Service Tags */
        .service-tags-section {
            margin-bottom: 20px;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 18px;
            border: 1.5px solid var(--border-light);
            border-radius: 25px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-dark);
            background: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .service-tag:hover {
            border-color: var(--gold);
            background: #fdf8ec;
        }

        .service-tag.selected {
					color: #fff;
            border-color: #fff;
                  background-size: 200% 200%;
						background: linear-gradient(135deg, #0f94ac 0%, #066aab 50%, #2a3c54 100%);

            font-weight: 600;
        }

        .service-tag i {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .service-tag.selected i {
            color: var(--gold);
        }

        .service-tag input[type="checkbox"] {
            display: none;
        }

        /* Textarea */
        .form-textarea {
            width: 100%;
            padding: 12px 14px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--text-dark);
            background: var(--white);
            border: 1.5px solid var(--border-light);
            border-radius: var(--radius-sm);
            outline: none;
            resize: vertical;
            min-height: 90px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
        }

        .form-textarea::placeholder {
            color: #b8c0cc;
            font-weight: 400;
        }

        /* Submit Button - Gold gradient matching image */
        .btn-send-inquiry {
     display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #0f94ac 0%, #066aab 50%, #2a3c54 100%);
    background-size: 200% 200%;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(15, 148, 172, 0.35);
    z-index: 1;
        }

        .btn-send-inquiry:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(200, 169, 81, 0.45);
        }

        .btn-send-inquiry:active {
            transform: translateY(-1px);
        }

        .btn-send-inquiry::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            transition: left 0.5s ease;
        }

        .btn-send-inquiry:hover::after {
            left: 100%;
        }

        .btn-send-inquiry i {
            font-size: 1rem;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 992px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .contact-info-card {
                grid-column: span 2;
            }

            .sidebar-image {
                grid-column: span 2;
            }

        
        }

        @media (max-width: 768px) {
            .contact-section {
                padding-left: 18px;
                padding-right: 18px;
                padding-top: 100px;
            }

            .contact-title {
                font-size: 2.2rem;
            }

            .contact-sidebar {
                grid-template-columns: 1fr;
            }

            .contact-info-card {
                grid-column: span 1;
            }

            .sidebar-image {
                grid-column: span 1;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-card {
                padding: 22px;
            }
        }

        @media (max-width: 480px) {
            .service-tags {
                flex-direction: column;
            }

   
        }
