/* ===== CSS Variables ===== */
:root {
    --fire: #F97316;
    --fire-dark: #EA580C;
    --fire-light: #FBBF24;
    --fire-glow: rgba(249, 115, 22, 0.5);
    
    --dark: #0A0A0B;
    --dark-light: #141416;
    --dark-lighter: #1C1C1F;
    --gray: #71717A;
    --gray-light: #A1A1AA;
    
    --white: #FAFAFA;
    --white-dim: #E4E4E7;
    
    --transition-fast: 0.2s ease;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== Custom Cursor ===== */
.cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--fire);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

body:hover .cursor-follower {
    opacity: 1;
}

a:hover ~ .cursor-follower,
button:hover ~ .cursor-follower {
    width: 40px;
    height: 40px;
    border-color: var(--fire-light);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.welder-loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.welder-loader .spark {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--fire);
    border-radius: 50%;
    animation: loader-spark 1s ease-in-out infinite;
}

.welder-loader .spark:nth-child(1) { left: 50%; top: 50%; animation-delay: 0s; }
.welder-loader .spark:nth-child(2) { left: 20%; top: 30%; animation-delay: 0.2s; }
.welder-loader .spark:nth-child(3) { left: 80%; top: 70%; animation-delay: 0.4s; }

@keyframes loader-spark {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 20px var(--fire-glow); }
    50% { transform: scale(2); opacity: 0.5; box-shadow: 0 0 40px var(--fire-glow); }
}

.preloader span {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== Side Navigation ===== */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 80px;
    background: var(--dark-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    z-index: 1000;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
    width: 50px;
    height: 50px;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.2rem;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.nav-item::before {
    content: attr(data-text);
    position: absolute;
    left: 70px;
    background: var(--fire);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
}

.nav-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.nav-item:hover,
.nav-item.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--fire);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 25px;
    background: var(--fire);
    border-radius: 0 3px 3px 0;
}

.nav-whatsapp {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    font-size: 1.3rem;
    border-radius: 12px;
    transition: var(--transition);
}

.nav-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* ===== Top Bar ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 80px;
    right: 0;
    height: 50px;
    background: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.top-phone, .top-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.top-phone i, .top-location i {
    color: var(--fire);
}

.top-phone:hover {
    color: var(--fire);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    margin-left: 80px;
    padding-top: 50px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-content {
    max-width: 600px;
}

/* Glitch Effect */
.glitch-wrapper {
    position: relative;
}

.glitch {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--white);
    position: relative;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--fire);
    animation: glitch-effect 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-2px, -2px);
}

.glitch::after {
    color: var(--fire-light);
    animation: glitch-effect 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
}

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(-0.5deg); }
    40% { transform: skew(0.5deg); }
    60% { transform: skew(0deg); }
    80% { transform: skew(-0.3deg); }
    100% { transform: skew(0deg); }
}

.hero-subtitle {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--fire);
    margin-top: -15px;
    letter-spacing: 10px;
}

.hero-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--fire), transparent);
    margin: 30px 0;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Glowing Button */
.btn-glowing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--fire);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-glowing::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--fire), var(--fire-light), var(--fire-dark), var(--fire));
    border-radius: 50px;
    z-index: -1;
    animation: glow-rotate 3s linear infinite;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-glowing:hover::before {
    opacity: 1;
}

.btn-glowing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--fire-glow);
}

@keyframes glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gray);
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--fire);
    color: var(--fire);
}

.btn-outline i {
    transition: transform 0.3s;
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Hero Right */
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 80%;
    max-width: 500px;
}

.hero-logo {
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating Sparks */
.floating-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-sparks span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--fire-light);
    border-radius: 50%;
    animation: spark-float 3s ease-in-out infinite;
}

.floating-sparks span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-sparks span:nth-child(2) { left: 20%; top: 60%; animation-delay: 0.3s; }
.floating-sparks span:nth-child(3) { left: 80%; top: 30%; animation-delay: 0.6s; }
.floating-sparks span:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.9s; }
.floating-sparks span:nth-child(5) { left: 50%; top: 10%; animation-delay: 1.2s; }
.floating-sparks span:nth-child(6) { left: 30%; top: 80%; animation-delay: 0.2s; }
.floating-sparks span:nth-child(7) { left: 90%; top: 50%; animation-delay: 0.5s; }
.floating-sparks span:nth-child(8) { left: 60%; top: 90%; animation-delay: 0.8s; }
.floating-sparks span:nth-child(9) { left: 40%; top: 40%; animation-delay: 1.1s; }
.floating-sparks span:nth-child(10) { left: 85%; top: 15%; animation-delay: 1.4s; }

