/* SS Auto - Ultra Premium Paint & Body Repair */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --orange: #ff6b35;
    --red: #ff4500;
    --gold: #f7931e;
    --dark: #0a0a0a;
    --darker: #030303;
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.06);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background: var(--darker);
    color: #fff;
    overflow-x: hidden;
}

/* === CUSTOM CURSOR === */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    z-index: 9998;
    pointer-events: none;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,107,53,0.5);
    z-index: 9997;
    pointer-events: none;
    transition: all 0.15s ease-out;
    mix-blend-mode: difference;
}

    .cursor-ring.hover {
        transform: scale(1.8);
        border-color: var(--orange);
        background: rgba(255,107,53,0.08);
    }

@media (max-width: 1024px) {
    .cursor-dot, .cursor-ring {
        display: none;
    }
}

/* === SCROLL PROGRESS === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 9999;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--red));
    transform-origin: left;
    transition: none;
}

/* === PRELOADER === */
#loading {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), visibility 0.8s;
}

    #loading.hide {
        opacity: 0;
        visibility: hidden;
    }

    #loading img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        animation: loadPulse 1.5s ease-in-out infinite;
        filter: drop-shadow(0 0 30px rgba(255,107,53,0.4));
    }

.load-bar {
    width: 220px;
    height: 3px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

    .load-bar span {
        display: block;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--orange), var(--gold), var(--red));
        animation: loadFill 2s ease-in-out forwards;
    }

.load-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: loadPulse 1.5s ease-in-out infinite;
}

@keyframes loadPulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: .6;
    }
}

@keyframes loadFill {
    to {
        width: 100%;
    }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 0;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

    .navbar.scrolled {
        background: rgba(3,3,3,0.92);
        backdrop-filter: blur(25px) saturate(1.5);
        box-shadow: 0 1px 40px rgba(255,107,53,0.08);
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255,107,53,0.05);
    }

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

    .nav-logo img {
        height: 42px;
        width: 42px;
        border-radius: 50%;
        object-fit: cover;
        transition: all 0.4s;
        filter: drop-shadow(0 0 10px rgba(255,107,53,0.2));
    }

    .nav-logo:hover img {
        transform: scale(1.08) rotate(-2deg);
        filter: drop-shadow(0 0 20px rgba(255,107,53,0.4));
    }

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

    .nav-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-weight: 400;
        font-size: 0.9rem;
        position: relative;
        transition: all 0.3s;
        letter-spacing: 0.5px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--orange), var(--red));
            transition: all 0.3s;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #fff;
        }

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

.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: #fff !important;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(255,107,53,0.25);
    transition: all 0.4s;
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 8px 35px rgba(255,107,53,0.45);
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 10;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        margin: 6px 0;
        transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        border-radius: 2px;
    }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    z-index: 200;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(40px);
    padding: 6rem 2.5rem 2rem;
    transition: right 0.5s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(255,107,53,0.08);
}

    .mobile-nav.open {
        right: 0;
    }

    .mobile-nav a {
        display: block;
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        padding: 1.1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        transition: all 0.3s;
        position: relative;
        padding-left: 0;
    }

        .mobile-nav a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 0;
            height: 1px;
            background: var(--orange);
            transition: width 0.3s;
            transform: translateY(-50%);
        }

        .mobile-nav a:hover {
            color: var(--orange);
            padding-left: 1.5rem;
        }

            .mobile-nav a:hover::before {
                width: 1rem;
            }

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .mobile-close:hover {
        color: var(--orange);
        background: rgba(255,107,53,0.1);
        transform: rotate(90deg);
    }

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(4px);
}

    .mobile-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 7rem 2rem 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(255,107,53,0.07) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(255,69,0,0.05) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(247,147,30,0.03) 0%, transparent 40%), linear-gradient(180deg, #030303 0%, #0a0a0a 50%, #080808 100%);
}

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 70%, rgba(255,107,53,0.04) 0%, transparent 50%);
        animation: heroPulse 8s ease-in-out infinite;
    }

@keyframes heroPulse {
    0%,100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(255,107,53,0.4) 100px, rgba(255,107,53,0.4) 101px), repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255,107,53,0.2) 100px, rgba(255,107,53,0.2) 101px);
    animation: linesMove 20s linear infinite;
}

