/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #c9a96e;
    --color-accent-hover: #b8953d;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-light-bg: #f5f5f0;
    --color-border: #e0d8cc;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
}

h1 { font-size: 2.8rem; margin-bottom: 20px; }
h2 { font-size: 2.2rem; margin-bottom: 16px; }
h3 { font-size: 1.6rem; margin-bottom: 12px; }
h4 { font-size: 1.2rem; margin-bottom: 10px; }

p { margin-bottom: 16px; }

.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--color-primary);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.top-contact {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contact:hover {
    color: var(--color-accent);
}

/* ===== HEADER / NAV ===== */
.site-header {
    background: var(--color-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 4px;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 20px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--color-accent);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    border-top: 3px solid var(--color-accent);
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid var(--color-light-bg);
    transition: all 0.2s ease;
}

.dropdown li a:hover {
    background: var(--color-light-bg);
    color: var(--color-accent);
    padding-left: 28px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

/* ===== HERO SECTIONS ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 46, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
}

.hero h1 {
    color: var(--color-white);
    font-size: 3.2rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h2 {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 300;
    font-family: var(--font-body);
    margin-bottom: 30px;
}

.hero-small {
    min-height: 300px;
}

.hero-small h1 {
    font-size: 2.6rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--color-primary);
    padding: 50px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    color: var(--color-accent);
    font-size: 14px;
}

.page-banner .breadcrumb a {
    color: var(--color-accent);
}

/* ===== SERVICE CARDS GRID ===== */
.services-section {
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-intro h2 {
    position: relative;
    padding-bottom: 20px;
}

.services-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 16px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(26,26,46,0.3));
}

.service-card-body {
    padding: 24px;
    text-align: center;
}

.service-card-body h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-card-body a.btn {
    margin-top: 8px;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
    padding: 60px 0;
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.service-detail h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 16px;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.service-detail ul {
    margin: 16px 0 24px 24px;
}

.service-detail ul li {
    margin-bottom: 10px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-detail ol {
    margin: 16px 0 24px 24px;
    counter-reset: step;
}

.service-detail ol li {
    margin-bottom: 12px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-detail-image {
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 16px;
}

.about-text p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item .icon {
    font-size: 24px;
    color: var(--color-accent);
    min-width: 36px;
    text-align: center;
}

.contact-form label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    background: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: var(--color-light-bg);
    padding: 60px 0;
    text-align: center;
}

.quote-section blockquote p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.quote-section blockquote cite {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-accent);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    background: var(--color-primary);
    padding: 60px 0;
    color: var(--color-white);
    text-align: center;
}

.features-strip h3 {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    display: block;
    font-size: 28px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.feature-item p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 50px 0;
    background: var(--color-light-bg);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-secondary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--color-accent);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
}

/* ===== POLICY PAGES ===== */
.policy-section {
    padding: 60px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.policy-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-content p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.policy-content ul {
    margin: 10px 0 20px 24px;
}

.policy-content ul li {
    color: var(--color-text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ===== SMART LOCKER PAGE ===== */
.locker-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.locker-step {
    background: var(--color-light-bg);
    padding: 30px;
}

.locker-step h3 {
    color: var(--color-accent);
    margin-bottom: 16px;
}

.locker-step ul {
    list-style: none;
    padding: 0;
}

.locker-step ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 15px;
}

.locker-step ul li:last-child {
    border-bottom: none;
}

/* ===== VIDEO EMBED ===== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== COOKIE CONSENT OVERRIDES ===== */
.cc-revoke {
    padding: 8px 14px !important;
    font-size: 22px !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2) !important;
    background: var(--color-primary) !important;
    cursor: pointer;
}

.cc-window {
    font-family: var(--font-body) !important;
}

.cc-btn {
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    padding: 10px 20px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .locker-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .top-bar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-top: 3px solid var(--color-accent);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav > ul > li > a {
        padding: 14px 20px;
        border-bottom: 1px solid var(--color-light-bg);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        display: none;
        background: var(--color-light-bg);
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-small {
        min-height: 220px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
