/* ===== VARIABLES ===== */
:root {
    --green:       #0a3d32;
    --green-mid:   #145c4b;
    --green-light: #1e8a70;
    --teal:        #00bfa5;
    --copper:      #b5764e;
    --cream:       #f7f3ee;
    --cream2:      #efe9e1;
    --white:       #ffffff;
    --dark-text:   #1a1a1a;
    --body-text:   #4a4a4a;
    --muted:       #8a8a8a;
    --shadow:      0 8px 32px rgba(10,61,50,0.12);
    --shadow-lg:   0 20px 60px rgba(10,61,50,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--cream);
    color: var(--body-text);
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
}
a { color: var(--green-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--green); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(10,61,50,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-icon {
    width: 44px; height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--cream);
    flex-shrink: 0;
}
.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--green);
    line-height: 1.1;
    font-weight: 700;
}
.logo p {
    font-size: 0.62rem;
    letter-spacing: 3px;
    color: var(--copper);
    text-transform: uppercase;
    font-weight: 600;
}
nav { margin-left: auto; }
nav ul { display: flex; gap: 0; }
nav ul li a {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--body-text);
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 2px;
    background: var(--green-light);
    transform: scaleX(0);
    transition: transform 0.3s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--green); }
nav ul li a:hover::after,
nav ul li a.active::after { transform: scaleX(1); }

.header-phone a {
    background: var(--green);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}
.header-phone a:hover { background: var(--green-mid); color: var(--white); transform: translateY(-1px); }
.hamburger {
    display: none;
    background: none;
    border: 2px solid var(--green);
    color: var(--green);
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    border-radius: 4px;
    margin-left: auto;
}
.mobile-nav {
    display: none;
    background: var(--white);
    border-bottom: 3px solid var(--green);
    box-shadow: 0 8px 24px rgba(10,61,50,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--cream2);
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== HERO BANNER SLIDER ===== */
.hero-banner {
    position: relative;
    height: 92vh;
    min-height: 560px;
    overflow: hidden;
}
.banner-slides { position: relative; width: 100%; height: 100%; }
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
}
.banner-slide .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,61,50,0.88) 0%, rgba(10,61,50,0.55) 55%, rgba(10,61,50,0.15) 100%);
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    padding: 2rem 3rem 2rem 8%;
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--cream);
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    font-weight: 600;
}
.banner-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.banner-content h1 span { color: #7dddd0; }
.banner-content p {
    color: rgba(247,243,238,0.85);
    font-size: 1.05rem;
    margin-bottom: 2.2rem;
    line-height: 1.7;
    max-width: 480px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
/* Dots */
.banner-dots {
    position: absolute;
    bottom: 2rem;
    left: 8%;
    z-index: 10;
    display: flex;
    gap: 0.6rem;
}
.dot {
    width: 28px; height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.dot.active { background: var(--white); width: 48px; }
/* Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 50px; height: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.banner-arrow:hover { background: var(--green); border-color: var(--green); }
.banner-arrow.prev { left: 2rem; }
.banner-arrow.next { right: 2rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2rem;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.78rem;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid var(--green);
    font-family: 'Raleway', sans-serif;
}
.btn:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,61,50,0.3); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-green-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-green-outline:hover { background: var(--green); color: var(--white); }

/* ===== INFO STRIP ===== */
.info-strip {
    background: var(--green);
    padding: 0.9rem 1.5rem;
}
.info-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(247,243,238,0.9);
    font-weight: 500;
}
.strip-icon { font-size: 1rem; }
.strip-item a { color: var(--cream); font-weight: 700; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 1.5rem; }
.section-alt { background: var(--white); }
.section-green { background: var(--green); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .sub {
    color: var(--copper);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 700;
    display: block;
}
.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.15;
}
.section-header p {
    color: var(--muted);
    margin-top: 0.8rem;
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.section-green .section-header h2 { color: var(--white); }
.section-green .section-header .sub { color: #7dddd0; }
.section-green .section-header p { color: rgba(247,243,238,0.7); }
.divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--green-light));
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

/* ===== WAVE DIVIDER ===== */
.wave-top, .wave-bottom {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* ===== HIGHLIGHTS ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}
.highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}
.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.highlight-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(10,61,50,0.08), rgba(0,191,165,0.12));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
}
.highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.highlight-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    border-radius: 16px 16px 0 0;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.service-card ul li {
    color: var(--body-text);
    font-size: 0.9rem;
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    border-bottom: 1px solid rgba(10,61,50,0.06);
}
.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
}
.service-card .view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.service-card .view-more:hover { color: var(--teal); }