@keyframes linesMove {
    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(100px,100px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,107,53,0.08);
    border: 1px solid rgba(255,107,53,0.15);
    border-radius: 60px;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: 2.5rem;
    font-weight: 500;
    animation: fadeUp 1s ease 0.2s both;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(255,107,53,0.1);
}

    .hero-badge .dot {
        width: 10px;
        height: 10px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2s infinite;
        box-shadow: 0 0 15px var(--orange), 0 0 30px rgba(255,107,53,0.3);
    }

.hero-logo-img {
    display: block;
    width: 140px;
    height: 140px;
    max-width: 40vw;
    max-height: 40vw;
    margin: 0 auto 2rem;
    animation: fadeUp 1s ease 0.4s both;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,107,53,0.2);
    filter: drop-shadow(0 0 30px rgba(255,107,53,0.25));
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease 0.6s both;
    letter-spacing: -0.5px;
}

    .hero h1 .highlight, .section-header h2 .highlight {
        background: linear-gradient(135deg, var(--orange), var(--gold), var(--red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    animation: fadeUp 1s ease 0.8s both;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 1s both;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 25px rgba(255,107,53,0.3);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        opacity: 0;
        transition: opacity 0.4s;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 40px rgba(255,107,53,0.5);
    }

        .btn-primary:hover::before {
            opacity: 1;
        }

    .btn-primary svg, .btn-primary span {
        position: relative;
        z-index: 1;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

    .btn-outline:hover {
        border-color: var(--orange);
        background: rgba(255,107,53,0.06);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255,107,53,0.15);
    }

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    animation: fadeUp 1s ease 1.2s both;
}

.hero-stat {
    position: relative;
}

    .hero-stat h3 {
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--orange), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-stat p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.35);
        margin-top: 0.25rem;
        letter-spacing: 0.5px;
    }

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

    .particle.gold {
        background: var(--gold);
    }

    .particle.red {
        background: var(--red);
    }

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    15% {
        opacity: 0.2;
    }

    85% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* === SECTIONS COMMON === */
section {
    padding: 7rem 2rem;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

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

    .section-header .tag {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.8rem;
        color: var(--orange);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 500;
        margin-bottom: 1.2rem;
    }

        .section-header .tag .line {
            width: 35px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--orange));
        }

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .section-header p {
        color: rgba(255,255,255,0.4);
        max-width: 550px;
        margin: 0 auto;
        font-size: 1rem;
        line-height: 1.8;
    }

/* === SERVICES === */
.services {
    background: linear-gradient(180deg, var(--dark) 0%, #080808 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    cursor: default;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--orange), var(--gold), var(--red));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }

    .service-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 1.5rem;
        background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,107,53,0.06) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .service-card:hover {
        background: rgba(255,107,53,0.02);
        border-color: rgba(255,107,53,0.12);
        transform: translateY(-10px);
    }

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

        .service-card:hover::after {
            opacity: 1;
        }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,69,0,0.03));
    border: 1px solid rgba(255,107,53,0.08);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255,107,53,0.15);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.92rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* === MARQUEE === */
.marquee-section {
    padding: 3rem 0;
    overflow: hidden;
    background: rgba(255,107,53,0.03);
    border-top: 1px solid rgba(255,107,53,0.05);
    border-bottom: 1px solid rgba(255,107,53,0.05);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 120s linear infinite;
    width: max-content;
}

    .marquee-track span {
        font-size: 1.1rem;
        font-weight: 600;
        color: rgba(255,255,255,0.12);
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 3px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .marquee-track span::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
            opacity: 0.4;
        }

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* === WHY US === */
.why-us {
    background: linear-gradient(180deg, #080808 0%, #060606 100%);
}

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

.why-image {
    position: relative;
}

    .why-image .img-box {
        background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(255,69,0,0.03) 100%);
        border: 1px solid rgba(255,107,53,0.08);
        border-radius: 2rem;
        padding: 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

        .why-image .img-box::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 2rem;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255,107,53,0.2), transparent, rgba(255,69,0,0.2));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .why-image .img-box img {
            display: block;
            width: 100%;
            max-width: 280px;
            height: auto;
            border-radius: 1.5rem;
            filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
            transition: transform 0.6s;
            margin: 0 auto;
        }

    .why-image:hover .img-box img {
        transform: scale(1.05) rotate(1deg);
    }

    .why-image .floating-badge {
        position: absolute;
        background: linear-gradient(135deg, var(--orange), var(--red));
        border-radius: 1.25rem;
        padding: 1rem 1.5rem;
        color: #fff;
        font-weight: 600;
        box-shadow: 0 15px 40px rgba(255,107,53,0.3);
        animation: floatSoft 8s ease-in-out infinite;
        backdrop-filter: blur(10px);
    }

        .why-image .floating-badge.top {
            top: .5rem;
            right: -1.2rem;
            animation-delay: 3s;
        }

        .why-image .floating-badge.bottom {
            bottom: .5rem;
            left: -1.2rem;
            animation-delay: 4s;
        }

