/* ===================================
   Elite Auto Detailing Studio
   Premium Car Care Services - CSS
   =================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37; /* luxury gold */
    --secondary-color: #0e0f12; /* deep charcoal */
    --accent-color: #8c6d1f; /* rich gold accent */
    --text-dark: #e6e6e6; /* light text on dark bg */
    --text-light: #a5a5a5; /* muted light */
    --bg-light: #14161a; /* dark section bg */
    --bg-white: #0b0c0f; /* site background (very dark) */
    --border-color: #24262b; /* subtle borders */
    --shadow: 0 2px 14px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    font-size: 16px;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #a00d25;
    border-color: #a00d25;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: rgba(14, 15, 18, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0e0f12 0%, #1b1d22 100%);
    background-image: image-set(
        url('../images/hero-bg.jpg') type('image/jpeg') 1x,
        url('../images/hero-bg.svg') type('image/svg+xml') 1x
    );
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #14161a;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon { display: none; }

.service-card h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-light);
}

.why-choose-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: #14161a;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1b1d22 0%, #0e0f12 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Signature Packages */
.signature-packages {
    padding: 90px 0;
    background: var(--bg-white);
}

.packages-rows {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.package-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.package-row.alt .package-copy { order: 2; }
.package-row.alt .package-media { order: 1; }

.package-copy h3 {
    color: #fff;
    margin-bottom: 12px;
}

.package-copy p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.package-copy ul {
    margin-left: 18px;
}

.package-copy ul li {
    color: var(--text-dark);
    margin-bottom: 10px;
    list-style: disc;
}

.package-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Craft */
.craft {
    padding: 90px 0;
    background: var(--bg-white);
}

.craft-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.craft-copy h2 { margin-bottom: 16px; }
.craft-copy p { color: var(--text-light); margin-bottom: 16px; }

.bullets {
    margin-left: 18px;
}

.bullets li {
    list-style: disc;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.craft-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials {
    padding: 90px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.quote {
    background: #14161a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.quote p {
    color: #e8e8e8;
    margin-bottom: 10px;
}

.quote span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Service Map Diagram */
.service-map {
    padding: 90px 0;
    background: var(--bg-white);
}

.car-stage {
    position: relative;
    background: radial-gradient(60% 60% at 50% 50%, rgba(212,175,55,0.08) 0%, rgba(11,12,15,0) 70%);
    border: 1px solid #1e2126;
    border-radius: 14px;
    padding: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.car-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    mix-blend-mode: lighten;
    opacity: 0.95;
}

.callout {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-10%, -30%);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none; /* avoid blocking scroll/zoom */
}

.callout::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: calc(18px + var(--lead, 0px));
    height: 2px;
    background: rgba(212,175,55,0.55);
    transform: translateY(-50%);
}

.callout .dot {
    --s: 14px;
    width: var(--s);
    height: var(--s);
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(212,175,55,0.8), 0 0 0 3px rgba(212,175,55,0.18) inset;
}

.callout .label {
    background: rgba(12,14,16,0.92);
    border: 1px solid #2a2d33;
    padding: 12px 16px;
    border-radius: 12px;
    color: #e9e9e9;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    pointer-events: auto;
    transform: translateY(var(--shift, 0px));
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.5s ease;
    opacity: 0;
}
.callout .label:hover { transform: translateY(calc(var(--shift, 0px) - 2px)); box-shadow: 0 14px 36px rgba(0,0,0,0.5); }

/* reveal animation */
.callout.revealed .label { opacity: 1; }

.callout .label strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 0.95rem;
}

.callout .label span { font-size: 0.85rem; color: var(--text-light); }

.service-map-note {
    margin-top: 14px;
    color: var(--text-light);
    text-align: center;
}

