/* ============================================
   Grupo SHyma - Modern Professional Stylesheet
   Built on Bootstrap 5 + Custom Enhancements
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ========== CSS Variables - Brand Palette ========== */
:root {
    /* ★★★ Nueva Paleta Corporativa Grupo SHyma ★★★ */
    --brand-green: #2ECC71;          /* Verde principal - hojas, CTAs, botones */
    --brand-green-dark: #27AE60;     /* Verde oscuro - hover states */
    --brand-green-gradient: linear-gradient(135deg, #2ECC71, #27AE60);
    
    --brand-navy: #0a1f3d;           /* Azul marino - "yma", escudo, navbar */
    --brand-navy-light: #0d2e5c;     /* Azul marino claro */
    --brand-navy-gradient: linear-gradient(135deg, #0a1f3d, #0d2e5c);
    
    --brand-blue: #3498DB;           /* Azul eléctrico - seguridad industrial, casco */
    --brand-blue-dark: #2980B9;      /* Azul eléctrico oscuro */
    
    --brand-red: #E74C3C;            /* Rojo vivo - control incendios, emergencias */
    --brand-red-dark: #C0392B;       /* Rojo oscuro */
    
    --brand-amber: #F39C12;          /* Amarillo cálido/ámbar - precaución, advertencia */
    --brand-amber-dark: #E67E22;     /* Ámbar oscuro */
    
    --whatsapp: #25D366;
    
    /* Fondos */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-section-alt: #f1f5f9;
    --bg-dark: #1b4077;
    
    /* Textos */
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Sombras - adaptadas al nuevo verde corporativo */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 20px rgba(46, 204, 113, 0.15);
    
    /* Bordes redondeados */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Transiciones */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    scroll-margin-top: 80px;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-green);
    margin-bottom: 0.75rem;
}

/* ========== Navigation ========== */
.navbar {
    background: rgba(27, 64, 119, 1)!important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 31, 61, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-white) !important;
    letter-spacing: -0.01em;
}

.navbar .navbar-brand img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--text-white) !important;
    background: rgba(255, 255, 255, 0.06);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ========== Hero / Header Section ========== */
header#intro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem;
    overflow: hidden;
}

header#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 31, 61, 0.92) 0%, rgba(13, 46, 92, 0.85) 50%, rgba(10, 31, 61, 0.92) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1; 
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
}

/* New 2-column grid layout for header */
header#intro .header-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Left side: Logo */
header#intro .header-logo-side {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

header#intro .hero-logo {
    max-width: 100%;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

header#intro .hero-logo:hover {
    transform: scale(1.03);
}

/* Right side: Content */
header#intro .header-content-side {
    text-align: left;
}

header#intro h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

header#intro .hero-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

header#intro .hero-slogan {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--brand-green);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

header#intro .hero-sub {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

header#intro .hero-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    header#intro .header-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    header#intro .header-logo-side {
        justify-content: center;
    }

    header#intro .hero-logo {
        max-height: 220px;
    }

    header#intro .header-content-side {
        text-align: center;
    }

    header#intro .hero-actions {
        justify-content: center;
    }
}

/* ========== Hero Background Image ========== */
#bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    display: none;
}

/* ========== CTA Buttons - Verde corporativo ========== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--brand-green-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.35);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.45);
    color: var(--text-white);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--text-white);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: var(--text-white);
}

.cta-container {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ========== Section Intro (below hero) ========== */
#intro,
#intro-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-white);
}

#intro h2,
#intro-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

#intro p,
#intro-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== "Por qué elegirnos" Section ========== */
#por-que-elegirnos {
    padding: 5rem 0;
    background: var(--bg-section-alt);
    text-align: center;
}

#por-que-elegirnos h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#por-que-elegirnos .section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-green-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 204, 113, 0.1);
}

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

.card-image {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(46, 204, 113, 0.06);
    padding: 1rem;
    transition: var(--transition);
}

.card:hover .card-image {
    background: rgba(46, 204, 113, 0.12);
    transform: scale(1.05);
}

