/* ─── CSS Variables ───────────────────────────── */
:root {
    --primary:      #6e3636;
    --secondary:    #a02f32;
    --accent:       #b5503e;
    --light-accent: #d08055;
    --bg:           #f0ece0;
    --dark:         #3a1e1e;
    --text:         #4a3232;
    --muted:        #7a6060;
}

/* ─── Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

img { display: block; max-width: 100%; }

/* ─── Navbar ──────────────────────────────────── */
.navbar {
    background: rgba(58, 30, 30, 0.97) !important;
    backdrop-filter: blur(12px);
    padding: 16px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 25px rgba(58, 30, 30, 0.3);
}
.navbar-brand {
    padding: 0;
    line-height: 1;
}
.navbar-logo {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}
.navbar.scrolled .navbar-logo {
    height: 100px;
    transition: height 0.3s ease;
}
.navbar-nav .nav-link {
    color: rgba(240, 236, 224, 0.88) !important;
    font-size: 0.92rem;
    font-weight: 400;
    padding: 8px 14px !important;
    letter-spacing: 0.4px;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover { color: var(--light-accent) !important; }
.nav-book-btn {
    background: var(--accent) !important;
    color: #f0ece0 !important;
    border-radius: 50px !important;
    padding: 7px 22px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s !important;
}
.nav-book-btn:hover {
    background: var(--secondary) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(160,47,50,0.35) !important;
}
.navbar-toggler { border-color: rgba(240,236,224,0.4); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240,236,224,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Buttons ─────────────────────────────────── */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #f0ece0;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-cta-primary:hover {
    background: var(--secondary);
    color: #f0ece0;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(160,47,50,0.4);
}
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #f0ece0;
    border: 2px solid rgba(240,236,224,0.65);
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-cta-outline:hover {
    background: rgba(240,236,224,0.12);
    border-color: #f0ece0;
    color: #f0ece0;
    transform: translateY(-3px);
}

/* ─── Section Shared ──────────────────────────── */
.section-pad { padding: 95px 0; }
.section-pad-sm { padding: 70px 0; }

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}
.section-title-light { color: #f0ece0 !important; }
.section-divider {
    width: 55px;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--light-accent));
    border-radius: 10px;
    margin: 14px auto;
}
.section-divider-left { margin-left: 0; }
.section-subtitle {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.85;
}
.section-subtitle-light { color: rgba(240,236,224,0.7) !important; }

/* ─── Fade-in Animations ──────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── HERO ────────────────────────────────────── */
#home {
    min-height: 100vh;
    background:
        linear-gradient(160deg, rgba(58,30,30,0.80) 0%, rgba(110,54,54,0.65) 100%),
        url('../images/banner-backgound.jpg')
        center / cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-inner { padding: 120px 20px 80px; max-width: 850px; }
.hero-badge {
    display: inline-block;
    background: rgba(208,128,85,0.2);
    border: 1px solid rgba(208,128,85,0.55);
    color: rgba(240,236,224,0.92);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
#home h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    color: #f0ece0;
    font-weight: 700;
    line-height: 1.18;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.25);
    margin-bottom: 22px;
}
#home .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.22rem);
    color: rgba(240,236,224,0.88);
    max-width: 580px;
    margin: 0 auto 38px;
    line-height: 1.75;
}
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 55px;
    padding-top: 35px;
    border-top: 1px solid rgba(240,236,224,0.15);
}
.hero-stat .num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--light-accent);
    line-height: 1;
}
.hero-stat .lbl {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(240,236,224,0.65);
    margin-top: 4px;
}
.scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(240,236,224,0.6);
    font-size: 1.3rem;
    animation: scrollBounce 2.2s infinite;
    cursor: pointer;
    text-decoration: none;
}
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