/* ===== PRICE TABLE ===== */
.price-section { margin-bottom: 3rem; }
.price-section-wrap { text-align: center; margin-bottom: 0; }
.price-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--green);
    display: inline-block;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}
.price-section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--teal));
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.price-table tr {
    border-bottom: 1px solid var(--cream2);
    transition: background 0.2s;
}
.price-table tr:last-child { border-bottom: none; }
.price-table tr:hover { background: rgba(10,61,50,0.03); }
.price-table td {
    padding: 1rem 1.5rem;
    font-size: 0.92rem;
}
.price-table td:first-child { color: var(--dark-text); }
.price-table td:last-child {
    text-align: right;
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}
.price-table .separator td {
    text-align: center;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 0.8rem;
    background: var(--green);
    font-weight: 600;
}
.price-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, rgba(10,61,50,0.06), rgba(0,191,165,0.06));
    border-left: 4px solid var(--green);
    color: var(--green);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 0 8px 8px 0;
    letter-spacing: 0.5px;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,191,165,0.15) 0%, transparent 70%);
}
.page-hero .sub {
    color: #7dddd0;
    letter-spacing: 5px;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 700;
    display: block;
    position: relative;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    font-weight: 700;
    position: relative;
}
.page-hero p { color: rgba(247,243,238,0.75); margin-top: 0.8rem; position: relative; }

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,191,165,0.18) 0%, transparent 70%);
}
.cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.6rem;
    position: relative;
    font-weight: 700;
}
.cta-band p { color: rgba(247,243,238,0.75); margin-bottom: 2rem; position: relative; }
.cta-band .btn { background: var(--white); color: var(--green); border-color: var(--white); position: relative; }
.cta-band .btn:hover { background: var(--cream); color: var(--green); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card .icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    color: var(--white);
}
.contact-card h4 {
    color: var(--green);
    margin-bottom: 0.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
}
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.92rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--green);
    opacity: 0.1;
    line-height: 1;
}
.testimonial-card p { color: var(--body-text); font-style: italic; margin-bottom: 1.2rem; line-height: 1.7; font-size: 0.92rem; }
.testimonial-card .author { color: var(--green); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; }
.stars { color: #f4a261; margin-bottom: 0.8rem; font-size: 0.9rem; }

/* ===== FOOTER ===== */
footer {
    background: var(--green);
    color: rgba(247,243,238,0.8);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 3rem;
}
.footer-brand h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(247,243,238,0.65); }
.footer-brand .udyam {
    display: inline-block;
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.72rem;
    color: rgba(247,243,238,0.5);
    letter-spacing: 1px;
}
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { color: rgba(247,243,238,0.65); font-size: 0.88rem; transition: color 0.3s; }
.footer-links ul li a:hover { color: #7dddd0; }
.footer-contact p { color: rgba(247,243,238,0.65); font-size: 0.88rem; margin-bottom: 0.6rem; }
.footer-contact a { color: rgba(247,243,238,0.65); font-size: 0.88rem; display: block; margin-bottom: 0.4rem; }
.footer-contact a:hover { color: #7dddd0; }
.footer-bottom {
    text-align: center;
    padding: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(247,243,238,0.4);
    font-size: 0.78rem;
}
.footer-bottom a { color: rgba(247,243,238,0.4); }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gal-thumb {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    background: var(--cream2);
}
.gal-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}
.gal-thumb:hover img { transform: scale(1.1); }
.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,61,50,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    border-radius: 12px;
}
.gal-thumb:hover .gal-overlay { background: rgba(10,61,50,0.55); }
.gal-overlay span {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 600;
    background: rgba(0,191,165,0.8);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}
.gal-thumb:hover .gal-overlay span { opacity: 1; }
/* Placeholder */
.gal-ph { border: 2px dashed var(--cream2); }
.gal-ph-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gal-ph-icon { font-size: 1.8rem; }
.gal-ph-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gal-ph-note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 1.2rem; }
.gal-ph-note code { background: var(--cream2); padding: 0.1rem 0.4rem; color: var(--green); border-radius: 4px; font-size: 0.8rem; }

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--copper) 0%, #8a5535 100%);
    padding: 2.5rem 1.5rem;
}
.promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.promo-text h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.promo-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.promo-banner .btn { background: var(--white); color: var(--copper); border-color: var(--white); }
.promo-banner .btn:hover { background: var(--cream); }

/* ===== GALLERY PAGE ===== */
.gal-filter-tabs {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-bottom: 2.5rem; justify-content: center;
}
.gal-tab {
    padding: 0.5rem 1.3rem;
    background: var(--white);
    border: 2px solid var(--cream2);
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; gap: 0.4rem;
}
.gal-tab:hover { border-color: var(--green); color: var(--green); }
.gal-tab.active { background: var(--green); color: var(--white); border-color: var(--green); }
.tab-count { background: rgba(0,0,0,0.12); padding: 0.05rem 0.4rem; border-radius: 10px; font-size: 0.68rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.gal-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream2);
    border-radius: 12px;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.gal-item:hover img { transform: scale(1.1); }