@keyframes spark-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
        box-shadow: 0 0 10px var(--fire-glow);
    }
    50% { 
        transform: translateY(-30px) scale(1.5);
        opacity: 0.5;
        box-shadow: 0 0 20px var(--fire-glow);
    }
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-down span {
    writing-mode: vertical-lr;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--fire), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Marquee Banner ===== */
.marquee-banner {
    background: var(--fire);
    padding: 15px 0;
    overflow: hidden;
    margin-left: 80px;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    color: var(--dark);
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Services Section ===== */
.services-section {
    margin-left: 80px;
    padding: 120px 60px;
    background: var(--dark);
}

.section-intro {
    margin-bottom: 60px;
}

.section-number {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: var(--fire);
    letter-spacing: 3px;
}

.section-title-big {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin: 10px 0 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Horizontal Scroll Services */
.services-horizontal {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.services-horizontal::-webkit-scrollbar {
    height: 8px;
}

.services-horizontal::-webkit-scrollbar-track {
    background: var(--dark-light);
    border-radius: 10px;
}

.services-horizontal::-webkit-scrollbar-thumb {
    background: var(--fire);
    border-radius: 10px;
}

.service-item {
    min-width: 320px;
    background: var(--dark-light);
    border-radius: 20px;
    padding: 40px 30px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--fire) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--fire);
}

.service-item:hover::before {
    opacity: 0.1;
}

.service-number {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: var(--dark-lighter);
    position: absolute;
    top: 20px;
    right: 20px;
    transition: var(--transition);
}

.service-item:hover .service-number {
    color: var(--fire);
    opacity: 0.3;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fire) 0%, var(--fire-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-item h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-item > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.service-tags span {
    padding: 6px 14px;
    background: var(--dark);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gray-light);
    transition: var(--transition);
}

.service-item:hover .service-tags span {
    background: rgba(249, 115, 22, 0.2);
    color: var(--fire);
}

/* ===== About Section ===== */
.about-section {
    margin-left: 80px;
    padding: 120px 0;
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Russo One', sans-serif;
    font-size: 25vw;
    color: var(--dark);
    pointer-events: none;
    white-space: nowrap;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    margin: 30px 0 40px;
}

.about-text p {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--dark);
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(10px);
    background: rgba(249, 115, 22, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--fire);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dark);
}

.about-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--dark);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--dark-lighter);
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--fire);
}

.stat-box.highlight-box {
    background: linear-gradient(135deg, var(--fire) 0%, var(--fire-dark) 100%);
    border: none;
}

.stat-box.highlight-box .stat-value,
.stat-box.highlight-box .stat-label,
.stat-box.highlight-box .stat-icon {
    color: var(--dark);
}

.stat-value {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: var(--fire);
    display: block;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 5px;
}

.stat-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--dark-lighter);
}

.stat-box:hover .stat-icon {
    color: var(--fire);
}

/* ===== Gallery Section ===== */
.gallery-section {
    margin-left: 80px;
    padding: 120px 60px;
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-lighter) 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    height: 280px;
    min-height: 280px;
    border: 2px solid transparent;
}

.gallery-item.large {
    grid-column: span 2;
    height: 320px;
    min-height: 320px;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Error handling for missing images */
.gallery-item img[src=""],
.gallery-item img:not([src]),
.gallery-item img[src*="undefined"],
.gallery-item img[src*="null"] {
    display: none;
}

/* When image fails to load, show placeholder style */
.gallery-item:has(img[style*="display: none"]) {
    border: 2px dashed var(--dark-lighter);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.95), rgba(10, 10, 11, 0.85));
    padding: 25px;
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(10, 10, 11, 0.98), rgba(10, 10, 11, 0.75));
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-lighter) 100%);
    border: 2px dashed var(--dark-lighter);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--fire);
    background: rgba(249, 115, 22, 0.05);
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--dark-lighter);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder i {
    color: var(--fire);
    transform: scale(1.1);
}

.gallery-placeholder span {
    color: var(--gray);
    font-weight: 600;
}