.card-image img,
.card-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========== Reusable Dark Section Header ========== */
.section-header-dark {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 31, 61, 0.92) 0%, rgba(13, 46, 92, 0.88) 100%);
    padding: 6rem 1rem 5rem;
    margin-bottom: 4rem;
    overflow: hidden;
    text-align: center;
}

.section-header-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.section-header-dark .header-content {
    position: relative;
    z-index: 2;
}

.section-header-dark h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.section-header-dark p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

@media (max-width: 576px) {
    .section-header-dark {
        padding: 4rem 1rem 3rem;
    }
}

/* ========== Servicios Section ========== */
#servicios {
    padding: 0;
    background: var(--bg-white);
    text-align: center;
}

/* Header de la sección con imagen de fondo oscura */
#servicios .servicios-header {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 31, 61, 0.92) 0%, rgba(13, 46, 92, 0.88) 100%);
    padding: 6rem 1rem 5rem;
    margin-bottom: 4rem;
    overflow: hidden;
}

#servicios .servicios-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

#servicios .servicios-header .header-content {
    position: relative;
    z-index: 2;
}

#servicios .servicios-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#servicios .servicios-header p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de servicios */
#servicios .service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 5rem;
}

/* Tarjeta de servicio */
#servicios .service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
}

#servicios .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 204, 113, 0.15);
}

/* Icono del servicio */
#servicios .service-card .service-icon {
    font-size: 2.8rem;
    color: var(--brand-green);
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: var(--transition);
}

#servicios .service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--brand-green-dark);
}

/* Título */
#servicios .service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

/* Descripción corta */
#servicios .service-card .service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

/* Enlace VER MAS */
#servicios .service-card .ver-mas {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--brand-green);
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

#servicios .service-card .ver-mas:hover {
    color: var(--brand-green-dark);
    border-bottom-color: var(--brand-green-dark);
    letter-spacing: 0.12em;
}

/* Contenido expandible */
#servicios .service-card .service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    text-align: left;
    padding: 0 0.5rem;
}

#servicios .service-card .service-details.active {
    max-height: 600px;
    opacity: 1;
    padding: 1.25rem 0.5rem 0.5rem;
    border-top: 1px solid rgba(46, 204, 113, 0.15);
    margin-top: 1rem;
}

#servicios .service-card .service-details p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

#servicios .service-card .service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#servicios .service-card .service-details li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

#servicios .service-card .service-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

/* Botón de más servicios */
#servicios .more-services-button {
    margin-top: 2rem;
    padding-bottom: 5rem;
    text-align: center;
}

#servicios .more-services-button .btn {
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    background: var(--brand-green-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.25);
    transition: var(--transition);
}

#servicios .more-services-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    #servicios .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #servicios .service-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    #servicios .servicios-header {
        padding: 4rem 1rem 3rem;
    }
}

/* ========== Clientes Section ========== */
#iffies {
    padding: 5rem 0;
    background: var(--bg-section-alt);
    text-align: center;
}

#iffies h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#iffies .section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* Carousel */
.carousel {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

.carousel-inner {
    cursor: grab;
    padding: 2rem;
}

.carousel-item {
    transition: transform 0.5s ease-in-out;
}

.logo-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
}

.logo-item {
    width: auto;
    max-width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    filter: grayscale(60%) opacity(0.7);
}

.logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-control-prev {
    left: 0;
    transform: translateX(0);
}

.carousel-control-next {
    right: 0;
    transform: translateX(0);
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    padding: 0;
    opacity: 1;
    transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out;
    position: absolute;
}

.carousel-control-prev {
    left: 20%;
    transform: translateX(-50%);
}

.carousel-control-next {
    right: 20%;
    transform: translateX(50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--secondary-color) !important;
    border-radius: 60% !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}

.carousel-indicators [data-bs-target] {
    background-color: var(--secondary-color) !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
}

.carousel-scrollable::-webkit-scrollbar {
    display: none;
}  

.carousel-scrollable .logo-item {
    scroll-snap-align: center;
    flex: 0 0 auto;
}

/* ========== Ubicación y Contacto ========== */
.ubicacion-contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem;
    background: var(--bg-white);
}

