:root {
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-red: #dc143c;
    --color-red-dark: #a00a28;
    --color-red-light: #ff1744;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --color-text-gray: #b0b0b0;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

/* Light Mode Colors */
body.light-mode {
    --color-black: #ffffff;
    --color-dark-gray: #f5f5f5;
    --color-gray: #e0e0e0;
    --color-white: #1a1a1a;
    --color-off-white: #2a2a2a;
    --color-text-gray: #666666;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(220, 20, 60, 0.2);
}

body.light-mode .nav-link {
    color: #1a1a1a;
}

body.light-mode .logo-text {
    color: #dc143c;
}

body.light-mode .logo-subtext {
    color: #666;
}

body.light-mode .page-hero-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: scale(1.1);
}

.theme-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(180deg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 2px;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-text-gray);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-link.admin-link {
    background: rgba(220, 20, 60, 0.1);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.nav-link.admin-link:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--color-red);
    transform: translateY(-2px);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-red);
    transition: all 0.3s ease;
}

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

/* FEATURED WORK BANNER */
.featured-banner {
    padding: 4rem 0;
    background: #1a1a1a;
}

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

.featured-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 2px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.featured-img:hover {
    border-color: #dc143c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .featured-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* WORK STRIP */
.work-strip {
    padding: 0;
    background: #0a0a0a;
}

.work-strip-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.strip-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.strip-img:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .work-strip-images {
        grid-template-columns: 1fr;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.red-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Twinkling Stars Background */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 10% 10%, white, transparent),
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 30% 15%, white, transparent),
        radial-gradient(2px 2px at 40% 25%, white, transparent),
        radial-gradient(1px 1px at 50% 5%, white, transparent),
        radial-gradient(2px 2px at 60% 20%, white, transparent),
        radial-gradient(1px 1px at 70% 35%, white, transparent),
        radial-gradient(2px 2px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 90% 28%, white, transparent),
        radial-gradient(2px 2px at 15% 45%, white, transparent),
        radial-gradient(1px 1px at 25% 55%, white, transparent),
        radial-gradient(2px 2px at 35% 60%, white, transparent),
        radial-gradient(1px 1px at 45% 50%, white, transparent),
        radial-gradient(2px 2px at 55% 65%, white, transparent),
        radial-gradient(1px 1px at 65% 58%, white, transparent),
        radial-gradient(2px 2px at 75% 70%, white, transparent),
        radial-gradient(1px 1px at 85% 62%, white, transparent),
        radial-gradient(2px 2px at 95% 75%, white, transparent),
        radial-gradient(1px 1px at 12% 80%, white, transparent),
        radial-gradient(2px 2px at 22% 88%, white, transparent),
        radial-gradient(1px 1px at 32% 85%, white, transparent),
        radial-gradient(2px 2px at 42% 92%, white, transparent),
        radial-gradient(1px 1px at 52% 87%, white, transparent),
        radial-gradient(2px 2px at 62% 95%, white, transparent),
        radial-gradient(1px 1px at 72% 82%, white, transparent),
        radial-gradient(2px 2px at 82% 90%, white, transparent),
        radial-gradient(1px 1px at 92% 78%, white, transparent),
        radial-gradient(2px 2px at 5% 50%, white, transparent),
        radial-gradient(1px 1px at 15% 68%, white, transparent),
        radial-gradient(2px 2px at 88% 45%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: twinkle 4s ease-in-out infinite;
}

.stars::after {
    background-image: 
        radial-gradient(1px 1px at 8% 12%, white, transparent),
        radial-gradient(2px 2px at 18% 22%, white, transparent),
        radial-gradient(1px 1px at 28% 8%, white, transparent),
        radial-gradient(2px 2px at 38% 32%, white, transparent),
        radial-gradient(1px 1px at 48% 18%, white, transparent),
        radial-gradient(2px 2px at 58% 28%, white, transparent),
        radial-gradient(1px 1px at 68% 15%, white, transparent),
        radial-gradient(2px 2px at 78% 38%, white, transparent),
        radial-gradient(1px 1px at 88% 25%, white, transparent),
        radial-gradient(2px 2px at 13% 52%, white, transparent),
        radial-gradient(1px 1px at 23% 48%, white, transparent),
        radial-gradient(2px 2px at 33% 65%, white, transparent),
        radial-gradient(1px 1px at 43% 55%, white, transparent),
        radial-gradient(2px 2px at 53% 72%, white, transparent),
        radial-gradient(1px 1px at 63% 62%, white, transparent),
        radial-gradient(2px 2px at 73% 68%, white, transparent),
        radial-gradient(1px 1px at 83% 78%, white, transparent),
        radial-gradient(2px 2px at 93% 85%, white, transparent),
        radial-gradient(1px 1px at 7% 75%, white, transparent),
        radial-gradient(2px 2px at 17% 82%, white, transparent),
        radial-gradient(1px 1px at 27% 90%, white, transparent),
        radial-gradient(2px 2px at 37% 95%, white, transparent),
        radial-gradient(1px 1px at 47% 88%, white, transparent),
        radial-gradient(2px 2px at 57% 93%, white, transparent),
        radial-gradient(1px 1px at 67% 85%, white, transparent),
        radial-gradient(2px 2px at 77% 92%, white, transparent),
        radial-gradient(1px 1px at 87% 88%, white, transparent),
        radial-gradient(2px 2px at 97% 80%, white, transparent),
        radial-gradient(1px 1px at 3% 42%, white, transparent),
        radial-gradient(2px 2px at 95% 38%, white, transparent);
    background-size: 250% 250%;
    background-position: 50% 50%;
    animation: twinkle 3s ease-in-out infinite reverse;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Individual dynamic stars */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

/* Car Animation */
.car-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    animation: carFadeIn 1s ease-out 0.5s forwards;
}

