/* ========== RESET & CUSTOM PROPERTIES ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #141414;
    --accent: #c8a848;
    --accent-hover: #e0c060;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: #2a2a2a;
    --gradient-overlay: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.95) 100%);

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --section-padding: 140px;
    --container-width: 1240px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ========== UTILITY ========== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 72, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ========== HEADER / NAV ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
    background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, transparent 100%);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.site-header.scrolled .nav-link {
    color: var(--text-secondary);
    text-shadow: none;
}

.nav-container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 4px 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--primary-bg);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

/* --- Slides --- */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 65%;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 6s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Per-image positioning */
.hero-slide:nth-child(1) { background-position: center center; }
.hero-slide:nth-child(2) { background-position: center center; }
.hero-slide:nth-child(3) { background-position: center center; }

/* --- Overlay --- */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.1) 40%,
        rgba(10,10,10,0.3) 70%,
        rgba(10,10,10,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- Per-Slide Content --- */
.hero-slide-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 80px;
}

/* Positioning variants */
.hero-slide-content--left {
    left: 0;
    text-align: left;
    max-width: 600px;
}

.hero-slide-content--right {
    right: 0;
    text-align: right;
    max-width: 600px;
}

.hero-slide-content--center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
    padding: 0 40px;
}

/* Tag line */
.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-tag {
    animation: heroFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

/* Display heading */
.hero-display {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 8rem);
    color: var(--text-primary);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(50px);
}

.hero-slide.active .hero-display {
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

/* CTA Link — ShiftUp style with accent bar */
.hero-cta-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    padding: 16px 32px;
    background: rgba(255,255,255,0.08);
    border-left: 3px solid var(--accent);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-cta-link {
    animation: heroFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.hero-cta-link:hover {
    background: rgba(200, 168, 72, 0.15);
    color: var(--accent);
}

/* Reset animations on slide-out */
.hero-slide:not(.active) .hero-tag,
.hero-slide:not(.active) .hero-display,
.hero-slide:not(.active) .hero-cta-link {
    animation: none;
    opacity: 0;
    transform: translateY(30px);
}

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

/* --- Arrows (bottom-left like ShiftUp) --- */
.hero-arrows {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}

.hero-arrow {
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    color: var(--text-primary);
}

/* --- Pagination (bottom-right like ShiftUp) --- */
.hero-pagination {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 3;
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    font-family: var(--font-display);
}

.hero-page-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.35);
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
}

.hero-page-num.active {
    font-size: 2.2rem;
    color: var(--text-primary);
}

.hero-page-num:hover:not(.active) {
    color: rgba(255,255,255,0.7);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 80px;
    z-index: 2;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========== STATS ========== */
.stats-bar {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--accent);
    letter-spacing: 0.02em;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ========== ABOUT ========== */
.about {
    background: var(--secondary-bg);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about > .container > .section-label {
    margin-bottom: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* --- Left: Outlined Typography Stack --- */
.about-typography {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
}

.about-typo-word {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8.5vw, 9.5rem);
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.13);
    transition: all 0.4s ease;
    cursor: default;
    white-space: nowrap;
}

.about-typo-word--active,
.about-typo-word:hover {
    color: var(--text-primary);
    -webkit-text-stroke: 0;
}

/* --- Right: Content --- */
.about-content {
    padding-top: 0.5rem;
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: var(--text-primary);
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.about-subheading {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.about-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 8px;
    height: 8px;
    background: var(--accent);
}

.about-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ShiftUp-style CTA button */
.btn-shiftup {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: var(--accent);
    padding: 20px 48px;
    border: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-shiftup:hover {
    background: var(--accent-hover);
    color: var(--primary-bg);
}

/* ========== FEATURES ========== */
.features {
    position: relative;
    background: var(--secondary-bg);
    overflow: hidden;
}

.features-bg-parallax {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.85) 50%, rgba(20,20,20,0.92) 100%),
        url('https://images.unsplash.com/photo-1625047509248-ec889cbff17f?auto=format&fit=crop&w=1920&q=60')
        center center / cover no-repeat;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.features-grid .feature-card:nth-child(4),
.features-grid .feature-card:nth-child(5) {
    grid-column: span 1;
}

/* Center last two cards */
.features-grid::after {
    content: '';
    grid-column: span 1;
    display: none;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 168, 72, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.feature-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-flex;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== PRODUCTS ========== */
.products {
    background: var(--primary-bg);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.product-tab {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 32px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.product-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-tab.active,
.product-tab:hover {
    color: var(--text-primary);
}

.product-tab.active::after {
    transform: scaleX(1);
}

.product-panel {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.product-panel.active {
    display: flex;
    animation: fadeInUp 0.5s ease forwards;
}

.product-card {
    display: flex;
    align-items: center;
    background: var(--secondary-bg);
    border: 1px solid var(--border);
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    border-color: rgba(200, 168, 72, 0.3);
    transform: translateX(8px);
}

.product-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.product-card:hover .product-card-accent {
    transform: scaleY(1);
}

.product-info {
    flex: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.product-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(200, 168, 72, 0.3);
    padding: 6px 16px;
    white-space: nowrap;
}

/* ========== GALLERY ========== */
.gallery {
    background: var(--secondary-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item .image-placeholder,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .image-placeholder,
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-vehicle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-service {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    width: 800px;
    max-width: 90vw;
    height: 500px;
    background: var(--secondary-bg);
    border: 1px solid var(--border);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--primary-bg);
    overflow: hidden;
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 2rem;
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-bg);
    border: 2px solid var(--border);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-align: left;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: left;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: none;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* ========== FAQ ========== */
.faq {
    background: var(--secondary-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.4s ease;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.75rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== INSTAGRAM CTA ========== */
.instagram-cta {
    position: relative;
    background: var(--primary-bg);
    overflow: hidden;
}

.instagram-bg-parallax {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.93) 100%),
        url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1920&q=60')
        center center / cover no-repeat;
    pointer-events: none;
}

.instagram-points {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.instagram-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.instagram-point svg {
    color: var(--accent);
}

/* ========== CONTACT ========== */
.contact {
    background: var(--secondary-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(200, 168, 72, 0.03);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1rem;
}

.contact-info-wrap {
    padding-top: 0;
}

.contact-details {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-detail strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-placeholder .image-placeholder {
    min-height: 250px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit {
    opacity: 0.5;
    font-size: 0.75rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ========== IMAGE PLACEHOLDER ========== */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background:
        linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: attr(data-label);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    padding: 0 2rem;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(200, 168, 72, 0.03) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


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

/* ========== SELECTION ========== */
::selection {
    background: var(--accent);
    color: var(--primary-bg);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

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