.why-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    cursor: default;
}

    .why-item:hover {
        background: rgba(255,107,53,0.03);
        border-color: rgba(255,107,53,0.1);
        transform: translateX(12px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .why-item .icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 1rem;
        background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,69,0,0.03));
        border: 1px solid rgba(255,107,53,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        transition: all 0.4s;
    }

    .why-item:hover .icon {
        transform: rotate(-10deg) scale(1.1);
        background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,69,0,0.08));
    }

    .why-item h4 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.35rem;
    }

    .why-item p {
        color: rgba(255,255,255,0.4);
        font-size: 0.9rem;
        line-height: 1.6;
    }

/* === PROCESS === */
.process {
    background: linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255,107,53,0.15), rgba(255,107,53,0.15), transparent);
        z-index: 0;
    }

.process-step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
    z-index: 1;
}

.step-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(255,107,53,0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    border: 3px solid var(--darker);
}

.process-step:hover .step-num {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255,107,53,0.5);
}

.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* === GALLERY === */
.gallery {
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

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

.gallery-item {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #111;
    border: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

    .gallery-item img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }

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

    .gallery-item:hover {
        border-color: rgba(255,107,53,0.15);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .gallery-item .overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
        opacity: 0;
        transition: all 0.4s;
        transform: translateY(10px);
    }

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

    .gallery-item .overlay h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .gallery-item .overlay p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.5);
    }

    .gallery-item .zoom-icon {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        opacity: 0;
        transition: all 0.3s;
        backdrop-filter: blur(10px);
    }

    .gallery-item:hover .zoom-icon {
        opacity: 1;
    }

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(20px);
}

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

    .lightbox img {
        max-width: 90vw;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 1rem;
        box-shadow: 0 25px 80px rgba(0,0,0,0.6);
        transition: transform 0.4s;
    }

    .lightbox.active img {
        transform: scale(1);
    }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .lightbox-close:hover {
        background: rgba(255,107,53,0.2);
        border-color: var(--orange);
        transform: rotate(90deg);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .lightbox-nav:hover {
        background: rgba(255,107,53,0.2);
        border-color: var(--orange);
    }

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

    .lightbox-caption h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.25rem;
    }

/* === CTA BANNER === */
.cta-banner {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(255,69,0,0.04) 100%);
    border-top: 1px solid rgba(255,107,53,0.08);
    border-bottom: 1px solid rgba(255,107,53,0.08);
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 60%);
        animation: float 8s ease-in-out infinite;
    }

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .cta-inner h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .cta-inner p {
        color: rgba(255,255,255,0.5);
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
        line-height: 1.8;
    }

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === TESTIMONIALS === */
.testimonials {
    background: linear-gradient(180deg, #080808 0%, #060606 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 5rem;
        font-weight: 900;
        color: rgba(255,107,53,0.06);
        line-height: 1;
    }

    .testimonial-card:hover {
        border-color: rgba(255,107,53,0.12);
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.2);
}

