/* ============================================
   SO SUAVE CHAUFFEURS - STYLE.CSS
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* --- Root Variables --- */
:root {
    --black: #050505;
    --dark: #0d0d0d;
    --dark-2: #141414;
    --blue: #2b7de9;
    --blue-light: #4a9eff;
    --blue-dark: #1a5bbf;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --white: #ffffff;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--silver-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
}

p {
    color: var(--silver);
    font-weight: 300;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--blue);
    font-style: italic;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.9;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--blue);
    margin: 24px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--white);
}

.nav-book {
    background: var(--blue);
    color: var(--white) !important;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-book:hover {
    background: var(--blue-light) !important;
    color: var(--white) !important;
}

.nav-book::after {
    display: none !important;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
}

.mobile-menu a:hover {
    color: var(--blue);
}

.mobile-menu .nav-book {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    padding: 14px 40px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-mobile-img {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.3) 0%,
            rgba(5, 5, 5, 0.5) 50%,
            rgba(5, 5, 5, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--blue);
}

.hero-sub {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--silver);
    text-transform: uppercase;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--dark);
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 48px;
}

.stat-item {
    background: var(--dark);
    padding: 28px 24px;
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--blue);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--blue);
    padding: 24px 28px;
    text-align: center;
}

.about-image-badge span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.about-image-badge p {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* ============================================
   IMPORTANT INFO SECTION
   ============================================ */
.info-section {
    background: var(--black);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
}

.info-card {
    background: var(--dark);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--blue);
    transition: height 0.4s ease;
}

.info-card:hover::before {
    height: 100%;
}

.info-card:hover {
    background: var(--dark-2);
}

.info-icon {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 400;
}

.info-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
    margin-top: 0;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: var(--transition);
    color: var(--blue);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.cta-section .section-title {
    font-size: clamp(36px, 5vw, 72px);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ============================================
   GALLERY PAGE HERO
   ============================================ */
.page-hero {
    height: 50vh;
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.7);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 300;
}

.page-hero h1 span {
    color: var(--blue);
    font-style: italic;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb-sep {
    color: var(--blue);
}

/* ============================================
   MASONRY GALLERY
   ============================================ */
.gallery-section {
    background: var(--black);
}

.masonry-grid {
    columns: 3;
    column-gap: 12px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.masonry-item:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

.masonry-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.masonry-item:hover .masonry-item-overlay {
    background: rgba(5, 5, 5, 0.3);
}

.masonry-expand {
    width: 44px;
    height: 44px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.masonry-item:hover .masonry-expand {
    opacity: 1;
    transform: scale(1);
}

/* Tall images */
.masonry-item.tall img {
    height: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-logo img {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--blue);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--blue);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--text-muted);
}

.footer-contact-item a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap {
        order: -1;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-left {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .hero-video {
        display: none;
    }

    .hero-mobile-img {
        display: block;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .masonry-grid {
        columns: 2;
        column-gap: 8px;
    }

    .masonry-item {
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}