  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      
        /* Contact Us Header Section */
        .contact-header {
    position: relative;

    /* ✅ CRITICAL — remove full screen forcing */
    min-height: auto;
    height: auto;

    /* ✅ stop vertical stretching */
    display: block;

    background:
        linear-gradient(135deg, rgba(10, 92, 54, 0.75) 0%, rgba(232, 245, 238, 0.85) 100%),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=2070&q=80')
        center/cover no-repeat;

    text-align: center;
    color: var(--white);
    overflow: hidden;

    /* ✅ balanced padding */
    padding: 70px 20px 30px;

    z-index: 1;
}


.contact-section {
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
    margin-bottom: 0;
}

/* ===== CONTACT PAGE DESKTOP CENTER FIX ===== */

.contact-section,
.contact-container,
.contact-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;   /* ⭐ controls page width */
    margin-left: auto;
    margin-right: auto;  /* ⭐ THIS centers on desktop */
    box-sizing: border-box;
    flex-wrap: wrap; /* ⭐ VERY IMPORTANT */
}


.right {
    flex: 1 1 400px;   /* responsive width */
    max-width: 100%;
    min-width: 0;      /* ⭐ prevents overflow in flex */
    box-sizing: border-box;
}


.map-area img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: 12px;
}
         
       .contact-main {
            position: relative;
            z-index: 1;
}

      .quick-contact{
              position: relative;
              z-index: 1;
}

        .header-content {
            max-width: 850px;
            animation: fadeInUp 1.2s ease-out;
        }

        .main-heading {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 4.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 0.2s forwards;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .intro-advert {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 0.4s forwards;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 10px;
        }

        .offer-heading {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 600;
            margin-bottom: 0.6rem;
            color: var(--green-light);
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 0.6s forwards;
            border-bottom: 2px solid var(--green-light);
            display: inline-block;
            padding-bottom: 0.4rem;
        }

        .advert-statement {
            font-size: 1.05rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 0.8s forwards;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem;
            border-radius: 10px;
            backdrop-filter: blur(8px);
        }

        .cta-buttons {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease-out 1s forwards;
        }

        .cta-btn {
            padding: 1rem 2.4rem;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .cta-btn-primary {
            background: var(--green);
            color: var(--green-primary);
        }

        .cta-btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 45px rgba(10, 92, 54, 0.25);
        }

        .cta-btn-primary:hover {
            background: var(--green-light);
            color: var(--green-primary);
        }

        .cta-btn-secondary:hover {
            background: var(--green);
            color: var(--green-primary);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Subtle shimmer effect */
        .contact-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(232, 245, 238, 0.1) 50%, transparent 70%);
            animation: shimmer 2.5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%) skewX(-15deg); }
            50% { transform: translateX(100%) skewX(-15deg); }
        }

        /* Responsive */
        
        @media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .right,
    .left {
        width: 100%;
        max-width: 100%;
    }
}
       @media (max-width: 768px) {
    .contact-header {
        padding: 60px 16px 40px; /* 🔥 reduced bottom space */
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .intro-advert,
    .advert-statement {
        font-size: 1rem;
    }
}
    </style>