/* ============================================
   T&G BAS — Modern Website Styles
   ============================================ */

:root {
    --red: #dc2626;
    --red-dark: #991b1b;
    --red-light: #ef4444;
    --black: #000000;
    --dark: #0a0a0a;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --white: #ffffff;
    --ease: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

::selection {
    background: var(--red);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 0;
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-content {
    text-align: center;
}
.logo-loader {
    animation: pulseLogo 1.5s ease-in-out infinite;
}
@keyframes pulseLogo {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    margin: 2rem auto 0;
}
.loader-progress {
    height: 100%;
    background: var(--red);
    animation: loadProgress 1.5s ease-in-out infinite;
}
@keyframes loadProgress {
    0% { width: 0; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 100%; transform: translateX(100%); }
}

/* ============================================
   Cursor
   ============================================ */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: opacity 0.2s;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--red);
}
@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* ============================================
   Scroll Progress
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    z-index: 9997;
    width: 0%;
    transition: width 0.1s;
}

/* ============================================
   Header
   ============================================ */
#header {
    transition: all 0.4s var(--ease);
}
#header.scrolled .main-nav {
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
#header.scrolled .top-bar {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active {
    color: white;
}
.nav-link:hover::before, .nav-link.active::before {
    width: 100%;
}

.lang-btn {
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0 6px;
}
.lang-btn:hover, .lang-btn.active {
    color: var(--red);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.75rem;
    background: var(--red);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-dark);
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
    z-index: 0;
}
.btn-primary:hover::before {
    transform: translateX(0);
}
.btn-primary > * {
    position: relative;
    z-index: 1;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.75rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.btn-outline:hover {
    background: white;
    color: black;
    border-color: white;
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
}

/* Menu Toggle */
.menu-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px auto;
    transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu a {
    color: white;
    font-weight: 600;
    transition: color 0.2s;
}
.mobile-menu a:hover {
    color: var(--red);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 140px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg .swiper,
.hero-bg .swiper-wrapper,
.hero-bg .swiper-slide {
    height: 100%;
}
.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: slowZoom 10s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    background: rgba(220, 38, 38, 0.05);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}
.hero-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}
@keyframes blink {
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-weight: 400;
}
.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-top: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}
.stat:nth-child(3) {
    align-items: baseline;
    flex-direction: row;
    gap: 4px;
}
.stat:nth-child(3) .stat-label {
    width: 100%;
}
.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}
.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}
@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

.hero-side {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    z-index: 5;
    display: none;
}
@media (min-width: 1280px) {
    .hero-side { display: block; }
}
.side-text {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

/* ============================================
   Marquee
   ============================================ */
.marquee-section {
    background: var(--red);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    align-items: center;
}
.marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    color: white;
}
.marquee-track i {
    color: black !important;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   Sections Common
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
}
.section-tag span:first-child {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
}
.section-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--red);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: linear-gradient(to bottom, var(--black), var(--gray-900));
}

.feature-item {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.feature-item h4 {
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}
.feature-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
}
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.6s;
}
.about-image:hover {
    filter: grayscale(0%) contrast(1.2);
}

.about-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--red);
    padding: 2rem;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.about-badge .text-sm {
    color: white;
}
.about-badge .text-6xl {
    color: white !important;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    color: var(--black);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out 1s infinite;
    z-index: 2;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}
.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(220, 38, 38, 0.15);
    bottom: -200px;
    right: -200px;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--black);
    position: relative;
}

.service-card {
    position: relative;
    display: block;
    padding: 2.5rem 2rem;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    aspect-ratio: 3/4;
}
.service-card:hover {
    border-color: var(--red);
    transform: translateY(-8px);
}
.service-number {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--red);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 2rem;
    transition: all 0.4s;
}
.service-card:hover .service-icon {
    background: var(--red);
    color: white;
    transform: rotate(-10deg) scale(1.1);
}
.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}
.service-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}
.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.service-card:hover .service-arrow {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(-45deg);
}
.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.5));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s;
}
.service-card:hover .service-bg,
.service-card:hover::after {
    opacity: 1;
    z-index: 0;
}
.service-card:hover > *:not(.service-bg) {
    position: relative;
    z-index: 1;
}

/* ============================================
   Process Section
   ============================================ */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-number {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    margin-bottom: 1rem;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    transition: all 0.4s;
}
.process-step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
}
.process-step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.process-step p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ============================================
   Brands Section
   ============================================ */
.brands-section {
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.brands-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.brands-track {
    display: flex;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}
.brand-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
    flex-shrink: 0;
}
.brand-logo:hover {
    color: var(--red);
}

/* ============================================
   Gallery
   ============================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-item.gallery-lg {
    grid-row: span 2;
    aspect-ratio: 1/2;
}
@media (max-width: 767px) {
    .gallery-item.gallery-lg {
        grid-row: span 1;
        aspect-ratio: 1;
    }
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.6s;
    filter: grayscale(30%);
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.85) 0%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    transform: translateY(20px);
    transition: transform 0.4s 0.1s;
}
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card {
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.4s;
}
.testimonial-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}
.testimonial-quote {
    font-size: 3rem;
    color: var(--red);
    opacity: 0.3;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 2rem;
}
.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.3);
    opacity: 1;
    width: 24px;
    height: 3px;
    border-radius: 0;
    transition: all 0.3s;
}
.swiper-pagination-bullet-active {
    background: var(--red);
    width: 48px;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    position: relative;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
    filter: grayscale(60%);
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.footer-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
    color: var(--red);
}
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.footer-contact li i {
    color: var(--red);
    margin-top: 4px;
}
.footer-contact a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}

.satisfaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: var(--red);
    font-size: 0.85rem;
    transition: all 0.3s;
    margin-top: 1rem;
}
.satisfaction-btn:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--red);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 50;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-5px);
}

/* ============================================
   Inner Page Hero
   ============================================ */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 60px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--red);
}
.breadcrumb i {
    font-size: 0.7rem;
}
.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
}

/* ============================================
   Inner page content sections
   ============================================ */
.content-block {
    padding: 6rem 0;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; }
}
.content-grid h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.content-grid p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.content-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}
.content-image:hover img {
    transform: scale(1.05);
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .check-list { grid-template-columns: 1fr; }
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}
.check-list li i {
    color: var(--red);
    margin-top: 5px;
    flex-shrink: 0;
}

/* Feature cards grid for inner pages */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--gray-900);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.feature-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-info {
    padding: 3rem;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: flex-start;
}
.contact-info-item:last-child {
    border-bottom: none;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-item h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.35rem;
}
.contact-info-item p, .contact-info-item a {
    color: white;
    font-weight: 500;
}
.contact-info-item a:hover {
    color: var(--red);
}

.contact-form {
    padding: 3rem;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(220, 38, 38, 0.05);
}
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

.map-wrapper {
    margin-top: 3rem;
    height: 450px;
    filter: invert(90%) hue-rotate(180deg) grayscale(40%);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   Pricing / Parts Categories
   ============================================ */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.part-category {
    background: var(--gray-900);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.part-category:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-5px);
}
.part-category i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
    transition: color 0.3s;
}
.part-category:hover i {
    color: white;
}
.part-category h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.part-category p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.part-category:hover p {
    color: rgba(255,255,255,0.9);
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.accordion-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
}
.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
}
.accordion-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: transform 0.3s;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-body-inner {
    padding: 0 2rem 1.5rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.accordion-item.active .accordion-body {
    max-height: 500px;
}