@keyframes carFadeIn {
    to {
        opacity: 1;
    }
}

.car-trail {
    width: 100%;
    height: 100%;
}

.trail {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawTrail 3s ease-out forwards;
}

.trail-1 {
    animation-delay: 0.3s;
}

.trail-2 {
    animation-delay: 0.4s;
}

.trail-3 {
    animation-delay: 0.5s;
}

@keyframes drawTrail {
    0% {
        stroke-dashoffset: 1000;
        opacity: 1;
    }
    30% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -500;
        opacity: 0;
    }
}

.sports-car {
    transform: translateX(-200px);
    animation: driveCar 3s ease-out forwards;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.8));
}

@keyframes driveCar {
    0% {
        transform: translateX(-200px) translateY(150px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(1300px) translateY(150px);
        opacity: 0;
    }
}

/* Add motion blur effect */
.sports-car path,
.sports-car ellipse {
    animation: pulseGlow 0.5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(220, 20, 60, 0.5));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(255, 23, 68, 0.8));
    }
}

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

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.2);
    border: 2px solid #dc143c;
    padding: 0.75rem 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

/* Service Highlights */
.service-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.highlight-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(220, 20, 60, 0.3);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: #dc143c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.highlight-icon {
    font-size: 1.2rem;
}

/* Mobile Service Badge */
.mobile-service-badge {
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
    border: 2px solid #dc143c;
    border-left: none;
    border-right: none;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: slideIn 1s ease-out 0.7s backwards;
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dc143c;
}

.badge-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Service Areas */
.service-areas {
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.areas-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #dc143c;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.area-tag {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-tag:hover {
    background: rgba(220, 20, 60, 0.3);
    border-color: #dc143c;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: 0.9;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

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

.title-accent {
    color: var(--color-red);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-red);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1s backwards;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
}

.cta-button:hover {
    background: var(--color-red-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.cta-button:hover .button-glow {
    animation: shine 0.6s ease-out;
}

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

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

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* CAR SHOWCASE SECTION */
.car-showcase-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.showcase-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    border-color: #dc143c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 568px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* QUICK VISUAL SECTION */
.quick-visual-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.visual-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.visual-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .quick-visual-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* SPLIT PHOTO SECTION */
.split-photo-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content {
    padding-right: 2rem;
}

.split-title {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.split-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.split-gif-mobile {
    display: none;
}

.split-image {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .split-content {
        padding-right: 0;
    }
    
    .split-image {
        display: none;
    }
    
    .split-gif-mobile {
        display: block;
        width: 100%;
        margin-top: 2rem;
        border: 2px solid rgba(220, 20, 60, 0.3);
    }
}

/* FEATURES SECTION */
.features {
    padding: 8rem 0;
    background: var(--color-dark-gray);
}

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

.feature-card {
    padding: 3rem 2rem;
    background: var(--color-black);
    border: 1px solid rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card[data-index="1"] {
    animation-delay: 0.2s;
}

.feature-card[data-index="2"] {
    animation-delay: 0.4s;
}

.feature-card[data-index="3"] {
    animation-delay: 0.6s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-red);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--color-text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.feature-line {
    width: 50px;
    height: 2px;
    background: var(--color-red);
    margin-top: 2rem;
}

/* PROMISE SECTION */
.promise {
    padding: 8rem 0;
    background: var(--color-black);
}

.promise-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--color-red);
}

.promise-description {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.promise-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.promise-visual {
    position: relative;
    height: 500px;
}

/* Promise Image Container */
.promise-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 3px solid var(--color-red);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    animation: slideInRight 1s ease-out;
}

.promise-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(220, 20, 60, 0.1) 0%,
        transparent 50%,
        rgba(220, 20, 60, 0.1) 100%
    );
    pointer-events: none;
    animation: overlayPulse 3s ease-in-out infinite;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* CTA SECTION */
.cta-section {
    padding: 6rem 0;
    background: var(--color-dark-gray);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--color-red);
}

.cta-button.secondary:hover {
    background: var(--color-red);
}

