/* -------------------------------------------------------------
   WESTMARK IMPORTS - PREMIUM ONE PAGE STYLE SHEET
   Color Scheme: Dark Luxury & Sunset Pastel Orange
   ------------------------------------------------------------- */

/* Design Tokens & Variables */
:root {
    --bg-base: #060608;
    --bg-surface: #0e0e12;
    --bg-surface-secondary: #16161d;
    --bg-card: rgba(22, 22, 29, 0.6);
    --bg-glass: rgba(14, 14, 18, 0.75);
    
    --primary: #f39c12; /* Pastel Orange from Logo */
    --primary-light: #ffb74d;
    --primary-dark: #d35400;
    --primary-glow: rgba(243, 156, 18, 0.35);
    
    --secondary: #e67e22;
    --secondary-glow: rgba(230, 126, 34, 0.2);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --white: #ffffff;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(243, 156, 18, 0.25);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px var(--primary-glow);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-secondary);
    border: 2px solid var(--bg-base);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.hidden {
    display: none !important;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 35px var(--primary);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(6, 6, 8, 0.9);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
}

.logo-brand {
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-sub {
    font-weight: 700;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 3px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--border-color-glow);
    color: var(--primary-light);
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.05);
}

.phone-cta-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.25);
}

.phone-cta-btn i {
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0% { transform: scale(1); }
    10% { transform: scale(1.2) rotate(15deg); }
    20% { transform: scale(1.2) rotate(-15deg); }
    30% { transform: scale(1.2) rotate(15deg); }
    40% { transform: scale(1.2) rotate(-15deg); }
    50% { transform: scale(1); }
    100% { transform: scale(1); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-base);
    overflow: hidden;
}

/* Background Crossfading Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out, transform 12s cubic-bezier(0.1, 0.8, 0.2, 1);
    z-index: 1;
    transform: scale(1.0);
}

.hero-bg-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1.06); /* Premium Ken Burns zoom effect */
}

.hero-bg-slider .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) contrast(1.05) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Left-to-right dark mask for text legibility + vertical fade to black at the bottom curve */
    background: linear-gradient(90deg, rgba(6, 6, 8, 0.85) 0%, rgba(6, 6, 8, 0.45) 45%, rgba(6, 6, 8, 0) 70%),
                linear-gradient(180deg, rgba(6, 6, 8, 0.2) 0%, rgba(6, 6, 8, 0) 60%, #060608 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 4;
    width: 100%;
}

