/* ============================================
   Auto Craft Collision - Main Stylesheet
   ============================================ */

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

:root {
    --primary: #1a2a4c;
    --secondary: #d4af37;
    --accent: #2c3e50;
    --light: #f8f9fa;
    --dark: #0f172a;
    --text: #333;
    --text-light: #6c757d;
    --success: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

/* ============================================
   Custom Cursor (Disabled for Performance)
   ============================================ */
.cursor,
.cursor-follower {
    display: none;
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 42, 76, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo.floating {
    animation: none;
}

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

.logo i {
    animation: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: rotate(90deg);
    color: var(--secondary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 42, 76, 0.85), rgba(15, 23, 42, 0.9)), url('../assets/img/gallery/Background Photo.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Fallback for hero background if image not found */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/gallery/Background Photo.jpeg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, white, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 5rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.6s ease 0.3s;
}

.section-title.visible::after {
    transform: scaleX(1);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.2s;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--light);
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 42, 76, 0.95), rgba(15, 23, 42, 0.98)), url('../assets/img/gallery/Background Photo.jpeg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/gallery/Background Photo.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    transform: translateY(0);
    animation: parallax 10s ease-in-out infinite alternate;
}

@keyframes parallax {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-30px);
}

.about-text h3.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.6s ease 0.3s;
}

.about-text h3.visible::after {
    transform: scaleX(1);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0;
    transform: translateX(-20px);
}

.about-text p.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease 0.2s;
}

