/* ======================================================= */
/* VARIABLES Y CONFIGURACIÓN GENERAL                       */
/* ======================================================= */
:root {
    --color-green: #99cc33;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark: #222222;
    --color-light-gray: #f7f7f7;
    --color-background-green: #acdfac;
    --color-gold: #c5b358;
    --font-nav: 'Oswald', sans-serif; 
    --font-body: 'Montserrat', sans-serif;
    --font-quote: 'Playfair Display', serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-dark);
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

h2, h3 { 
    font-weight: 700; 
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-black);
    text-transform: uppercase;
}

section { 
    padding: 80px 0; 
}

.btn { 
    display: inline-block; 
    padding: 12px 28px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: 600; 
    cursor: pointer; 
    border: none; 
    transition: background-color 0.3s ease, transform 0.2s ease; 
}

.btn:hover { 
    transform: translateY(-3px); 
}

.btn-primary { 
    background-color: var(--color-gold); 
    color: var(--color-white); 
}

.btn-primary:hover { 
    background-color: #d4c16a; 
}


/* ======================================================= */
/* ENCABEZADO Y NAVEGACIÓN                                 */
/* ======================================================= */
.main-header {
    background-color: var(--color-black);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px; 
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 4%;
}

.logo-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-green {
    color: var(--color-green);
}

.main-nav {
    height: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
}

.main-nav li {
    height: 100%;
}

.main-nav a {
    position: relative;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-nav);
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0 18px;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav a span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transform: scaleY(0);
    transition: transform 0.2s ease-in-out;
    z-index: 1;
}

.main-nav a:hover span,
.main-nav a.active span {
    color: var(--color-black); 
}

.main-nav a:hover::before,
.main-nav a.active::before {
    transform: scaleY(1);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
}


/* ======================================================= */
/* SECCIÓN HERO (CARRUSEL)                                 */
/* ======================================================= */
.hero-section {
    position: relative;
    height: 100vh;
    padding: 0;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    z-index: 4;
    padding: 20px;
}

.hero-logo-placeholder {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.hero-location, .hero-subtitle { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-family: var(--font-body); 
    font-size: 0.9rem; 
    letter-spacing: 2px; 
}

.hero-location .line, .hero-subtitle .line { 
    height: 1px; 
    width: 80px; 
    background-color: var(--color-white); 
}

.hero-title { 
    font-family: 'Oswald', sans-serif; 
    font-size: 6rem; 
    font-weight: 400; 
    line-height: 1; 
    margin: 20px 0; 
    color: var(--color-white); 
}

.hero-title .text-green { 
    color: var(--color-green); 
    font-size: 7rem; 
    font-weight: 700; 
}

.hero-subtitle { 
    margin: 20px 0; 
    color: var(--color-green); 
    font-weight: 700; 
}

.hero-subtitle .line { 
    background-color: var(--color-green); 
}

.hero-quote { 
    font-family: var(--font-quote); 
    font-style: italic; 
    font-size: 1.3rem; 
    max-width: 700px; 
    margin-top: 25px; 
    line-height: 1.6; 
}

.slider-arrow { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 5; 
    background: rgba(0, 0, 0, 0.2); 
    border: none; 
    color: var(--color-white); 
    padding: 15px 20px; 
    cursor: pointer; 
    transition: background 0.3s; 
}

.slider-arrow:hover { 
    background: rgba(0, 0, 0, 0.5); 
}

.slider-arrow.prev { 
    left: 30px; 
}

.slider-arrow.next { 
    right: 30px; 
}

.slider-pagination { 
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 5; 
    display: flex; 
    gap: 15px; 
}

.pagination-dot { 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.5); 
    cursor: pointer; 
    transition: background 0.3s; 
}

.pagination-dot.active { 
    background: var(--color-white); 
}


/* ======================================================= */
/* SECCIONES DE CONTENIDO                                  */
/* ======================================================= */