/* subtle overlay to improve readability on bright images */
.car-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(62% 80% at 50% 46%, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.52) 100%);
    pointer-events: none;
}
/* Footer */
.footer {
    background: linear-gradient(180deg, #0e0f12 0%, #15171c 100%);
    color: white;
    padding: 70px 0 24px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 28px;
}

.footer-section h4 {
    color: #eaeaea;
    margin-bottom: 14px;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-section p {
    color: #bdbdbd;
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: #c7c7c7;
    transition: all 0.25s ease;
}

.footer-section a:hover {
    color: #0e0f12;
    background: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
}

.footer-logo {
    height: 54px;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid #2a2d33;
    border-radius: 999px;
    font-size: 0.95rem;
}

.social-links a:hover {
    transform: none;
    border-color: var(--primary-color);
}

.contact-info li {
    margin-bottom: 10px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid #23252a;
    color: #8e8e8e;
}

/* Brand column tweaks */
.footer .footer-section:first-child {
    max-width: 360px;
}

/* Minimal inline footer links */
.footer-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-inline .separator {
    color: #5a5a5a;
}

.footer-nav a, .footer-legal a {
    color: #c7c7c7;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-nav a:hover, .footer-legal a:hover {
    background: var(--primary-color);
    color: #0e0f12;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #d0d0d0;
}

.page-header-small {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.page-header-small h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header-small p {
    color: #b0b0b0;
}

/* Service Detail Pages */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: var(--bg-white);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.service-detail-text h2 {
    margin-bottom: 20px;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-text h3 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-features li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 8px;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

/* Service Packages */
.service-packages {
    padding: 80px 0;
    background: var(--bg-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: #14161a;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #0e0f12;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-card h3 {
    margin-bottom: 15px;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.package-card ul {
    text-align: left;
    margin-bottom: 30px;
}

.package-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.package-card ul li:last-child {
    border-bottom: none;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    margin-bottom: 25px;
}

.about-intro-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.mission-values {
    padding: 80px 0;
    background: var(--bg-white);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: #14161a;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission-card p, .mission-card ul li {
    color: var(--text-light);
    line-height: 1.7;
}

.mission-card ul {
    list-style: none;
}

.mission-card ul li {
    margin-bottom: 12px;
}

.why-different {
    padding: 80px 0;
}

.why-different h2 {
    text-align: center;
    margin-bottom: 50px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.difference-item { text-align: left; }
.difference-icon { display:none; }
.difference-item h3 { color:#ffffff; letter-spacing:0.02em; }
.difference-item p { color: var(--text-light); }

.difference-item h3 {
    margin-bottom: 15px;
}

.difference-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #9a0c24 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #f0f0f0;
}

.team {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    padding: 0 20px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 15px;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-success {
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-links-inline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links-inline a {
    color: var(--primary-color);
    font-weight: 500;
}

.hours-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.hours-card h3 {
    margin-bottom: 15px;
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table td {
    padding: 10px 0;
    color: var(--text-light);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-placeholder {
    background: white;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.faq-quick {
    padding: 80px 0;
}

.faq-quick h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0 80px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.legal-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.legal-section h4 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    margin: 15px 0 20px 25px;
}

.legal-section ul li, .legal-section ol li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 10px;
}

.legal-section ul li {
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

.contact-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details strong {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .process-steps,
    .packages-grid,
    .difference-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .why-choose-content,
    .service-detail-content,
    .about-intro,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail.alt .service-detail-content {
        direction: ltr;
    }
    
    .service-detail.alt .service-detail-image {
        order: 1;
    }
    
    .service-detail.alt .service-detail-text {
        order: 2;
    }
    .package-row { grid-template-columns: 1fr; }
    .package-row.alt .package-copy { order: 1; }
    .package-row.alt .package-media { order: 2; }
    .craft-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .service-card,
    .package-card,
    .mission-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: rgba(12,14,16,0.96);
    border: 1px solid #2a2d33;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-banner p { color: #c9c9c9; margin: 0; font-size: 0.95rem; line-height: 1.4; }
.cookie-banner a { color: var(--primary-color); text-decoration: underline; }
.cookie-actions { margin-left: auto; display: flex; gap: 10px; }

.btn-accept {
    background: var(--primary-color);
    color: #0e0f12;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.btn-accept:hover { filter: brightness(0.95); }