/* FOOTER */
.footer {
    background: var(--color-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    letter-spacing: 2px;
    color: var(--color-red);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
    text-align: center;
    color: var(--color-text-gray);
    font-size: 0.9rem;
}

/* PAGE HERO */
.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 50%, var(--color-black) 100%);
    z-index: 0;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 5rem;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

/* SERVICES PAGE */
.services-section {
    padding: 6rem 0;
    background: var(--color-black);
    width: 100%;
}

.services-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.service-item {
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-red);
}

.service-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-red);
}

.service-content {
    padding: 2rem 0;
}

.service-description {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-gray);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--color-red);
    transform: rotate(45deg);
}

.service-divider {
    margin-top: 4rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(220, 20, 60, 0.3), transparent);
}

/* GALLERY PAGE */
.gallery-section {
    padding: 6rem 0;
    background: var(--color-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-dark-gray);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.placeholder-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.4;
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.1);
}

.gallery-info {
    padding: 1.5rem;
    background: var(--color-dark-gray);
    border-top: 2px solid var(--color-red);
}

.gallery-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

/* TESTIMONIALS */
.testimonials {
    padding: 6rem 0;
    background: var(--color-dark-gray);
}

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

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

.testimonial-card {
    padding: 3rem 2rem;
    background: var(--color-black);
    border-left: 3px solid var(--color-red);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-red);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.author-car {
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

/* CONTACT PAGE */
.contact-section {
    padding: 6rem 0;
    background: var(--color-black);
}

.contact-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-photos .photo-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.contact-photos .photo-item:hover {
    border-color: #dc143c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.contact-photos .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.contact-photos .photo-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-photos {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--color-red);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--color-dark-gray);
    border: 1px solid rgba(220, 20, 60, 0.3);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    padding: 2rem;
    background: var(--color-dark-gray);
    border-left: 3px solid var(--color-red);
}

.contact-info-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.time {
    color: var(--color-red);
    font-weight: 600;
}

.highlight-text {
    color: var(--color-red);
    font-weight: 600;
    margin-top: 1rem;
}

.map-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.map-container {
    position: relative;
    border: 2px solid rgba(220, 20, 60, 0.3);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(20%) contrast(1.1);
}

.map-info-card {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(220, 20, 60, 0.95);
    padding: 1.5rem 2rem;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.map-info-card .address {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.map-info-card .service-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .map-info-card {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin-top: 1rem;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .promise-content {
        grid-template-columns: 1fr;
    }
    
    .promise-stats {
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* NEW GALLERY STYLES */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item-new {
    background: #1a1a1a;
    border: 1px solid rgba(220, 20, 60, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.gallery-item-new:hover {
    transform: translateY(-5px);
    border-color: #dc143c;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #0a0a0a;
}

.media-container img,
.media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-new:hover .media-container img,
.gallery-item-new:hover .media-container video {
    transform: scale(1.05);
}

.media-container video {
    cursor: pointer;
}

.gallery-caption {
    padding: 1.5rem;
    border-top: 2px solid #dc143c;
}

.gallery-caption h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #dc143c;
}

.gallery-caption p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* INSTAGRAM SECTION */
.instagram-section {
    padding: 6rem 0;
    background: #0a0a0a;
    text-align: center;
}

.instagram-header {
    margin-bottom: 3rem;
}

.instagram-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-top: 1rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.instagram-button svg {
    fill: white;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #0a0a0a;
    padding: 2rem;
    border-left: 3px solid #dc143c;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.2);
}

.review-stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.google-review-cta {
    text-align: center;
    margin-top: 3rem;
}

.google-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
}

.google-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-grid-new {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-button,
    .google-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .reviews-grid-home {
        grid-template-columns: 1fr;
    }
}

/* HOME PAGE REVIEWS */
.reviews-section-home {
    padding: 6rem 0;
    background: #1a1a1a;
}

/* SERVICE AREA SECTION */
.service-area-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.service-area-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-area-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-option {
    background: #1a1a1a;
    padding: 2rem;
    border-left: 3px solid #dc143c;
}

.service-option-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #dc143c;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-option-desc {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-option-note {
    color: #b0b0b0;
    font-style: italic;
    margin-top: 1rem;
}

.service-cta-box {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid #dc143c;
    padding: 2rem;
    text-align: center;
}

.service-cta-box .cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.service-area-map {
    position: relative;
    border: 2px solid rgba(220, 20, 60, 0.3);
    overflow: hidden;
}

.service-area-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    filter: grayscale(20%) contrast(1.1);
}

.map-pin {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(220, 20, 60, 0.95);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.pin-text {
    color: #ffffff;
}

@media (max-width: 968px) {
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-area-map iframe {
        height: 350px;
    }
}

.reviews-section-home .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.reviews-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hidden-review {
    display: none;
}

.hidden-review.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.show-more-container {
    text-align: center;
    margin: 2rem 0;
}

.show-more-btn {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid #dc143c;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #dc143c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.show-more-btn.hide {
    display: none;
}