/* ─── ABOUT ───────────────────────────────────── */
#about { background: #fff; }
.about-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 65px rgba(110,54,54,0.14);
}
.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-float-badge {
    position: absolute;
    bottom: 26px;
    right: 26px;
    background: var(--primary);
    color: #f0ece0;
    padding: 16px 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(58,30,30,0.35);
}
.about-float-badge .n {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--light-accent);
    line-height: 1;
}
.about-float-badge .t {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
    opacity: 0.8;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.af-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent), var(--light-accent));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
}
.af-text h6 {
    color: var(--primary);
    font-size: 0.98rem;
    margin-bottom: 4px;
    font-weight: 600;
}
.af-text p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ─── HIGHLIGHTS ──────────────────────────────── */
#highlights { background: var(--bg); }
.hl-card {
    background: #fff;
    border-radius: 22px;
    padding: 38px 26px;
    text-align: center;
    box-shadow: 0 6px 32px rgba(110,54,54,0.07);
    border: 1px solid rgba(110,54,54,0.07);
    transition: all 0.35s ease;
    height: 100%;
}
.hl-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 55px rgba(110,54,54,0.15);
    border-color: rgba(181,80,62,0.25);
}
.hl-icon {
    width: 78px;
    height: 78px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.9rem;
    color: #fff;
    transition: all 0.35s ease;
}
.hl-card:hover .hl-icon {
    background: linear-gradient(135deg, var(--accent), var(--light-accent));
    transform: rotate(6deg) scale(1.06);
}
.hl-card h5 {
    color: var(--primary);
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.hl-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ─── GALLERY ─────────────────────────────────── */
#gallery { background: #fff; }
.gallery-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    cursor: pointer;
}
.gallery-wrap img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
/*.gallery-wrap img.tall { height: 536px; }
.gallery-wrap img.std  { height: 256px; }*/
.gallery-wrap:hover img { transform: scale(1.09); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58,30,30,0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: flex-end;
    padding: 20px 22px;
}
.gallery-wrap:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #f0ece0;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
}

/* ─── PRICING ─────────────────────────────────── */
#pricing {
    background: linear-gradient(135deg, var(--dark) 0%, #5a2828 100%);
    position: relative;
    overflow: hidden;
}
#pricing::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -8%;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(208,128,85,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.price-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(240,236,224,0.12);
    border-radius: 26px;
    padding: 48px 36px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    height: 100%;
}
.price-card.featured {
    background: rgba(208,128,85,0.13);
    border-color: rgba(208,128,85,0.5);
    transform: scale(1.04);
}
.price-card:hover {
    background: rgba(208,128,85,0.13);
    border-color: rgba(208,128,85,0.5);
    transform: scale(1.06);
}
.price-card.featured:hover { transform: scale(1.08); }
.popular-badge {
    display: inline-block;
    background: var(--light-accent);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.price-card h4 { color: #f0ece0; font-size: 1.3rem; margin-bottom: 6px; }
.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--light-accent);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
}
.price-amount .price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 6px;
    align-self: flex-start;
}
.price-period { color: rgba(240,236,224,0.55); font-size: 0.83rem; margin-bottom: 28px; }
.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
}
.price-list li {
    color: rgba(240,236,224,0.82);
    font-size: 0.93rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(240,236,224,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-list li:last-child { border-bottom: none; }
.price-list li i { color: var(--light-accent); font-size: 0.82rem; }
.btn-book-now {
    display: block;
    background: linear-gradient(135deg, var(--accent), var(--light-accent));
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-book-now:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(181,80,62,0.4);
    color: #fff;
}

/* ─── IDEAL FOR ───────────────────────────────── */
#ideal { background: var(--bg); }
.ideal-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 18px;
    text-align: center;
    box-shadow: 0 5px 24px rgba(110,54,54,0.07);
    transition: all 0.32s ease;
    height: 100%;
}
.ideal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(110,54,54,0.13);
}
.ideal-icon {
    width: 70px;
    height: 70px;
    background: var(--bg);
    border: 2px solid rgba(181,80,62,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.75rem;
    color: var(--accent);
    transition: all 0.3s ease;
}
.ideal-card:hover .ideal-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.ideal-card h5 { color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.ideal-card p { color: var(--muted); font-size: 0.86rem; margin: 0; line-height: 1.65; }

/* ─── LOCATION ────────────────────────────────── */
#location { background: #fff; }
.map-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 50px rgba(110,54,54,0.12);
}
.loc-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.loc-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, var(--accent), var(--light-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.loc-text h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 0.93rem;
    margin-bottom: 3px;
}
.loc-text p, .loc-text a {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}
.loc-text a:hover { color: var(--accent); }

/* ─── CONTACT ─────────────────────────────────── */
#contact { background: var(--bg); }
.contact-card {
    background: #fff;
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 10px 42px rgba(110,54,54,0.08);
    height: 100%;
}
.cinfo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(110,54,54,0.07);
}
.cinfo-row:last-of-type { border-bottom: none; }
.cinfo-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
}
.cinfo-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.cinfo-text h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 0.88rem;
    margin-bottom: 2px;
}
.cinfo-text a, .cinfo-text p {
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
}
.cinfo-text a:hover { color: var(--accent); }
.form-field {
    border: 1.5px solid rgba(110,54,54,0.15);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--bg);
    width: 100%;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}