.gallery-note {
    text-align: center;
    margin-top: 40px;
    color: var(--gray);
    font-size: 0.9rem;
}

.gallery-note i {
    color: var(--fire);
    margin-right: 8px;
}

/* ===== CTA Section ===== */
.cta-section {
    margin-left: 80px;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--fire) 0%, var(--fire-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--dark);
}

.cta-text p {
    color: rgba(0,0,0,0.7);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-cta.phone {
    background: var(--dark);
    color: var(--white);
}

.btn-cta.whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-sparks span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--fire-light);
    border-radius: 50%;
    opacity: 0.5;
}

.cta-sparks span:nth-child(1) { top: 20%; left: 10%; animation: float 3s ease-in-out infinite; }
.cta-sparks span:nth-child(2) { top: 60%; left: 30%; animation: float 4s ease-in-out infinite 0.5s; }
.cta-sparks span:nth-child(3) { top: 30%; right: 20%; animation: float 3.5s ease-in-out infinite 1s; }
.cta-sparks span:nth-child(4) { bottom: 20%; right: 10%; animation: float 4.5s ease-in-out infinite 1.5s; }
.cta-sparks span:nth-child(5) { top: 50%; left: 50%; animation: float 3s ease-in-out infinite 2s; }

/* ===== Contact Section ===== */
.contact-section {
    margin-left: 80px;
    padding: 120px 0;
    background: var(--dark-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.contact-card-new {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--dark);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card-new:hover {
    border-color: var(--fire);
    transform: translateX(10px);
}

.contact-card-new.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
}

.card-icon {
    width: 55px;
    height: 55px;
    background: var(--fire);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
}

.contact-card-new.whatsapp .card-icon {
    background: #25D366;
    color: var(--white);
}

.card-content {
    flex: 1;
}

.card-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 3px;
}

.card-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.card-arrow {
    color: var(--gray);
    transition: var(--transition);
}

.contact-card-new:hover .card-arrow {
    color: var(--fire);
    transform: translateX(5px);
}

.social-bar {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook { background: #1877F2; }
.social-btn.whatsapp { background: #25D366; }

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Modern Form */
.contact-form-side {
    background: var(--dark);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--dark-lighter);
}

.modern-form h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--white);
}

.form-row {
    margin-bottom: 30px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--dark-lighter);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: var(--transition);
    outline: none;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 1rem;
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition);
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--fire);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fire);
    transition: var(--transition);
}

.input-group input:focus ~ .input-line,
.input-group select:focus ~ .input-line,
.input-group textarea:focus ~ .input-line {
    width: 100%;
}

.input-group select {
    cursor: pointer;
}

.input-group select option {
    background: var(--dark);
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--fire) 0%, var(--fire-dark) 100%);
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--fire-glow);
}

/* ===== Footer ===== */
.modern-footer {
    margin-left: 80px;
    padding: 40px 60px;
    background: var(--dark);
    border-top: 1px solid var(--dark-lighter);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: var(--gray);
    margin-bottom: 5px;
}

.footer-text span {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fire);
    font-weight: 600;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-floating:hover {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #25D366;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-section {
        margin-left: 80px;
        padding: 80px 40px;
    }
}