/* --- SECCIÓN NOSOTROS --- */
.about-section { 
    background-color: var(--color-white); 
}

.two-columns { 
    display: flex; 
    gap: 50px; 
    align-items: center; 
}

.about-image { 
    flex: 1; 
}

.about-image img { 
    width: 100%; 
    border-radius: 5px; 
}

.about-content { 
    flex: 1; 
}

.about-content h2 { 
    text-align: left; 
    margin-bottom: 10px; 
}

.about-content h3 { 
    font-size: 1.8rem; 
    margin-bottom: 20px; 
}

.about-content p { 
    line-height: 1.7; 
}

/* --- SECCIÓN MISIÓN, VISIÓN, VALORES --- */
.pillars-section { 
    background-color: var(--color-light-gray); 
}

.pillars-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    text-align: center; 
}

.pillar-card h3 { 
    font-size: 1.5rem; 
    color: var(--color-dark); 
    margin-bottom: 15px; 
}

.pillar-card h3 i { 
    color: var(--color-gold); 
    margin-right: 10px; 
}

.pillar-card p { 
    line-height: 1.7; 
}

/* --- SECCIÓN SERVICIOS --- */
.services-section-alt { 
    background-color: var(--color-background-green); 
}

.services-title-alt { 
    font-size: 3rem; 
    font-weight: 900; 
    color: var(--color-black); 
    text-transform: uppercase; 
    text-align: center; 
    margin-bottom: 60px; 
}

.services-grid-alt { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
    gap: 50px 30px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.service-item-alt { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
}

.service-item-alt img { 
    width: 140px; 
    height: 140px; 
    border-radius: 50%; 
    object-fit: cover; 
    flex-shrink: 0; 
}

.service-text-alt h3 { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--color-black); 
    margin-bottom: 10px; 
}

.service-text-alt p { 
    font-size: 1rem; 
    color: #333; 
    line-height: 1.6; 
}

.service-item-alt { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
}

.service-item-alt img { 
    width: 140px; 
    height: 140px; 
    border-radius: 50%; 
    object-fit: cover; 
    flex-shrink: 0; 
    transition: transform 0.5s ease; /* Añadido */
}

/* Regla nueva para la animación de rotación */
.service-item-alt:hover img {
    transform: rotate(360deg);
}

.service-text-alt h3 { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--color-black); 
    margin-bottom: 10px; 
}

/* --- BANNER "NOS ENCARGAMOS..." --- */
.feature-banner-section { 
    background-color: var(--color-dark); 
    color: var(--color-white); 
    text-align: center; 
}

.feature-banner-section h2 { 
    color: var(--color-white); 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}

.feature-banner-section p { 
    max-width: 700px; 
    margin: -20px auto 0; 
    line-height: 1.7; 
    color: #ccc; 
}

/* --- BANNER SOCIAL (NUEVOS ESTILOS) --- */
.social-banner-section {
    position: relative;
    padding: 100px 0;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.video-background-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.video-background-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.social-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 10px;
}

.social-banner-content .contact-link {
    display: inline-block;
    color: var(--color-white);
    text-decoration: none;
    padding: 8px 15px;
    margin-bottom: 50px;
    transition: color 0.3s;
}

.social-banner-content .contact-link:hover {
    color: var(--color-green);
}

.social-icons-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.social-icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden; /* Para contener el fondo animado */
    z-index: 1;
}