@media (max-width: 768px) {
    .ubicacion-contacto-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1rem;
    }
}

/* Contact Form */
#contacto {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

#contacto h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#contacto p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#contact-form label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    transition: var(--transition);
    font-family: inherit;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

#contact-form button[type="submit"] {
    background: var(--brand-green-gradient);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.25);
    width: 100%;
}

#contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.35);
}

/* Ubicación */
#ubicacion {
    padding: 2.5rem;
}

#ubicacion h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#ubicacion p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

#ubicacion iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ========== Certificaciones y Aptitudes ========== */
#certificaciones {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

#certificaciones h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#certificaciones > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cert-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cert-card + .cert-card {
    margin-top: 1.5rem;
}

.cert-header {
    background: var(--brand-navy-gradient);
    padding: 1.25rem;
    color: white;
}

.cert-header h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cert-header h3 i {
    color: var(--brand-green);
}

.cert-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0.25rem 0 0 0;
}

.cert-body {
    padding: 1.25rem;
}

.cert-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-body li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-body);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.cert-body li:last-child {
    margin-bottom: 0;
}

.cert-body li span {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-green);
    font-weight: bold;
}

/* ========== WhatsApp Button ========== */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button.floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
}

.whatsapp-button img {
    height: 24px;
    width: auto;
}

@media (max-width: 768px) {
    .whatsapp-button.floating {
        bottom: 16px;
        right: 16px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ========== Footer ========== */
footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-green-gradient);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand img {
    max-height: 160px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.6rem;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--brand-green);
    padding-left: 4px;
}

.footer-nav h5,
.footer-social h5 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(46, 204, 113, 0.2);
    transform: translateY(-3px);
}

.social-links img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
    margin: auto;
}

.social-links a:hover img {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== Scroll to Top ========== */
#scrollToTopBtn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-green-gradient);
    border: none;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: var(--transition);
    display: none;
    align-items: center;
    justify-content: center;
}

#scrollToTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

#scrollToTopBtn img {
    width: 20px;
    height: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    #scrollToTopBtn {
        width: 38px;
        height: 38px;
        bottom: 16px;
        left: 16px;
    }

    #scrollToTopBtn img {
        width: 16px;
    }
}

/* ========== Modal Styling ========== */
.modal-content {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
}

/* More Services Modal - matching new service cards design */
#moreServicesModal .modal-body {
    padding: 1.5rem;
}

#moreServicesModal .service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

#moreServicesModal .service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

#moreServicesModal .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 105, 20, 0.15);
}

#moreServicesModal .service-card .service-icon {
    font-size: 2.8rem;
    color: #8B6914;
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: var(--transition);
}

#moreServicesModal .service-card:hover .service-icon {
    transform: scale(1.1);
    color: #a67c1a;
}

#moreServicesModal .service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

#moreServicesModal .service-card .service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

#moreServicesModal .service-card .ver-mas {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8B6914;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid #8B6914;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

#moreServicesModal .service-card .ver-mas:hover {
    color: #a67c1a;
    border-bottom-color: #a67c1a;
    letter-spacing: 0.12em;
}

#moreServicesModal .service-card .service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    text-align: left;
    padding: 0 0.5rem;
}

#moreServicesModal .service-card .service-details.active {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 0.5rem 0;
    border-top: 1px solid rgba(139, 105, 20, 0.15);
    margin-top: 1rem;
}

#moreServicesModal .service-card .service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#moreServicesModal .service-card .service-details li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

#moreServicesModal .service-card .service-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #8B6914;
    font-weight: bold;
}

@media (max-width: 768px) {
    #moreServicesModal .service-container {
        grid-template-columns: 1fr;
    }
}

/* Success Modal */
#successModal .modal-header.bg-success {
    background: var(--brand-green) !important;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 31, 61, 0.98);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
        backdrop-filter: blur(20px);
    }
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 70px;
    }

    .card-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    #servicios .service-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    #servicios .service-card .service-icon {
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #servicios .service-card {
        min-height: 300px;
    }

    .ubicacion-contacto-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    #contacto {
        padding: 1.5rem;
    }

    #certificaciones {
        padding: 1.5rem;
    }

    #ubicacion {
        padding: 1.5rem;
    }

    #ubicacion iframe {
        height: 300px;
    }
}

