/* ===== VARIABLES CSS ===== */
:root {
    /* Colores principales */
    --primary-color: #10b981;
    --primary-light: #34d399;
    --primary-dark: #059669;
    --secondary-color: #fbbf24;
    --accent-color: #f59e0b;
    
    /* Colores neutros */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-warm: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-soft: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);

    /* Tipografía */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espaciado (basado en 8px grid) */
    --spacing-xxs: 4px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-3xl: 96px;
    
    /* Radios de borde */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.04);
}

/* ===== RESET BÁSICO Y ESTILOS GLOBALES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-sm);
}

/* ===== CONTENEDOR GENERAL ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== SECCIONES GENERALES ===== */
.section-padding {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--gray-600);
}

.bg-light {
    background-color: var(--gray-50);
}

.text-center {
    text-align: center;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background-color: var(--gray-300);
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-whatsapp i {
    margin-right: var(--spacing-xs);
}

/* Filter buttons for services section */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-filter {
    background-color: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: var(--gray-200);
    color: var(--gray-900);
}

.btn-filter.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* ===== HEADER Y NAVEGACIÓN ===== */
.header {
    background-color: var(--white);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto; /* Añadido: asegura que el ancho se ajuste proporcionalmente a la altura */
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: var(--spacing-xs) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
        z-index: 99;
    }

    .navbar.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 100%;
        text-align: center;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--spacing-md) 0;
        font-size: 1.3rem;
    }

    .nav-link::after {
        width: 50%;
        left: 25%;
        bottom: 0;
    }
}


/* ===== HERO SECTION ===== */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: var(--spacing-3xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-light);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    color: var(--white);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray-100);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .stat-number {
        font-size: 2rem;
    }
}


/* ===== ABOUT US SECTION ===== */
.about-content {
    display: flex;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-700);
}

.about-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--gray-800);
}

.about-features li i {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 550px;
    height: auto;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-features {
        text-align: left; /* Keep feature list aligned left */
        margin: 0 auto var(--spacing-lg);
        max-width: 400px;
    }
    .about-text .btn {
        margin: 0 auto;
    }
}

/* ===== SERVICES / TECHNIQUES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    justify-content: center; /* Center items if they don't fill the grid */
    align-items: stretch; /* Make cards same height */
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push button to bottom */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    flex-grow: 1; /* Allows description to take available space */
}

.service-card .btn-secondary {
    margin-top: auto; /* Push button to the bottom */
}

.no-results {
    grid-column: 1 / -1; /* Make it span all columns */
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-500);
    padding: var(--spacing-xxl);
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    justify-content: center;
}

.team-member {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    margin: 0 auto var(--spacing-sm);
    border: 4px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-xxs);
    color: var(--primary-dark);
}

.team-member .role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.team-member .description {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    overflow: hidden; /* Hide overflow from slider */
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden; /* Ensures navigation buttons are within bounds if positioned outside */
    padding: 0 var(--spacing-md); /* Add some padding for edge cases */
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden; /* Hide scrollbar for smooth sliding */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    margin-bottom: var(--spacing-md);
    position: relative; /* For navigation buttons */
}

.testimonial-item {
    flex: 0 0 100%; /* Each item takes full width */
    width: 100%;
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    scroll-snap-align: center; /* Snap points for smooth scrolling */
}

.testimonio-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--gray-800);
}

.testimonio-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: var(--spacing-sm);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-700);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 50; /* Ensure buttons are above slider */
}

.slider-nav:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

@media (max-width: 768px) {
    .testimonial-item {
        padding: var(--spacing-md);
    }
    .testimonio-text {
        font-size: 1rem;
    }
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .slider-nav.prev {
        left: 5px;
    }
    .slider-nav.next {
        right: 5px;
    }
}


/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.contact-form-container,
.contact-info-container {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--gray-800);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-700);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); /* primary-color with transparency */
}

.contact-form textarea {
    resize: vertical;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5; /* Green light */
    color: #065f46; /* Green dark */
    border: 1px solid #34d399; /* Primary light */
}

.form-message.error {
    background-color: #fee2e2; /* Red light */
    color: #991b1b; /* Red dark */
    border: 1px solid #ef4444; /* Red original */
}

.contact-info-container .info-row {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--gray-700);
}

.contact-info-container .info-row i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2px; /* Align icon better with text */
}

.contact-info-container .info-row p {
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-info-container .info-row a {
    color: var(--gray-700);
}

.contact-info-container .info-row a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px; /* Fixed height for consistency */
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: var(--spacing-md);
    }
    .contact-form-container h3,
    .contact-info-container h3 {
        font-size: 1.5rem;
    }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.whatsapp-float i {
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-xxl) 0 var(--spacing-md);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.footer-col p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-400);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
    color: var(--gray-400);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social-links a {
    color: var(--gray-400);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-700);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.contact-footer-col .info-row {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-400);
}

.contact-footer-col .info-row i {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-top: 2px;
}

.contact-footer-col .info-row p {
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-footer-col .info-row a {
    color: var(--gray-400);
}

.contact-footer-col .info-row a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--gray-500);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social .social-link {
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-social .social-link:hover {
    color: var(--primary-color);
}

.footer-social .whatsapp:hover {
    color: #25D366; /* WhatsApp brand color */
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul {
        padding-left: 0;
    }

    .footer-social-links {
        justify-content: center;
    }

    .contact-footer-col .info-row {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-social {
        margin-top: var(--spacing-sm);
    }
}

/* ===== ANIMATIONS ===== */
/* Base for hidden state */
.animate-on-scroll:not(.animated) {
    opacity: 0;
}

.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInUp {
    animation-name: slideInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInRight {
    animation-name: slideInRight;
    animation-duration: 1s;
    animation-fill-mode: both;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* PRINT STYLES */
@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black text on white background */
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /* Don't show links that are fragment identifiers, or use the `javascript:` pseudo protocol */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .header,
    .navbar,
    .hero-actions,
    .whatsapp-float,
    .slider-nav,
    .footer-social {
        display: none !important;
    }

    .section-padding {
        padding: 20px 0 !important;
    }

    .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 10px !important;
    }

    .contact-form-container,
    .contact-info-container {
        box-shadow: none !important;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }

    .map-container {
        display: none !important;
    }

    .footer {
        padding: 20px 0 !important;
    }

    .footer-grid {
        display: block !important;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    .footer-bottom {
        text-align: left !important;
    }
}