/* =========================================
   DESIGN SYSTEM & VARIABLES
   ========================================= */
   :root {
    /* Colors - Background */
    --zinc-950: #09090b;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-50: #fafafa;

    /* Colors - Text */
    --white: #ffffff;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-200: #e4e4e7;

    /* Colors - Accent */
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-glow: rgba(239, 68, 68, 0.5);

    /* Colors - Success */
    --green-500: #22c55e;
    --green-600: #16a34a;

    /* Spacing */
    --container-width: 1280px;
    --header-height: 70px; /* Mobile header height */
    --section-padding: 64px; /* Mobile padding */
    --gap-md: 24px;
    --gap-lg: 32px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* =========================================
   RESET & BASE STYLES (MOBILE DEFAULT)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--zinc-950);
    color: var(--zinc-200);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
}

/* Mobile Typography */
h1 { font-size: 2.25rem; } /* 36px */
h2 { font-size: 1.75rem; } /* 28px */
h3 { font-size: 1.25rem; } /* 20px */
h4 { font-size: 1.125rem; }

p {
    color: var(--zinc-400);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

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

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.section {
    padding: var(--section-padding) 0;
}

.bg-zinc-900 {
    background-color: var(--zinc-900);
}

.center {
    text-align: center;
}

.badge {
    display: inline-block;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--red-500);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-white {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 8px; /* rounded-lg */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%; /* Full width on mobile */
}

.btn-primary {
    background-color: var(--red-700);
    color: var(--white);
    border: 2px solid var(--red-700);
}

.btn-primary:hover {
    background-color: var(--red-800);
    border-color: var(--red-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--zinc-600);
}

.btn-outline:hover {
    border-color: var(--zinc-600);
    background-color: var(--zinc-800);
}

.btn-white {
    background-color: var(--white);
    color: var(--red-600);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: var(--zinc-200);
    border-color: var(--zinc-200);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   HEADER & NAVBAR (NEW DESIGN)
   ========================================= */
.navbar-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.navbar-new.scrolled {
    background-color: rgba(9, 9, 11, 0.95); /* zinc-950/95 */
    backdrop-filter: blur(12px);
    border-bottom-color: var(--zinc-800);
}

.navbar-content {
    height: 80px; /* h-20 */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo-img {
    width: 48px; /* w-12 */
    height: 48px; /* h-12 */
    border-radius: 8px;
}

.nav-brand-text {
    display: none; /* Hidden on mobile */
}

.brand-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem; /* text-xs */
    color: var(--zinc-500);
}

/* Desktop Menu */
.nav-menu-desktop {
    display: none; /* Hidden on mobile */
}

.nav-list-desktop {
    display: flex;
    gap: 32px;
}

.nav-link-new {
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    color: var(--zinc-400);
    transition: color 0.3s ease;
}

.nav-link-new:hover {
    color: var(--white);
}

.nav-cta-desktop {
    display: none; /* Hidden on mobile */
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.hamburger-new {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-new .close-icon {
    display: none;
}

.hamburger-new.active .open-icon {
    display: none;
}

.hamburger-new.active .close-icon {
    display: block;
}

/* Mobile Menu Overlay */
.mobile-menu-container {
    position: fixed;
    inset: 0;
    background-color: var(--zinc-950);
    z-index: 999;
    padding-top: 96px; /* pt-24 */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu-container.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-list-mobile {
    display: flex;
    flex-direction: column;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 1.125rem; /* text-lg */
    font-weight: 500;
    color: #d4d4d8; /* zinc-300 */
    border-bottom: 1px solid var(--zinc-800);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--white);
}

.btn-mobile-cta {
    margin-top: 16px;
    padding: 16px;
}

/* Tablet & Desktop Adjustments for Navbar */
@media (min-width: 640px) { /* sm */
    .nav-brand-text {
        display: block;
    }
}

@media (min-width: 1024px) { /* lg */
    .nav-menu-desktop {
        display: block;
    }
    
    .nav-cta-desktop {
        display: block;
    }
    
    .hamburger-new {
        display: none;
    }
    
    .mobile-menu-container {
        display: none;
    }
}

/* =========================================
   HERO SECTION (NEW DESIGN)
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    padding-bottom: 60px;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--zinc-950), var(--zinc-900), var(--zinc-950));
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: rgba(185, 28, 28, 0.1); /* Red-700 with 10% opacity */
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 900px; /* Max-w-4xl */
}

.hero-logo-container {
    margin-bottom: 32px;
}

.hero-logo {
    width: 192px;
    height: 192px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    object-fit: contain;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(185, 28, 28, 0.4); /* Darker Red */
    border: 1px solid rgba(185, 28, 28, 0.5);
    color: var(--white); /* White text */
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600; /* Bolder */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 2.25rem; /* 4xl mobile */
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(to right, var(--red-500), var(--red-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: 1.125rem; /* lg */
    color: var(--zinc-400);
    margin: 0 auto 40px;
    max-width: 42rem; /* max-w-2xl */
    line-height: 1.625;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem; /* text-lg */
    border-radius: 8px;
}

.shadow-red {
    box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.2);
}

.shadow-red:hover {
    box-shadow: 0 20px 25px -5px rgba(185, 28, 28, 0.4);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--zinc-800);
    margin-bottom: 40px; /* Added margin to separate from scroll indicator */
}

.scroll-indicator-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.scroll-indicator-btn {
    color: var(--zinc-500);
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
    display: inline-block;
}

/* Removed old .scroll-indicator style that was absolute positioned */

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--zinc-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tablet & Desktop Adjustments for Hero */
@media (min-width: 768px) {
    .hero-logo { 
        width: 256px; /* md:w-64 */
        height: 256px;
    } 
    
    .hero-title { 
        font-size: 3rem; /* 5xl */ 
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .stat-value { font-size: 1.875rem; }
    .stat-label { font-size: 0.875rem; }
}

@media (min-width: 1024px) {
    .hero-title { 
        font-size: 3.75rem; /* 6xl */ 
    }
}

/* =========================================
   ABOUT SECTION (NEW DESIGN)
   ========================================= */
.glow-bg {
    position: absolute;
    width: 384px; /* w-96 */
    height: 384px; /* h-96 */
    background: rgba(185, 28, 28, 0.05); /* Red-700/5 */
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.glow-bg.top-right {
    top: 0;
    right: 0;
}

.about-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(185, 28, 28, 0.1);
    border: 1px solid rgba(185, 28, 28, 0.2);
    border-radius: 9999px;
    color: #f87171; /* red-400 */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.section-title {
    font-size: 1.875rem; /* 3xl */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.25;
}

.text-red-500 {
    color: var(--red-500);
}

.text-white {
    color: var(--white);
}

.about-description {
    color: var(--zinc-400);
    line-height: 1.625;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-stats-new {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--zinc-800);
}

.stat-number {
    font-size: 1.875rem; /* 3xl */
    font-weight: 700;
    color: var(--red-500);
}

.stat-text {
    font-size: 0.875rem; /* sm */
    color: var(--zinc-500);
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-card-new {
    background-color: rgba(24, 24, 27, 0.5); /* zinc-900/50 */
    border: 1px solid var(--zinc-800);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.value-card-new:hover {
    border-color: rgba(185, 28, 28, 0.5); /* red-700/50 */
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(185, 28, 28, 0.1); /* red-700/10 */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background-color 0.3s ease;
}

.value-card-new:hover .value-icon {
    background-color: rgba(185, 28, 28, 0.2); /* red-700/20 */
}

.value-icon i {
    color: var(--red-500);
    font-size: 24px;
}

.value-card-new h3 {
    font-size: 1.125rem; /* lg */
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.value-card-new p {
    font-size: 0.875rem; /* sm */
    color: var(--zinc-500);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Tablet & Desktop Adjustments for About */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem; /* 4xl */
    }
}

@media (min-width: 1024px) {
    .about-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   SERVICES SECTION (NEW DESIGN)
   ========================================= */
.glow-bg.bottom-left {
    bottom: 0;
    left: 0;
}

.section-subtitle {
    color: var(--zinc-400);
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.services-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card-new {
    position: relative;
    background-color: var(--zinc-950);
    border: 1px solid var(--zinc-800);
    border-radius: 16px; /* rounded-2xl */
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card-new:hover {
    border-color: rgba(185, 28, 28, 0.5); /* red-700/50 */
}

/* Hover Gradient Effect */
.card-hover-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(185, 28, 28, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card-new:hover .card-hover-bg {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 10;
}

.service-icon {
    width: 56px; /* w-14 */
    height: 56px; /* h-14 */
    background-color: rgba(185, 28, 28, 0.1);
    border-radius: 12px; /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.3s ease;
}

.service-card-new:hover .service-icon {
    background-color: rgba(185, 28, 28, 0.2);
}

.service-icon i {
    color: var(--red-500);
    font-size: 28px;
}

.service-card-new h3 {
    font-size: 1.25rem; /* xl */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card-new p {
    color: var(--zinc-400);
    font-size: 0.875rem; /* sm */
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list-new {
    display: flex;
    flex-direction: column;
    gap: 8px; /* space-y-2 */
}

.features-list-new li {
    display: flex;
    align-items: center;
    font-size: 0.875rem; /* sm */
    color: var(--zinc-500);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--red-500);
    border-radius: 50%;
    margin-right: 12px;
}

/* Tablet & Desktop Adjustments for Services */
@media (min-width: 768px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   DIFFERENTIATORS SECTION (NEW DESIGN)
   ========================================= */
.glow-bg.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    filter: blur(150px);
}

.differentiators-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.diff-item-new {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: rgba(24, 24, 27, 0.5); /* zinc-900/50 */
    border: 1px solid var(--zinc-800);
    border-radius: 16px; /* rounded-2xl */
    transition: all 0.3s ease;
}

.diff-item-new:hover {
    border-color: rgba(185, 28, 28, 0.3); /* red-700/30 */
}

.diff-icon-wrapper {
    flex-shrink: 0;
}

.diff-icon {
    width: 48px; /* w-12 */
    height: 48px; /* h-12 */
    background: linear-gradient(to bottom right, rgba(185, 28, 28, 0.2), rgba(185, 28, 28, 0.05));
    border-radius: 12px; /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.diff-item-new:hover .diff-icon {
    background: linear-gradient(to bottom right, rgba(185, 28, 28, 0.3), rgba(185, 28, 28, 0.1));
}

.diff-icon i {
    color: var(--red-500);
    font-size: 24px;
}

.diff-content h3 {
    font-size: 1.125rem; /* lg */
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.diff-content p {
    font-size: 0.875rem; /* sm */
    color: var(--zinc-500);
    margin-bottom: 0;
    line-height: 1.625;
}

/* Tablet & Desktop Adjustments for Differentiators */
@media (min-width: 768px) {
    .differentiators-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentiators-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   PROCESS SECTION (NEW DESIGN)
   ========================================= */
.process-timeline-new {
    max-width: 896px; /* max-w-4xl */
    margin: 0 auto;
}

.process-step {
    position: relative;
    display: flex;
    gap: 24px;
    padding-bottom: 48px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.timeline-line-gradient {
    position: absolute;
    left: 24px; /* w-12 / 2 */
    top: 56px; /* h-12 + gap */
    width: 2px;
    height: calc(100% - 56px);
    background: linear-gradient(to bottom, var(--red-700), var(--zinc-800));
}

.step-icon-wrapper {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.step-icon {
    width: 48px; /* w-12 */
    height: 48px; /* h-12 */
    background-color: var(--red-700);
    border-radius: 12px; /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.3); /* shadow-red-700/30 */
}

.step-icon i {
    color: var(--white);
    font-size: 24px;
}

.step-content {
    flex: 1;
    background-color: var(--zinc-950);
    border: 1px solid var(--zinc-800);
    border-radius: 16px; /* rounded-2xl */
    padding: 24px;
    transition: border-color 0.3s ease;
}

.step-content:hover {
    border-color: rgba(185, 28, 28, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.step-badge {
    font-size: 0.75rem; /* text-xs */
    font-weight: 700;
    color: var(--red-500);
    background-color: rgba(185, 28, 28, 0.1); /* red-700/10 */
    padding: 4px 8px;
    border-radius: 4px;
}

.step-content h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.step-content p {
    font-size: 0.875rem; /* text-sm */
    color: var(--zinc-400);
    line-height: 1.625;
    margin-bottom: 0;
}

/* =========================================
   GALLERY SECTION (NEW DESIGN)
   ========================================= */
.glow-bg.bottom-right {
    bottom: 0;
    right: 0;
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: 16px; /* rounded-2xl */
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--zinc-950) 0%, rgba(9, 9, 11, 0.5) 50%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-gradient {
    opacity: 0.8;
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 10;
}

.gallery-content h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-content p {
    font-size: 0.875rem; /* text-sm */
    color: var(--zinc-400);
    margin-bottom: 0;
}

.zoom-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px; /* w-10 */
    height: 40px; /* h-10 */
    background-color: rgba(9, 9, 11, 0.5); /* zinc-950/50 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.zoom-icon i {
    color: var(--white);
    font-size: 20px;
}

/* Tablet & Desktop Adjustments for Gallery */
@media (min-width: 768px) {
    .gallery-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 12px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.prev { left: 10px; }
.next { right: 10px; }

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    padding: 0 16px;
}

/* =========================================
   CTA SECTION (NEW DESIGN)
   ========================================= */
.cta-section-new {
    padding: 96px 0; /* py-24 */
    background: linear-gradient(135deg, #7f1d1d, #991b1b, #7f1d1d); /* from-red-900 via-red-800 to-red-900 */
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.3' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 256px; /* w-64 */
    height: 256px; /* h-64 */
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.cta-glow.top-left {
    top: 0;
    left: 25%;
    background-color: rgba(255, 255, 255, 0.1); /* white/10 */
}

.cta-glow.bottom-right {
    bottom: 0;
    right: 25%;
    background-color: rgba(0, 0, 0, 0.2); /* black/20 */
}

.cta-content-new {
    text-align: center;
    max-width: 48rem; /* max-w-3xl */
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    margin-bottom: 32px;
}

.cta-title {
    font-size: 1.875rem; /* 3xl mobile */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.125rem; /* text-lg */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.625;
}

.cta-buttons-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-indicators-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem; /* text-sm */
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80; /* green-400 */
    border-radius: 50%;
}

/* Tablet & Desktop Adjustments for CTA */
@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem; /* 4xl */
    }
    
    .cta-buttons-new {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem; /* 5xl */
    }
    
    .cta-subtitle {
        font-size: 1.25rem; /* text-xl */
    }
}

/* =========================================
   CONTACT SECTION (NEW DESIGN)
   ========================================= */
.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card-new {
    background-color: var(--zinc-950);
    border: 1px solid var(--zinc-800);
    border-radius: 16px; /* rounded-2xl */
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.contact-card-new:hover {
    border-color: rgba(185, 28, 28, 0.3); /* red-700/30 */
}

.contact-icon {
    width: 48px; /* w-12 */
    height: 48px; /* h-12 */
    background-color: rgba(185, 28, 28, 0.1); /* red-700/10 */
    border-radius: 12px; /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--red-500);
    font-size: 24px;
}

.contact-card-new h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-main {
    color: #d4d4d8; /* zinc-300 */
    margin-bottom: 4px;
}

.contact-sub {
    font-size: 0.875rem; /* text-sm */
    color: var(--zinc-500);
    margin-bottom: 0;
}

.social-links-container {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px; /* rounded-xl */
    font-weight: 600;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.social-button.whatsapp {
    background-color: var(--green-600);
}

.social-button.whatsapp:hover {
    background-color: #15803d; /* green-700 */
}

.social-button.instagram {
    background: linear-gradient(to right, #9333ea, #db2777); /* purple-600 to pink-600 */
}

.social-button.instagram:hover {
    background: linear-gradient(to right, #7e22ce, #be185d); /* purple-700 to pink-700 */
}

.social-button i {
    font-size: 20px;
}

/* Tablet & Desktop Adjustments for Contact */
@media (min-width: 768px) {
    .contact-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================================
   FOOTER (NEW DESIGN)
   ========================================= */
.footer-new {
    padding: 32px 0; /* py-8 */
    background-color: var(--zinc-950);
    border-top: 1px solid var(--zinc-800);
}

.footer-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand-new {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 48px; /* w-12 */
    height: 48px; /* h-12 */
    object-fit: contain;
}

.brand-name {
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem; /* text-xs */
    color: var(--zinc-500);
}

.footer-copyright-new {
    text-align: center;
    color: var(--zinc-500);
    font-size: 0.875rem; /* text-sm */
}

.footer-copyright-new p {
    margin: 0;
}

.developer-credit {
    margin-top: 8px !important;
    font-size: 0.75rem;
}

.developer-credit a {
    color: var(--zinc-400);
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--red-500);
    text-decoration: underline;
}

.footer-links-new {
    display: flex;
    gap: 24px;
    font-size: 0.875rem; /* text-sm */
    color: var(--zinc-500);
}

.footer-links-new a {
    transition: color 0.3s ease;
}

.footer-links-new a:hover {
    color: #f87171; /* red-400 */
}

/* Tablet & Desktop Adjustments for Footer */
@media (min-width: 768px) {
    .footer-content-new {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* =========================================
   FLOATING BUTTON
   ========================================= */
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 0.5s forwards 1s, pulse 2s infinite 2s;
    font-size: 0.9rem;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.animate { opacity: 0; transition: all 0.8s ease; }
.animate.visible { opacity: 1; }
.fade-up { transform: translateY(30px); }
.fade-up.visible { transform: translateY(0); }
.fade-right { transform: translateX(-30px); }
.fade-right.visible { transform: translateX(0); }
.fade-left { transform: translateX(30px); }
.fade-left.visible { transform: translateX(0); }
.zoom-in { transform: scale(0.9); }
.zoom-in.visible { transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =========================================
   MEDIA QUERIES (TABLET & DESKTOP)
   ========================================= */

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    :root {
        --header-height: 80px;
        --section-padding: 80px;
    }

    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }

    .btn { width: auto; }

    /* Header */
    .hamburger { display: none; }
    .cta-header { display: block; }
    
    header { background-color: transparent; border-bottom: none; }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        border: none;
        overflow: visible;
        display: block;
    }

    .nav-list {
        flex-direction: row;
        gap: 32px;
    }

    .nav-link {
        padding: 0;
        font-size: 0.95rem;
        position: relative;
    }

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

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

    /* Hero */
    .hero-buttons { flex-direction: row; }
    .hero-stats { flex-direction: row; gap: 24px; }
    .stat-separator { display: block; }
    

    /* Grids */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .differentiators-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Stats */
    .mini-stats { flex-direction: row; justify-content: flex-start; gap: 32px; text-align: left; }
    .mini-stat { align-items: flex-start; }

    /* CTA */
    .cta-buttons { flex-direction: row; }
    .cta-indicators { flex-direction: row; }

    /* Footer */
    .footer-links { flex-direction: row; gap: 32px; }
}

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    :root {
        --section-padding: 96px;
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.5rem; }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .differentiators-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: repeat(4, 1fr); }

    /* Process Timeline */
    .timeline::before { left: 50%; }
    .timeline-line { left: 50%; transform: translateX(-50%); }
    
    .timeline-item { flex-direction: row; padding-left: 0; align-items: center; }
    .timeline-item:nth-child(even) { flex-direction: row-reverse; }
    
    .timeline-number { left: 50%; }
    
    .timeline-content { width: 45%; }
    .timeline-item:nth-child(odd) .timeline-content { margin-right: auto; }
    .timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
}