.icon-wrapper i {
    font-size: 2.5rem;
    position: relative;
    z-index: 2; /* El icono siempre por encima del fondo */
    transition: color 0.4s ease;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* Colores de fondo para cada ícono */
.icon-wrapper.facebook::before { background-color: #3b5998; }
.icon-wrapper.instagram::before { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); } /* Gradiente de Instagram */
.icon-wrapper.tiktok::before { background-color: #000000; } /* TikTok es negro */
.icon-wrapper.whatsapp::before { background-color: #25D366; } /* Verde de WhatsApp */
.icon-wrapper.gmail::before { background-color: #db4437; }
.icon-wrapper.youtube::before { background-color: #ff0000; }

.social-icon-block:hover .icon-wrapper::before {
    transform: scale(1);
}

.social-icon-block:hover .icon-wrapper {
    border-color: transparent; /* Oculta el borde para que el fondo lo llene */
}

.social-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.social-text p {
    font-size: 0.9rem;
}

.progress-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.progress-footer .line {
    height: 1px;
    width: 100px;
    background-color: var(--color-white);
}


/* --- SECCIÓN INDICADORES --- */
.stats-section {
    background-image: url('https://via.placeholder.com/1920x600/555555/808080?text=Imagen+de+Fondo');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    position: relative;
    padding: 100px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.stats-intro-text h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.5;
    margin-bottom: 10px;
}

.stats-intro-text p {
    font-style: italic;
    color: #ccc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ddd;
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
}

.stat-item h4 {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}


/* --- SECCIÓN CLIENTES --- */
.clients-section-gallery {
    background-color: var(--color-background-green);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .pre-title {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.section-header h2 {
    font-size: 4rem;
    font-family: var(--font-nav);
    margin-bottom: 5px;
}

.section-header .sub-title {
    font-size: 1.1rem;
    color: #555;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header .sub-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--color-green);
}

.clients-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.administered-list {
    margin-top: 20px;
    font-size: 1rem;
    text-align: left;
}
.administered-list ul {
    list-style: none;
    padding-left: 10px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: #2e6b2e;
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-nav);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.filter-btn:hover {
    background-color: #3b8a3b;
}

.filter-btn.active {
    background-color: var(--color-green);
}

/* PUNTO CLAVE 1: Cuadrícula automática y flexible */
.gallery-grid {
    display: grid;
    gap: 20px;
    /* Esta línea es mágica: crea tantas columnas de 380px como quepan.
       Si no caben, se reorganizan automáticamente. */
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

/* PUNTO CLAVE 2: Tamaño fijo para la tarjeta de la imagen */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 380px;  /* Ancho fijo */
    height: 300px; /* Altura fija */
    border-radius: 5px; /* Opcional: para suavizar las esquinas */
    margin: 0 auto; /* Centra las tarjetas si hay espacio extra */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.overlay-content h3 {
    font-family: var(--font-nav);
    font-size: 1.5rem;
}

.overlay-content p {
    font-size: 1rem;
}

.gallery-item.hide {
    display: none;
}


/* --- SECCIÓN CONTACTO (NUEVOS ESTILOS) --- */
.contact-section {
    padding: 0; /* Quitamos el padding para que el mapa y el fondo verde ocupen todo */
}

.contact-info-wrapper {
    background-color: var(--color-background-green);
    padding: 80px 20px;
    text-align: center;
}

.contact-header .pre-title {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.contact-header h2 {
    font-size: 4rem;
    font-family: var(--font-nav);
    margin-bottom: 5px;
}

.contact-header .sub-title {
    font-size: 1.1rem;
    color: #555;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-header .sub-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--color-green);
}

.contact-details {
    margin-top: 40px;
    line-height: 2;
    font-size: 1.1rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}
.contact-details a:hover {
    color: var(--color-green);
}

.contact-details .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
}

.contact-details i {
    color: #555;
    margin-right: 10px;
}

.google-maps-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
}

/* PUNTO CLAVE: Se ajusta el ancho y se centra el contenedor del mapa */
.google-map-container {
    width: 100%; /* Ahora ocupa el 100% de su padre (.container) */
    margin-top: 80px; /* Espacio para separarlo de la sección verde */
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

.contact-form-container {
    padding: 80px 0; /* Padding para separar el formulario del mapa y el footer */
}

/* El formulario en sí no cambia, pero se le da un contenedor padre */
.contact-form { 
    max-width: 800px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.contact-form .form-group { 
    display: flex; 
    gap: 20px; 
}
.contact-form input, .contact-form textarea { 
    width: 100%; 
    padding: 15px; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
    font-family: var(--font-body); 
    font-size: 1rem; 
}
.contact-form input:focus, .contact-form textarea:focus { 
    outline: none; 
    border-color: var(--color-gold); 
}
.contact-form textarea { 
    height: 150px; 
    resize: vertical; 
}
.contact-form button { 
    align-self: center; 
}


/* ======================================================= */
/* PIE DE PÁGINA                                           */
/* ======================================================= */
.main-footer { 
    background-color: var(--color-black); 
    color: #a0a0a0; 
    padding-top: 60px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    padding-bottom: 40px; 
    border-bottom: 1px solid #444; 
}

.footer-column h4 { 
    color: var(--color-white); 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
}

.footer-column p, .footer-column li { 
    margin-bottom: 10px; 
}

.footer-column i { 
    color: var(--color-gold); 
    margin-right: 10px; 
}

.footer-column ul { 
    list-style: none; 
}

.footer-column a { 
    color: #a0a0a0; 
    text-decoration: none; 
    transition: color 0.3s; 
}

.footer-column a:hover { 
    color: var(--color-gold); 
}

.newsletter-form input { 
    width: 100%; 
    padding: 10px; 
    border: 1px solid #444; 
    background: #333; 
    color: var(--color-white); 
    border-radius: 3px; 
    margin-bottom: 10px; 
}

.newsletter-form button { 
    width: 100%; 
    padding: 10px; 
    background-color: var(--color-gold); 
    color: var(--color-white); 
    border: none; 
    border-radius: 3px; 
    cursor: pointer; 
    transition: background-color 0.3s; 
}

.newsletter-form button:hover { 
    background-color: #d4c16a; 
}

.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 0; 
    font-size: 0.9rem; 
}

.social-links a { 
    color: #a0a0a0; 
    margin-left: 15px; 
    font-size: 1.2rem; 
    transition: color 0.3s; 
}

.social-links a:hover { 
    color: var(--color-gold); 
}


/* ======================================================= */
/* ESTILOS RESPONSIVOS                                     */
/* ======================================================= */
@media (max-width: 768px) {

    .main-nav {
        display: none; 
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
    }
    
    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .main-nav li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #333;
    }
    
    .main-nav li:first-child {
        border-top: 1px solid #333;
    }

    /* PUNTO CLAVE 1: Estilo para todos los enlaces del menú móvil */
    .main-nav a {
        width: 100%;
        padding: 20px;
        justify-content: flex-start;
        height: auto;
        background-color: #2b2b2b; /* Fondo gris oscuro para visibilidad */
        color: var(--color-white); /* Texto blanco por defecto */
    }
    
    .main-nav a::before {
        display: none;
    }
    
    /* PUNTO CLAVE 2: Estilo específico para el enlace activo */
    .main-nav li a.active {
        background-color: #1a1a1a; /* Fondo negro/muy oscuro para el activo */
    }

    .main-nav a.active span {
        color: var(--color-green); /* El texto del activo es verde */
    }

    /* Efecto hover opcional para mejorar la interacción */
    .main-nav a:hover {
        background-color: #3f3f3f; /* Un gris ligeramente más claro al pasar el ratón */
    }
        
    .hamburger-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .text-green {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-quote {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .two-columns { 
        flex-direction: column; 
    }

    .services-grid-alt { 
        grid-template-columns: 1fr; 
    }
    
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .footer-grid { 
        grid-template-columns: 1fr; 
    }


    .social-icons-grid {
        gap: 40px;
    }

    .social-banner-content h2 {
        font-size: 1.8rem;
    }

    .contact-header h2 {
        font-size: 3rem;
    }

    .contact-form .form-group {
        flex-direction: column;
    }
}