/* ================================================
   Pacheco SERVICIOS INDUSTRIALES
   Premium Industrial Landing Page Styles
   ================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #4CAF50;
    --primary-dark: #2E7D32;
    --primary-light: #3FA34D;
    --primary-glow: rgba(76, 175, 80, 0.3);
    --secondary: #112B3C;
    --secondary-dark: #071520;
    --secondary-light: #0B1D2A;
    --dark: #071520;
    --dark-card: #112B3C;
    --dark-lighter: #0B1D2A;
    --dark-border: #4F4F4F;
    --text: #FFFFFF;
    --text-muted: #C7D2D9;
    --text-light: #FFFFFF;
    --white: #FFFFFF;
    --success: #4CAF50;
    --danger: #EF4444;
    --cta: #4CAF50;
    --cta-dark: #2E7D32;
    --cta-glow: rgba(76, 175, 80, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-cta: linear-gradient(135deg, var(--cta), var(--cta-dark));
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--secondary-dark) 100%);
    --gradient-card: linear-gradient(145deg, rgba(17, 43, 60, 0.4), rgba(7, 21, 32, 0.8));
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --shadow-cta-glow: 0 0 30px var(--cta-glow);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Rajdhani', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--primary);
}

/* ---- Loader ---- */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    margin-top: 20px;
}

.loader-logo img {
    width: 420px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-border);
    margin: 25px auto 0;
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: loaderFill 2s ease-in-out;
    width: 100%;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes loaderFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ---- Particles Canvas ---- */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ---- Navigation ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    min-width: 0;
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo .logo-image {
    height: 220px;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.cta-link {
    background: var(--gradient-cta);
    color: var(--dark) !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    margin-left: 10px;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta-glow);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    display: none;
}

/* ---- Hero Section ---- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(17, 43, 60, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(7, 21, 32, 1) 0%, transparent 80%),
        var(--dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 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.02'%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");
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(76, 175, 80, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 175, 80, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(52px, 10vw, 100px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 12px;
    line-height: 1;
    text-shadow: 0 0 60px rgba(76, 175, 80, 0.2);
}

.hero-title-accent {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-top: 10px;
}

.hero-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.sep-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.sep-icon {
    color: var(--primary);
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.hero-stat .stat-symbol {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
    display: inline;
}

.hero-stat .stat-label {
    font-family: var(--font-accent);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(transparent, var(--primary-glow), transparent);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 10px;
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(76, 175, 80, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(76, 175, 80, 0.5);
}

.btn-secondary:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--cta);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.btn-large {
    padding: 18px 44px;
    font-size: 16px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: floatUp 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 24px;
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-scroll-indicator span {
    font-family: var(--font-accent);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Hero Side Text */
.hero-side-text {
    position: absolute;
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(76, 175, 80, 0.15);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    z-index: 2;
}

