/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --navy: #1a2a3a;
    --navy-dark: #0f1a25;
    --gold: #c9a962;
    --gold-light: #d4b978;
    --cream: #f5f1e8;
    --white: #ffffff;
    --charcoal: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --font-heading: 'Anton', 'Impact', sans-serif;
    --font-body: 'Roboto', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
}

/* === NAV === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--navy-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid var(--gold);
}
.logo { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    font-weight: 400; 
    color: var(--gold); 
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.logo span { color: var(--white); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { 
    color: var(--white); 
    text-decoration: none; 
    font-size: 0.8rem; 
    font-weight: 600; 
    letter-spacing: 0.12em; 
    text-transform: uppercase; 
    transition: all 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover { 
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.hamburger { display: none; cursor: pointer; font-size: 2rem; color: var(--gold); }

/* === HERO === */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c9a962" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}
.hero-image {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) sepia(20%);
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
}
.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}
.hero-content h1 em { 
    color: var(--gold);
    font-style: normal;
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}
.cta-primary:hover { 
    background: transparent; 
    color: var(--gold);
    transform: translateY(-3px);
}
.cta-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--white);
    transition: all 0.3s;
}
.cta-outline:hover { 
    background: var(--white); 
    color: var(--navy);
}

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: var(--gold);
    border-bottom: 4px solid var(--navy);
}
.trust-item { text-align: center; }
.trust-item .number { 
    display: block; 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    color: var(--navy-dark); 
    line-height: 1;
}
.trust-item .label { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    color: var(--navy); 
    margin-top: 0.3rem;
    font-weight: 600;
}

/* === INFO BAR === */
.info-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 2rem;
    background: var(--navy);
    color: var(--white);
    flex-wrap: wrap;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

/* === SECTIONS === */
section { padding: 5rem 2rem; }
section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.section-subtitle { 
    text-align: center; 
    color: var(--gray); 
    margin-bottom: 3.5rem; 
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* === GALLERY === */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-grid img { 
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    cursor: pointer; 
    transition: all 0.4s;
    filter: grayscale(20%);
}
.gallery-grid img:hover { 
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* === SERVICES === */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.service-item {
    background: var(--white);
    border: 2px solid var(--gold);
    transition: all 0.4s;
}
.service-item:hover { 
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(26,42,58,0.2);
}
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}
.service-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.service-header .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}
.service-body { padding: 1.5rem; }
.service-body .duration {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.service-body p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.service-cta {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.service-cta:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* === REVIEWS === */
.reviews { background: var(--navy-dark); }
.reviews h2, .reviews .section-subtitle { color: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--gold);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.review-text {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.review-author {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.review-date {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

/* === ABOUT === */
.about { background: var(--white); }
.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}
.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--gray);
}
.about-highlight {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border: 2px solid var(--gold);
    min-width: 150px;
}
.highlight-item .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1;
}
.highlight-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* === CONTACT === */
.contact { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.contact-item .icon {
    font-size: 1.5rem;
}
.map-frame {
    width: 100%;
    height: 350px;
    border: none;
    border: 4px solid var(--gold);
}

/* === FOOTER === */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 4px solid var(--gold);
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    font-size: 0.8rem;
    color: var(--gray);
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}
.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 1rem 1.8rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 6px 25px rgba(201,169,98,0.4);
    transition: all 0.3s;
}
.sticky-cta a:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-3px);
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
}
.lightbox-close:hover { color: var(--gold); }

/* === LIGHTBOX CSS FIX === */
.lightbox img, .lightbox-img {
    max-width: 95vw !important;
    max-height: 95vh !important;
    object-fit: contain;
}
.lightbox-close {
    z-index: 1000000 !important;
    color: white !important;
    opacity: 1 !important;
}

/* === MOBILE === */
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: var(--navy-dark); 
        flex-direction: column; 
        padding: 1.5rem; 
        gap: 1.2rem; 
        border-bottom: 4px solid var(--gold);
    }
    .nav-links.active { display: flex; }
    
    .hero { min-height: auto; padding: 4rem 0; }
    .hero-content { padding: 2rem 1.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1rem; }
    
    .trust-bar { gap: 2rem; flex-wrap: wrap; }
    .trust-item .number { font-size: 2rem; }
    
    .info-bar { flex-direction: column; gap: 0.8rem; text-align: center; }
    
    section { padding: 3.5rem 1.5rem; }
    section h2 { font-size: 2.2rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    .sticky-cta a {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .trust-bar { flex-direction: column; gap: 1.5rem; }
    .cta-primary, .cta-outline {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Lightbox: constrain image + visible close button */
.lightbox img, .lightbox-img {
    max-width: 95vw !important;
    max-height: 95vh !important;
    object-fit: contain;
}
.lightbox-close {
    z-index: 1000000 !important;
    color: white !important;
    opacity: 1 !important;
}