.about-commitments {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-commitments li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.about-commitments li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.stat:nth-child(1).visible { transition-delay: 0.1s; }
.stat:nth-child(2).visible { transition-delay: 0.2s; }
.stat:nth-child(3).visible { transition-delay: 0.3s; }

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary);
    display: block;
    transition: all 0.4s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.stat:hover .stat-label {
    color: var(--text);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(30px);
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease 0.4s;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::after {
    opacity: 1;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    background: var(--light);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.step.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.step:nth-child(1).visible { transition-delay: 0.1s; }
.step:nth-child(2).visible { transition-delay: 0.2s; }
.step:nth-child(3).visible { transition-delay: 0.3s; }
.step:nth-child(4).visible { transition-delay: 0.4s; }
.step:nth-child(5).visible { transition-delay: 0.5s; }

.step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.step:hover .step-number::before {
    transform: scale(1);
}

.step-number span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.step:hover .step-number span {
    color: white;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.step:hover h4 {
    color: var(--secondary);
    transform: scale(1.05);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.step:hover p {
    color: var(--text);
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step:hover:not(:last-child)::after {
    transform: translateY(-50%) translateX(5px);
    opacity: 1;
}

/* ============================================
   Highlights Section (Landing Page)
   ============================================ */
.highlights {
    background: var(--light);
    padding: 5rem 0;
}

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

.highlight-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid var(--secondary);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary);
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Stats Showcase */
.stats-showcase {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 4rem 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Overview */
.process-overview {
    background: white;
    padding: 5rem 0;
}

.process-steps-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.step-compact {
    text-align: center;
    min-width: 120px;
}

.step-number-compact {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step-compact:hover .step-number-compact {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.step-compact h4 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.step-connector {
    color: var(--secondary);
    font-size: 1.5rem;
    padding: 0 0.5rem;
}

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

/* Gallery Preview */
.gallery-preview {
    background: var(--light);
    padding: 5rem 0;
}

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

.gallery-preview-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.gallery-preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 42, 76, 0.95), transparent);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    transform: translateY(0);
}

.gallery-preview-overlay h4 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .process-steps-compact {
        flex-direction: column;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: white;
}

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

/* Before/After Container */
.before-after-container {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.before-after-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.before-after-container:nth-child(1).visible { transition-delay: 0.1s; }
.before-after-container:nth-child(2).visible { transition-delay: 0.2s; }
.before-after-container:nth-child(3).visible { transition-delay: 0.3s; }
.before-after-container:nth-child(4).visible { transition-delay: 0.4s; }
.before-after-container:nth-child(5).visible { transition-delay: 0.5s; }
.before-after-container:nth-child(6).visible { transition-delay: 0.6s; }

/* Before/After Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: grab;
    user-select: none;
    background: var(--dark);
}

.before-after-slider:active {
    cursor: grabbing;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image Labels */
.image-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.before-label {
    left: 20px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.after-label {
    right: 20px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    z-index: 5;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--secondary);
    transform: translateX(-50%);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 6;
}

.slider-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.left-arrow {
    left: 0;
    transform: translate(-120%, -50%);
}

.left-arrow:hover {
    transform: translate(-120%, -50%) scale(1.1);
}

.right-arrow {
    left: 0;
    transform: translate(20%, -50%);
}

.right-arrow:hover {
    transform: translate(20%, -50%) scale(1.1);
}

/* Gallery Info */
.gallery-info {
    margin-top: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

.gallery-info h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .before-after-slider {
        height: 300px;
    }
    
    .image-label {
        font-size: 0.75rem;
        padding: 6px 15px;
        top: 15px;
    }
    
    .before-label {
        left: 15px;
    }
    
    .after-label {
        right: 15px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-info h4 {
        font-size: 1.2rem;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--light);
}

.testimonials-slider {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(50px);
}

.testimonial.visible {
    opacity: 1;
    transform: translateX(0);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    padding: 0 1rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary);
    position: absolute;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.testimonial:hover .testimonial-text::before,
.testimonial:hover .testimonial-text::after {
    opacity: 0.6;
    transform: scale(1.2);
}

.testimonial-text::before {
    top: -1.5rem;
    left: -1rem;
}

.testimonial-text::after {
    bottom: -2.5rem;
    right: -1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.testimonial:hover .testimonial-author {
    color: var(--secondary);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.testimonial:hover .testimonial-rating {
    transform: scale(1.1);
}

.testimonial-rating i {
    transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-rating i {
    animation: starPulse 0.5s ease;
}

.testimonial:hover .testimonial-rating i:nth-child(1) { animation-delay: 0.1s; }
.testimonial:hover .testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial:hover .testimonial-rating i:nth-child(3) { animation-delay: 0.3s; }
.testimonial:hover .testimonial-rating i:nth-child(4) { animation-delay: 0.4s; }
.testimonial:hover .testimonial-rating i:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--dark);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.contact-info h3.visible::after {
    transform: scaleX(1);
}

.contact-info p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
    opacity: 0;
    transform: translateX(-20px);
}

.contact-info p.visible {
    opacity: 0.9;
    transform: translateX(0);
    transition: all 0.6s ease 0.2s;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
}

.contact-item:nth-child(2) { transition-delay: 0.1s; }
.contact-item:nth-child(3) { transition-delay: 0.2s; }
.contact-item:nth-child(4) { transition-delay: 0.3s; }

.contact-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 0.3rem;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.3);
    color: white;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateX(30px);
}

.contact-form.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease 0.2s;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: var(--secondary);
    transform: translateY(-5px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255,255,255,0.15);
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255,255,255,0.7);
    transform: translateX(5px);
}

.contact-form .btn-primary {
    width: 100%;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary:hover {
    background: #c19b2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--primary);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    animation: footerGlow 3s linear infinite;
}

@keyframes footerGlow {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.social-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
}

.social-links a:hover i {
    color: var(--primary);
}

.footer-content p {
    opacity: 0.8;
    margin-top: 1rem;
    transition: opacity 0.3s ease;
}

.footer-content p:hover {
    opacity: 1;
}

/* ============================================
   Animation Utilities
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }
.stagger-delay-6 { transition-delay: 0.6s; }

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.counter {
    display: inline-block;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    html, body {
        overflow-y: auto;
    }

    .cursor, .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 6rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .btn, .mobile-menu-toggle, .gallery-item, .service-card, .step, .nav-menu a {
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .process-steps {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .step {
        padding: 1.5rem;
    }

    .stat {
        padding: 1rem;
    }

    .about-stats,
    .highlights-grid,
    .services-grid,
    .process-steps,
    .gallery-preview-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .testimonials-slider {
        margin: 2rem auto 0;
        padding: 0 0.5rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .fade-in-up,
    .service-card,
    .step,
    .stat,
    .section-title,
    .section-subtitle,
    .testimonial {
        opacity: 1;
        transform: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}