.hero-side-text.left {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-side-text.right {
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

/* ---- Section Styles ---- */
section {
    position: relative;
    z-index: 1;
}

#about {
    padding: 120px 0;
    background: var(--dark);
    overflow: hidden;
}

.section-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-gear {
    position: absolute;
    color: rgba(76, 175, 80, 0.03);
    animation: spin 30s linear infinite;
}

.bg-gear-1 {
    font-size: 300px;
    top: -100px;
    right: -100px;
}

.bg-gear-2 {
    font-size: 200px;
    bottom: -60px;
    left: -60px;
    animation-direction: reverse;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-tag i {
    font-size: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-line span {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-line i {
    color: var(--primary);
    font-size: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ---- About Section ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    position: relative;
}

.about-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--dark);
    margin: 0 auto 30px;
    box-shadow: var(--shadow-glow);
}

.about-text-block {
    text-align: center;
}

.about-lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text-block p {
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-text-block strong {
    color: var(--primary-light);
}

.about-highlight {
    background: rgba(76, 175, 80, 0.05);
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 30px;
    font-style: italic;
    color: var(--text) !important;
}

.about-highlight i {
    color: var(--primary);
    font-size: 14px;
    margin: 0 4px;
    opacity: 0.5;
}

/* About Feature Cards */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.about-feature-card:hover {
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    color: rgba(76, 175, 80, 0.05);
    line-height: 1;
}

/* ---- Services Section ---- */
#services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--dark) 100%);
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-tab i {
    font-size: 20px;
}

.service-tab:hover {
    border-color: rgba(76, 175, 80, 0.3);
    color: var(--white);
    background: rgba(76, 175, 80, 0.05);
}

.service-tab.active {
    background: var(--gradient-primary);
    color: var(--dark);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Service Content */
.service-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.service-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 auto 20px;
    width: fit-content;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
}

.service-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.service-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(76, 175, 80, 0.05);
    border-color: rgba(76, 175, 80, 0.15);
    transform: translateX(5px);
}

.service-item i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.service-item span {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

.btn-service {
    margin-top: 10px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Service Visual */
.service-visual {
    position: relative;
}

.service-image-container {
    position: relative;
    display: grid;
    gap: 18px;
    justify-items: center;
}

.service-icon-display {
    width: 100%;
    aspect-ratio: 1;
    max-width: 350px;
    margin: 0 auto 30px;
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(76, 175, 80, 0.15);
    position: relative;
    overflow: hidden;
}

.service-icon-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.05), transparent 70%);
}

.service-icon-display.pesada {
    color: rgba(76, 175, 80, 0.12);
    font-size: 140px;
}

.service-icon-display.metalurgica {
    color: rgba(76, 175, 80, 0.12);
    font-size: 130px;
}

.service-stats-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ssc-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ssc-item>i {
    width: 44px;
    height: 44px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.ssc-item div strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.ssc-item div span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- Fleet Gallery Visual ---- */
.fleet-gallery-visual {
    width: 100%;
    margin-bottom: 30px;
}

.gallery-visual-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-visual-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

.gallery-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-visual-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(10, 30, 40, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: var(--transition);
}

.gallery-visual-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.15);
}

.gallery-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-visual-item:hover .gallery-visual-image {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* ---- Carousel Styles ---- */
.carousel-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 1;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(76, 175, 80, 0.8);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition);
}

.carousel-control:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(76, 175, 80, 0.8);
}

/* ---- Equipment Section ---- */
#equipment {
    padding: 120px 0;
    background: var(--dark);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.equipment-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.equipment-card:hover {
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-8px);
}

.equipment-card:hover .equip-glow {
    opacity: 1;
}