@media (max-width: 992px) {
    .gallery-section {
        margin-left: 0;
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 220px;
        min-height: 220px;
    }
    
    .gallery-item.large {
        height: 240px;
        min-height: 240px;
    }
    .hero {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        width: 100%;
    }
    
    .hero-right {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-follower {
        display: none;
    }
    
    .side-nav {
        width: 100%;
        height: 70px;
        flex-direction: row;
        bottom: 0;
        top: auto;
        padding: 0 10px;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        justify-content: space-around;
    }
    
    .nav-logo {
        display: none;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 5px;
        flex: 1;
        justify-content: center;
    }
    
    .nav-item {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .nav-item::before {
        display: none;
    }
    
    .nav-item.active::after {
        display: none;
    }
    
    .nav-item.active {
        background: var(--fire);
        color: var(--dark);
    }
    
    .nav-whatsapp {
        width: 45px;
        height: 45px;
    }
    
    .top-bar {
        left: 0;
        justify-content: center;
        height: 45px;
        padding: 0 15px;
    }
    
    .top-bar-content {
        gap: 15px;
        font-size: 0.8rem;
    }
    
    .top-location {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        margin-left: 0;
        padding-bottom: 100px;
        min-height: auto;
    }
    
    .hero-left {
        padding: 80px 20px 40px;
        order: 2;
    }
    
    .hero-right {
        padding: 30px 20px;
        order: 1;
        min-height: 300px;
    }
    
    .hero-image-wrapper {
        max-width: 300px;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .glitch::before,
    .glitch::after {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .hero-line {
        width: 60px;
        margin: 20px 0;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-glowing, .btn-outline {
        padding: 16px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .scroll-down {
        display: none;
    }
    
    .marquee-banner {
        margin-left: 0;
        padding: 12px 0;
    }
    
    .marquee-content span {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .services-section,
    .about-section,
    .gallery-section,
    .cta-section,
    .contact-section,
    .modern-footer {
        margin-left: 0;
        padding: 60px 15px;
    }
    
    .section-intro {
        margin-bottom: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title-big {
        font-size: 1.8rem;
    }
    
    .section-number {
        font-size: 0.85rem;
    }
    
    .section-intro p {
        font-size: 1rem;
    }
    
    /* Services Mobile */
    .services-horizontal {
        gap: 15px;
        padding: 10px 0 30px;
    }
    
    .service-item {
        min-width: 260px;
        padding: 30px 20px;
    }
    
    .service-number {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
    
    .service-item > p {
        font-size: 0.9rem;
    }
    
    .service-tags span {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    /* About Mobile */
    .about-bg-text {
        font-size: 30vw;
    }
    
    .about-left .section-title-big,
    .about-left .section-number {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-feature {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .about-feature span {
        font-size: 0.9rem;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-box {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-icon {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }
    
    /* Gallery Mobile */
    .gallery-section {
        margin-left: 0 !important;
        padding: 60px 15px !important;
    }
    
    .gallery-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 15px !important;
    }
    
    .gallery-item {
        height: 250px !important;
        min-height: 250px !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    
    .gallery-item.large {
        grid-column: span 1 !important;
        height: 280px !important;
        min-height: 280px !important;
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        display: block !important;
    }
    
    .gallery-overlay {
        padding: 15px !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2 !important;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .gallery-placeholder i {
        font-size: 2rem;
    }
    
    .gallery-placeholder span {
        font-size: 0.9rem;
    }
    
    .gallery-note {
        font-size: 0.85rem;
        margin-top: 25px;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-cta {
        justify-content: center;
        padding: 16px 25px;
    }
    
    /* Contact Mobile */
    .contact-grid {
        gap: 40px;
    }
    
    .contact-info-side .section-title-big,
    .contact-info-side .section-number {
        text-align: center;
    }
    
    .contact-cards {
        gap: 12px;
        margin: 30px 0;
    }
    
    .contact-card-new {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .card-label {
        font-size: 0.8rem;
    }
    
    .card-value {
        font-size: 1rem;
    }
    
    .social-bar {
        justify-content: center;
        gap: 12px;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form-side {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .modern-form h3 {
        font-size: 1.4rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .form-row {
        margin-bottom: 25px;
    }
    
    .input-group input,
    .input-group select,
    .input-group textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 12px 0;
    }
    
    .input-group label {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .modern-footer {
        padding: 30px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }
    
    .footer-text span {
        font-size: 0.8rem;
    }
    
    /* Floating Buttons Mobile */
    .whatsapp-floating {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .pulse-ring {
        border-width: 2px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .top-bar {
        height: 40px;
    }
    
    .hero-left {
        padding: 70px 15px 30px;
    }
    
    .hero-right {
        padding: 20px 15px;
        min-height: 250px;
    }
    
    .hero-image-wrapper {
        max-width: 250px;
    }
    
    .glitch {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }
    
    .btn-glowing, .btn-outline {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .section-title-big {
        font-size: 1.5rem;
    }
    
    .service-item {
        min-width: 240px;
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        gap: 10px;
    }
    
    .stat-box {
        padding: 20px 10px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-card-new {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .card-arrow {
        display: none;
    }
    
    .contact-form-side {
        padding: 20px 15px;
    }
    
    .modern-form h3 {
        font-size: 1.2rem;
    }
    
    .side-nav {
        height: 65px;
        padding: 0 5px;
    }
    
    .nav-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .nav-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .whatsapp-floating {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .glitch {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-item {
        min-width: 220px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
}