/* ========== Utility Classes ========== */
.text-gradient {
    background: var(--brand-green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* ========== CSS Animations (replaces anime.js) ========== */

/* Fade in + slide up for sections */
section.animate-from-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.animate-from-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scale in for service cards - only animate when not already visible */
.service-card:not(.animate-in),
.card:not(.animate-in) {
    opacity: 1;
    transform: none;
}

/* When animate-in class is applied via JS, add transition */
.service-card,
.card {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Only start invisible from JS-triggered scroll animation */
.service-card.animate-from-scroll,
.card.animate-from-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.service-card.animate-from-scroll.animate-in,
.card.animate-from-scroll.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger effect via transition delay based on index */
.card:nth-child(1),
.service-card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2),
.service-card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3),
.service-card:nth-child(3) { transition-delay: 0.2s; }
.card:nth-child(4),
.service-card:nth-child(4) { transition-delay: 0.3s; }
.card:nth-child(5),
.service-card:nth-child(5) { transition-delay: 0.4s; }
.card:nth-child(6),
.service-card:nth-child(6) { transition-delay: 0.5s; }
.service-card:nth-child(7) { transition-delay: 0.6s; }
.service-card:nth-child(8) { transition-delay: 0.7s; }
.service-card:nth-child(9) { transition-delay: 0.8s; }
.service-card:nth-child(10) { transition-delay: 0.9s; }
.service-card:nth-child(11) { transition-delay: 1.0s; }
.service-card:nth-child(12) { transition-delay: 1.1s; }
.service-card:nth-child(13) { transition-delay: 1.2s; }

/* Card image icon pulse on hover */
.card-image img,
.card-image svg {
    transition: transform 0.3s ease;
}

.card:hover .card-image img,
.card:hover .card-image svg {
    transform: scale(1.1);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    section.animate-from-scroll,
    .service-card.animate-from-scroll,
    .card.animate-from-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==============================================
   ★★★ 4-COLOR THEMED SERVICE CARDS ★★★
   Basado en los 4 cuadrantes del isotipo
   ============================================== */

/* --- Tema Verde (naturaleza, sostenibilidad, hojas) --- */
#servicios .service-card.card-theme-green,
#moreServicesModal .service-card.card-theme-green {
    border-top: 3px solid var(--brand-green);
}
#servicios .service-card.card-theme-green:hover,
#moreServicesModal .service-card.card-theme-green:hover {
    border-color: var(--brand-green);
}
#servicios .service-card.card-theme-green .service-icon,
#moreServicesModal .service-card.card-theme-green .service-icon {
    color: var(--brand-green);
}
#servicios .service-card.card-theme-green:hover .service-icon,
#moreServicesModal .service-card.card-theme-green:hover .service-icon {
    color: var(--brand-green-dark);
}
#servicios .service-card.card-theme-green .ver-mas,
#moreServicesModal .service-card.card-theme-green .ver-mas {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}
#servicios .service-card.card-theme-green .ver-mas:hover,
#moreServicesModal .service-card.card-theme-green .ver-mas:hover {
    color: var(--brand-green-dark);
    border-bottom-color: var(--brand-green-dark);
}
#servicios .service-card.card-theme-green .service-details.active,
#moreServicesModal .service-card.card-theme-green .service-details.active {
    border-top-color: var(--brand-green);
}
#servicios .service-card.card-theme-green .service-details li::before,
#moreServicesModal .service-card.card-theme-green .service-details li::before {
    color: var(--brand-green);
}