.gal-item .gal-overlay { position: absolute; inset: 0; background: rgba(10,61,50,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; border-radius: 12px; }
.gal-item:hover .gal-overlay { background: rgba(10,61,50,0.55); }
.gal-zoom { font-size: 2.2rem; opacity: 0; transition: opacity 0.3s; color: #fff; }
.gal-item:hover .gal-zoom { opacity: 1; }
/* Empty state */
.gal-empty { text-align: center; padding: 5rem 2rem; color: var(--muted); }
.gal-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.gal-empty h3 { font-family: 'Cormorant Garamond', serif; color: var(--green); margin-bottom: 0.5rem; font-size: 1.6rem; }
.gal-upload-info { max-width: 500px; margin: 2rem auto 0; background: var(--white); border: 1px solid var(--cream2); padding: 1.5rem; border-radius: 12px; text-align: left; border-left: 4px solid var(--green); box-shadow: var(--shadow); }
.gal-upload-info h4 { color: var(--green); margin-bottom: 0.8rem; font-weight: 700; }
.gal-upload-info ul { list-style: none; }
.gal-upload-info ul li { color: var(--muted); font-size: 0.88rem; padding: 0.25rem 0; }
.gal-upload-info code { background: var(--cream2); color: var(--green); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.8rem; }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lb-content { position: relative; max-width: 90vw; max-height: 90vh; text-align: center; }
.lb-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; display: block; margin: 0 auto; }
.lb-caption { color: #7dddd0; font-family: 'Cormorant Garamond', serif; font-size: 1rem; margin-top: 1rem; letter-spacing: 1px; }
.lb-counter { color: rgba(247,243,238,0.4); font-size: 0.78rem; margin-top: 0.3rem; }
.lb-close { position: fixed; top: 1.2rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 1.2rem; width: 42px; height: 42px; cursor: pointer; z-index: 10000; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.lb-close:hover { background: var(--green); }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 52px; height: 52px; font-size: 1.3rem; cursor: pointer; z-index: 10000; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.lb-arrow:hover { background: var(--green); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.form-title { font-family: 'Cormorant Garamond', serif; color: var(--green); font-size: 1.8rem; margin-bottom: 1.5rem; font-weight: 700; }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; display: flex; flex-direction: column; }
.form-group label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; font-weight: 600; }
.form-group label span { color: var(--copper); }
.form-group input, .form-group select, .form-group textarea {
    background: var(--white);
    border: 2px solid var(--cream2);
    color: var(--dark-text);
    padding: 0.8rem 1.1rem;
    font-size: 0.92rem;
    font-family: 'Raleway', sans-serif;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(10,61,50,0.08);
}
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; }
.btn-submit { width: 100%; padding: 1rem; font-size: 0.9rem; letter-spacing: 2px; cursor: pointer; border: none; }
.alert-success { background: rgba(10,61,50,0.08); border-left: 4px solid var(--green); color: var(--green); padding: 1rem 1.2rem; margin-bottom: 1.5rem; border-radius: 0 8px 8px 0; font-weight: 600; }
.alert-error { background: rgba(200,50,50,0.07); border-left: 4px solid #c83232; color: #a02020; padding: 1rem 1.2rem; margin-bottom: 1.5rem; border-radius: 0 8px 8px 0; }
.alert-error p { margin-bottom: 0.2rem; font-size: 0.88rem; }
.info-cards { margin-bottom: 1.5rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--cream2); }
.info-icon { font-size: 1.4rem; color: var(--green); min-width: 32px; text-align: center; background: rgba(10,61,50,0.08); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item h4 { color: var(--green); margin-bottom: 0.2rem; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.info-item p, .info-item a { color: var(--muted); font-size: 0.88rem; }
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    nav, .header-phone { display: none; }
    .hamburger { display: block; }
    .hero-banner { height: 80vh; }
    .banner-content { padding: 2rem 1.5rem; max-width: 100%; }
    .banner-arrow { display: none; }
    .banner-dots { left: 50%; transform: translateX(-50%); }
    .section { padding: 4rem 1rem; }
    .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-ph-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-inner { flex-direction: column; text-align: center; }
    .contact-layout { grid-template-columns: 1fr; }
    .enquiry-form .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .info-strip-inner { gap: 1rem; }
    .btn-outline { margin-left: 0; }
}