.author-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* === CONTACT === */
.contact {
    background: linear-gradient(180deg, #060606 0%, #030303 100%);
}

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

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

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

    .contact-item .ci-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 1rem;
        background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,69,0,0.03));
        border: 1px solid rgba(255,107,53,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s;
    }

    .contact-item:hover .ci-icon {
        transform: rotate(-8deg) scale(1.1);
        background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,69,0,0.06));
    }

    .contact-item h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.35rem;
    }

    .contact-item p {
        color: rgba(255,255,255,0.45);
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-item a {
        color: var(--orange);
        text-decoration: none;
        transition: all 0.3s;
    }

        .contact-item a:hover {
            color: var(--gold);
            text-shadow: 0 0 15px rgba(255,107,53,0.3);
        }

/* Contact Form */
.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

    .contact-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--orange), var(--gold), var(--red));
    }

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        font-size: 0.82rem;
        color: rgba(255,255,255,0.5);
        margin-bottom: 0.5rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        padding: 0.9rem 1.1rem;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 0.85rem;
        color: #fff;
        font-family: 'Kanit', sans-serif;
        font-size: 0.95rem;
        transition: all 0.3s;
        outline: none;
        resize: none;
    }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 4px rgba(255,107,53,0.08);
            background: rgba(255,107,53,0.02);
        }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: rgba(255,255,255,0.2);
        }

    .form-group select {
        appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ff6b35' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

        .form-group select option {
            background: #111;
            color: #fff;
        }

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

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border: none;
    border-radius: 0.85rem;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(255,107,53,0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

    .form-submit::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--gold), var(--orange));
        opacity: 0;
        transition: opacity 0.4s;
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 40px rgba(255,107,53,0.4);
    }

        .form-submit:hover::before {
            opacity: 1;
        }

    .form-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

/* === MAP === */
.map-section {
    padding: 0;
    position: relative;
}

    .map-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        z-index: 1;
        background: linear-gradient(180deg, #030303, transparent);
    }

    .map-section iframe {
        width: 100%;
        height: 450px;
        border: none;
        filter: grayscale(0.85) brightness(0.5) contrast(1.1);
        transition: filter 0.6s;
    }

    .map-section:hover iframe {
        filter: grayscale(0.3) brightness(0.7) contrast(1.05);
    }

/* === FOOTER === */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 5rem 2rem 2rem;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-brand img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 15px rgba(255,107,53,0.2));
}

.footer-brand p {
    color: rgba(255,255,255,0.35);
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul {
    list-style: none;
}

    .footer ul li {
        margin-bottom: 0.85rem;
    }

    .footer ul a {
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        font-size: 0.88rem;
        transition: all 0.3s;
        position: relative;
        padding-left: 0;
    }

        .footer ul a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 0;
            height: 1px;
            background: var(--orange);
            transition: width 0.3s;
            transform: translateY(-50%);
        }

        .footer ul a:hover {
            color: var(--orange);
            padding-left: 1rem;
        }

            .footer ul a:hover::before {
                width: 0.6rem;
            }

.footer-bottom {
    max-width: 1280px;
    margin: 3.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.4s;
    }

        .social-links a:hover {
            background: rgba(255,107,53,0.1);
            border-color: rgba(255,107,53,0.2);
            color: var(--orange);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255,107,53,0.15);
        }

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: #fff;
    box-shadow: 0 4px 25px rgba(255,107,53,0.3);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .scroll-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 35px rgba(255,107,53,0.5);
    }

/* === NOTIFICATION === */
.notification {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10001;
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    color: #fff;
    font-size: 0.9rem;
    max-width: 420px;
    transform: translateX(140%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
}

    .notification.show {
        transform: translateX(0);
    }

    .notification.success {
        background: linear-gradient(135deg, #10b981, #059669);
        border: 1px solid rgba(16,185,129,0.3);
    }

    .notification.error {
        background: linear-gradient(135deg, #ef4444, #dc2626);
        border: 1px solid rgba(239,68,68,0.3);
    }

/* === ANIMATIONS === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatSoft {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%,100% {
        box-shadow: 0 0 15px rgba(255,107,53,0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(255,107,53,0.4);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

    .reveal.delay-1 {
        transition-delay: 0.1s;
    }

    .reveal.delay-2 {
        transition-delay: 0.2s;
    }

    .reveal.delay-3 {
        transition-delay: 0.3s;
    }

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-children .reveal:nth-child(6) {
    transition-delay: 0.5s;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .why-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

        .process-steps::before {
            display: none;
        }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

        .hero-btns .btn-primary, .hero-btns .btn-outline {
            width: 100%;
            justify-content: center;
        }
}

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

::-webkit-scrollbar-track {
    background: #030303;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 3px;
}

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

::selection {
    background: rgba(255,107,53,0.3);
}

/* Focus */
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 3ms !important;
        transition-duration: 3ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .cursor-dot, .cursor-ring {
        display: none;
    }
}