.hero-content {
    max-width: 750px;
    position: relative;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--border-color-glow);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.badge-premium i {
    color: var(--primary);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 40px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bullet-item i {
    color: var(--primary);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(14, 14, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slider-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow.prev-arrow {
    left: 40px;
}

.slider-arrow.next-arrow {
    right: 40px;
}

@media (max-width: 1024px) {
    .slider-arrow {
        display: none; /* Hide arrows on smaller tablet and mobile screens for cleaner interface */
    }
}

/* Slider Dots Centering and Transitions */
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(0, 0, 0, 0.5); /* Strong border for visibility against any background */
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-dots .dot:hover {
    background-color: var(--white);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background-color: var(--primary);
    width: 34px;
    border-radius: 6px;
    box-shadow: 0 0 15px var(--primary), 0 2px 4px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-bottom-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-bottom-curve svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--bg-base);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-glow);
    box-shadow: var(--shadow-md), 0 0 20px rgba(243, 156, 18, 0.05);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    height: 70px;
    width: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: rgba(243, 156, 18, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    border: 1px solid rgba(243, 156, 18, 0.15);
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.stat-number-wrapper {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.stat-plus {
    color: var(--primary-light);
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

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

/* Sections Global Headers */
.section-title {
    margin-bottom: 60px;
}

.subtitle {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 17px;
}

/* How We Work / Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.timeline-line {
    position: absolute;
    left: 45px;
    top: 20px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, var(--primary) 0%, var(--bg-surface-secondary) 100%);
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--bg-surface-secondary);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.timeline-step:hover .step-number {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.step-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-content {
    border-color: var(--border-color-glow);
    transform: translateX(10px);
    background-color: rgba(22, 22, 29, 0.8);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-base);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.car-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.car-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-glow);
    box-shadow: var(--shadow-md);
}

.car-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.car-card:hover .car-img {
    transform: scale(1.08);
}

.car-badge-savings {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.car-info {
    padding: 24px;
}

.car-brand {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.car-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    margin-bottom: 18px;
}

.car-specs span {
    font-size: 13px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.car-specs span i {
    color: var(--primary);
}

.car-price-savings {
    background-color: rgba(243, 156, 18, 0.05);
    border: 1px dashed rgba(243, 156, 18, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
}

.savings-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.savings-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-light);
}

.gallery-cta {
    margin-top: 50px;
}

/* TikTok & Socials Section */
.tiktok-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.tiktok-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 760px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.tiktok-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-glow);
    box-shadow: var(--shadow-md);
}

.tiktok-embed-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    background-color: #000;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Hide scrollbars inside TikTok embeds */
.tiktok-embed-wrapper::-webkit-scrollbar {
    display: none;
}

.tiktok-card-footer {
    padding: 16px 20px;
    background-color: var(--bg-surface-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
}

.tiktok-card-footer i {
    color: #ff0050; /* TikTok Official Color */
    font-size: 18px;
}

.social-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    color: var(--white);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.fb-btn {
    background-color: #1877f2;
}

.fb-btn:hover {
    background-color: #166fe5;
}

.tt-btn {
    background-color: #010101;
    border: 1px solid #333;
}

.tt-btn:hover {
    background-color: #111;
    border-color: #ff0050;
}

.google-btn {
    background-color: #ea4335;
}

.google-btn:hover {
    background-color: #d62516;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-base);
}

.faq-accordion-container {
    max-width: 850px;
    margin: 50px auto 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.faq-question:hover h3, .faq-item.active .faq-question h3 {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 16px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.faq-answer li strong {
    color: var(--white);
}

/* Contact & Form Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {
    max-width: 500px;
}

.contact-info-panel .section-title {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 45px;
}

.contact-detail-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    align-items: center;
    transition: var(--transition-smooth);
}

.contact-detail-card:hover {
    border-color: var(--border-color-glow);
    transform: translateY(-2px);
}

.detail-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(243, 156, 18, 0.08);
    border: 1px solid rgba(243, 156, 18, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-content h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.detail-link {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.detail-link:hover {
    color: var(--primary-light);
}

.detail-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.detail-note {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.badge-logo img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.badge-text h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.badge-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #4b5563;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-privacy {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.form-privacy input {
    margin-top: 4px;
    cursor: pointer;
}

.form-privacy label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.form-privacy label .required {
    color: var(--primary);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Spinner Loader */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Section */
.main-footer {
    background-color: #040405;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 60px;
}

.footer-about .logo-area {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-social p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    background-color: var(--bg-surface-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.footer-social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Sticky Mobile CTA Bar */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(6, 6, 8, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color-glow);
    display: none;
    grid-template-columns: repeat(2, 1fr);
    z-index: 999;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}

.sticky-btn {
    padding: 15px 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
}

.sticky-btn.phone-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.sticky-btn.form-btn {
    background-color: var(--bg-surface-secondary);
    border-left: 1px solid var(--border-color);
}

/* -------------------------------------------------------------
   RESPONSIVENESS (MEDIA QUERIES)
   ------------------------------------------------------------- */

/* Large Tablets & Small Desktops (max-width: 1100px) */
@media (max-width: 1100px) {
    .hero-container {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .tiktok-card:last-child {
        display: none; /* Hide 3rd video to keep it clean on tablet layout */
    }
}

/* Medium Tablets & Mobiles (max-width: 900px) */
@media (max-width: 900px) {
    .hero-container {
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-bullets {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-panel {
        max-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 50px; /* Space for Mobile Sticky CTA */
    }

    .mobile-sticky-cta {
        display: grid; /* Show sticky CTA on mobile */
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .logo-brand {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .header-cta .phone-cta-btn {
        display: none; /* Hide top phone CTA on mobile, sticky CTA takes over */
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-surface-secondary);
        border-left: 1px solid var(--border-color);
        padding: 100px 40px;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    /* Hamburger Active State */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .step-number {
        width: 54px;
        height: 54px;
        font-size: 20px;
        border-width: 2px;
    }
    
    .timeline-step {
        gap: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tiktok-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tiktok-card:last-child {
        display: flex; /* Show all on mobile grid stack */
    }
    
    .tiktok-card {
        height: 700px;
    }
    
    .slider-dots {
        bottom: 95px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 34px;
    }
    
    .hero-lead {
        font-size: 16px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