/* --- Tema Azul Eléctrico (seguridad industrial, casco) --- */
#servicios .service-card.card-theme-blue,
#moreServicesModal .service-card.card-theme-blue {
    border-top: 3px solid var(--brand-blue);
}
#servicios .service-card.card-theme-blue:hover,
#moreServicesModal .service-card.card-theme-blue:hover {
    border-color: var(--brand-blue);
}
#servicios .service-card.card-theme-blue .service-icon,
#moreServicesModal .service-card.card-theme-blue .service-icon {
    color: var(--brand-blue);
}
#servicios .service-card.card-theme-blue:hover .service-icon,
#moreServicesModal .service-card.card-theme-blue:hover .service-icon {
    color: var(--brand-blue-dark);
}
#servicios .service-card.card-theme-blue .ver-mas,
#moreServicesModal .service-card.card-theme-blue .ver-mas {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-blue);
}
#servicios .service-card.card-theme-blue .ver-mas:hover,
#moreServicesModal .service-card.card-theme-blue .ver-mas:hover {
    color: var(--brand-blue-dark);
    border-bottom-color: var(--brand-blue-dark);
}
#servicios .service-card.card-theme-blue .service-details.active,
#moreServicesModal .service-card.card-theme-blue .service-details.active {
    border-top-color: var(--brand-blue);
}
#servicios .service-card.card-theme-blue .service-details li::before,
#moreServicesModal .service-card.card-theme-blue .service-details li::before {
    color: var(--brand-blue);
}

/* --- Tema Rojo (control incendios, emergencias) --- */
#servicios .service-card.card-theme-red,
#moreServicesModal .service-card.card-theme-red {
    border-top: 3px solid var(--brand-red);
}
#servicios .service-card.card-theme-red:hover,
#moreServicesModal .service-card.card-theme-red:hover {
    border-color: var(--brand-red);
}
#servicios .service-card.card-theme-red .service-icon,
#moreServicesModal .service-card.card-theme-red .service-icon {
    color: var(--brand-red);
}
#servicios .service-card.card-theme-red:hover .service-icon,
#moreServicesModal .service-card.card-theme-red:hover .service-icon {
    color: var(--brand-red-dark);
}
#servicios .service-card.card-theme-red .ver-mas,
#moreServicesModal .service-card.card-theme-red .ver-mas {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
}
#servicios .service-card.card-theme-red .ver-mas:hover,
#moreServicesModal .service-card.card-theme-red .ver-mas:hover {
    color: var(--brand-red-dark);
    border-bottom-color: var(--brand-red-dark);
}
#servicios .service-card.card-theme-red .service-details.active,
#moreServicesModal .service-card.card-theme-red .service-details.active {
    border-top-color: var(--brand-red);
}
#servicios .service-card.card-theme-red .service-details li::before,
#moreServicesModal .service-card.card-theme-red .service-details li::before {
    color: var(--brand-red);
}

/* --- Tema Ámbar (precaución, advertencia) --- */
#servicios .service-card.card-theme-amber,
#moreServicesModal .service-card.card-theme-amber {
    border-top: 3px solid var(--brand-amber);
}
#servicios .service-card.card-theme-amber:hover,
#moreServicesModal .service-card.card-theme-amber:hover {
    border-color: var(--brand-amber);
}
#servicios .service-card.card-theme-amber .service-icon,
#moreServicesModal .service-card.card-theme-amber .service-icon {
    color: var(--brand-amber);
}
#servicios .service-card.card-theme-amber:hover .service-icon,
#moreServicesModal .service-card.card-theme-amber:hover .service-icon {
    color: var(--brand-amber-dark);
}
#servicios .service-card.card-theme-amber .ver-mas,
#moreServicesModal .service-card.card-theme-amber .ver-mas {
    color: var(--brand-amber);
    border-bottom-color: var(--brand-amber);
}
#servicios .service-card.card-theme-amber .ver-mas:hover,
#moreServicesModal .service-card.card-theme-amber .ver-mas:hover {
    color: var(--brand-amber-dark);
    border-bottom-color: var(--brand-amber-dark);
}
#servicios .service-card.card-theme-amber .service-details.active,
#moreServicesModal .service-card.card-theme-amber .service-details.active {
    border-top-color: var(--brand-amber);
}
#servicios .service-card.card-theme-amber .service-details li::before,
#moreServicesModal .service-card.card-theme-amber .service-details li::before {
    color: var(--brand-amber);
}