.form-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181,80,62,0.1);
    background: #fff;
    outline: none;
}
.form-field::placeholder { color: #b09090; }
.form-label-custom {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.btn-submit {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}
.btn-submit:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(110,54,54,0.3);
}
.social-row { display: flex; gap: 11px; margin-top: 16px; }
.soc-btn {
    width: 42px;
    height: 42px;
    background: rgba(110,54,54,0.06);
    border: 1px solid rgba(110,54,54,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.soc-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
    background: var(--dark);
    color: rgba(240,236,224,0.72);
    padding: 0px 0 20px;
}
.footer-brand-wrap {
    margin-bottom: 16px;
}
.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}
footer p { font-size: 0.88rem; line-height: 1.75; color: rgba(240,236,224,0.6); }
footer h6 {
    color: var(--light-accent);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.f-links { list-style: none; padding: 0; margin: 0; }
.f-links li { margin-bottom: 9px; }
.f-links a {
    color: rgba(240,236,224,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.f-links a i { color: var(--accent); font-size: 0.68rem; }
.f-links a:hover { color: var(--light-accent); }
.f-social { display: flex; gap: 10px; margin-top: 16px; }
.f-soc-btn {
    width: 40px;
    height: 40px;
    background: rgba(240,236,224,0.07);
    border: 1px solid rgba(240,236,224,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,236,224,0.65);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}
.f-soc-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}
.footer-hr { border-color: rgba(240,236,224,0.1); margin: 0px 0 20px; }
.footer-copy {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(240,236,224,0.38);
    margin-bottom: 0;
}
.footer-copy i { color: var(--accent); }

/* ─── FLOATING BUTTONS ────────────────────────── */
.fab-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(181,80,62,0.4);
}
.fab-call:hover {
    transform: scale(1.12);
    color: #fff;
    box-shadow: 0 8px 28px rgba(181,80,62,0.6);
}

/* ─── FLOATING WHATSAPP removed — keep pulse keyframe for call btn if needed ── */
@keyframes fabPulseCall {
    0%   { box-shadow: 0 5px 20px rgba(181,80,62,0.4); }
    50%  { box-shadow: 0 5px 35px rgba(181,80,62,0.6), 0 0 0 10px rgba(181,80,62,0.08); }
    100% { box-shadow: 0 5px 20px rgba(181,80,62,0.4); }
}
.fab-call { animation: fabPulseCall 2.5s infinite; }

/* ─── ENQUIRE TAB BUTTON (fixed right center) ─────── */
.enquire-tab {
    position: fixed;
    right: -62px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #f0ece0;
    border: none;
    padding: 13px 28px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    z-index: 9990;
    transition: right 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: -3px 0 20px rgba(110,54,54,0.25);
    white-space: nowrap;
}
.enquire-tab:hover {
    right: -48px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    box-shadow: -4px 0 28px rgba(110,54,54,0.4);
}

/* ─── ENQUIRY POPUP MODAL (centered) ─────────────── */
.eq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30,10,10,0.65);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.eq-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.eq-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.88);
    width: 520px;
    max-width: calc(100vw - 30px);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    padding: 40px 40px 34px;
    z-index: 10001;
    box-shadow: 0 30px 90px rgba(58,30,30,0.3);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.3s ease;
}
.eq-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}
.eq-modal::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--light-accent));
    border-radius: 24px 24px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.eq-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(110,54,54,0.08);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.eq-close:hover { background: rgba(110,54,54,0.18); }
.eq-header {
    text-align: center;
    margin-bottom: 24px;
}
.eq-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: #fff;
}
.eq-header h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.eq-header p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}
.eq-field {
    margin-bottom: 14px;
}
.eq-field label {
    display: block;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}
.eq-field input,
.eq-field select,
.eq-field textarea {
    width: 100%;
    border: 1.5px solid rgba(110,54,54,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.eq-field input:focus,
.eq-field select:focus,
.eq-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181,80,62,0.1);
    background: #fff;
    outline: none;
}
.eq-field input::placeholder,
.eq-field textarea::placeholder { color: #b09090; }
.eq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.eq-submit {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    margin-top: 6px;
}
.eq-submit:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(110,54,54,0.3);
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
    .price-card.featured { transform: scale(1); }
    .price-card.featured:hover { transform: scale(1.04); }
}
@media (max-width: 767px) {
    .section-pad { padding: 65px 0; }
    .hero-stats { gap: 20px; }
    .about-img-wrap img { height: 320px; }
    .gallery-wrap img.tall { height: 320px; }
    .contact-card { padding: 28px 22px; }
    .fab-call { bottom: 18px; right: 18px; }
    .enquire-tab { font-size: 0.78rem; padding: 10px 18px; right: -52px; }
    .eq-modal { padding: 24px 18px 20px; border-radius: 18px; }
    .eq-row { grid-template-columns: 1fr; gap: 0; }
    .eq-header h4 { font-size: 1.2rem; }
}