.equip-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.equip-icon {
    width: 70px;
    height: 70px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.equipment-card:hover .equip-icon {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.equipment-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.equipment-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Values Section ---- */
#values {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--dark) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
}

.value-card:hover .value-line {
    width: 60px;
    background: var(--gradient-primary);
}

.value-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon-wrap {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.value-line {
    width: 30px;
    height: 3px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 3px;
    margin: 15px auto 0;
    transition: var(--transition);
}

/* ---- Commitment Section ---- */
#commitment {
    padding: 120px 0;
    background: var(--dark);
}

.commitment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.commitment-block {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.commitment-block:hover {
    border-color: rgba(76, 175, 80, 0.2);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin: 0 auto 24px;
}

.commitment-block h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.commitment-block>p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 2;
    margin-bottom: 14px;
}

.commitment-badges {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.c-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.c-badge:hover {
    background: rgba(76, 175, 80, 0.15);
}

.client-commitments {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.cc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    transition: var(--transition);
}

.cc-item:hover {
    background: rgba(76, 175, 80, 0.04);
    border-color: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.cc-icon {
    width: 44px;
    height: 44px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.cc-item strong {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.cc-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- CTA Section ---- */
#cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(76, 175, 80, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(30, 58, 95, 0.3) 0%, transparent 60%),
        var(--secondary-dark);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(76, 175, 80, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 175, 80, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---- Contact Section ---- */
#contact {
    padding: 120px 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(76, 175, 80, 0.2);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--text);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: var(--primary);
    transform: translateY(-3px);
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(76, 175, 80, 0.03);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(156, 163, 175, 0.5);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 44px;
}

.form-group select option {
    background: var(--dark-card);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-line {
    display: none;
}

.btn-submit {
    display: block;
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    padding: 18px 40px;
    font-size: 15px;
}

.hidden-netlify-field {
    display: none !important;
}

.form-feedback {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    min-height: 22px;
}

.form-feedback.success {
    color: #10B981;
}

.form-feedback.error {
    color: #F87171;
}

/* ---- Footer ---- */
#footer {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 50px;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-brand .logo-image {
    height: 170px;
}

.footer-brand p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a i {
    font-size: 10px;
    color: var(--primary);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--dark-border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .wf-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.wf-tooltip {
    position: absolute;
    left: 70px;
    background: var(--dark-card);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.wf-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--dark-card);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ---- Animations ---- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

/* ---- Image Lightbox ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.4s ease;
}

@keyframes lightboxFadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#lightboxImage {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(76, 175, 80, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
}

.lightbox-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10001;
}

.lightbox-btn {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
    transform: scale(1.15);
}

.lightbox-btn:active {
    transform: scale(0.95);
}

/* ---- Responsive ---- */
/* Desktop Large */
@media (min-width: 1440px) {
    html {
        font-size: 17px;
    }

    .container {
        max-width: 1380px;
    }

    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* TV / Ultra Wide */
@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    .container {
        max-width: 1560px;
    }

    #hero {
        min-height: 100vh;
    }

    .hero-content {
        max-width: 1320px;
    }
}

/* Tablet Large */
@media (max-width: 1200px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
        border-left: 1px solid var(--dark-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 12px);
        right: 14px;
        padding: 10px;
        border-radius: 10px;
        background: rgba(10, 14, 23, 0.78);
        border: 1px solid rgba(76, 175, 80, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        z-index: 1002;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 24px;
    }

    .nav-link.cta-link {
        margin-left: 0;
        margin-top: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-visual {
        order: -1;
    }

    .service-icon-display {
        max-width: 250px;
        font-size: 80px !important;
    }

    .commitment-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-side-text {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    #about,
    #services,
    #equipment,
    #values,
    #commitment,
    #contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .hero-content {
        padding: 100px 20px 40px;
    }

    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    .nav-logo {
        display: none;
    }

    .logo-image {
        height: 100px;
    }

    .hero-title-line {
        letter-spacing: 6px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat .stat-number {
        font-size: 36px;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 14px 30px;
        font-size: 13px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .btn-large {
        padding: 16px 34px;
        font-size: 14px;
    }

    .service-tabs {
        flex-direction: column;
        align-items: center;
    }

    .service-tab {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .service-items-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        max-width: 320px;
    }

    .carousel-control {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
        width: 100%;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .commitment-badges {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
        font-size: 26px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .wf-tooltip {
        display: none;
    }

    .contact-social {
        justify-content: center;
    }

    #lightboxImage {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-close {
        width: 44px;
        height: 44px;
        font-size: 20px;
        top: 16px;
        right: 16px;
    }

    .lightbox-controls {
        bottom: 20px;
        gap: 16px;
    }

    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 8px 16px;
    }

    .hero-title-accent {
        letter-spacing: 4px;
    }

    .about-icon-large {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .about-feature-card {
        padding: 30px 24px;
    }

    .feature-number {
        font-size: 40px;
    }

    .service-info h3 {
        font-size: 28px;
    }

    .nav-links {
        width: 100%;
    }

    .hero-stat .stat-number {
        font-size: 30px;
    }

    .hero-stat .stat-symbol {
        font-size: 18px;
    }

    #lightboxImage {
        max-width: 98vw;
        max-height: 75vh;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Extra small */
@media (max-width: 360px) {
    .hero-badge span {
        font-size: 9px;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 7px;
    }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
