/* --- CSS Variables --- */
:root {
    /* Brand Colors (based on RM Operaciones logo) */
    --color-primary-dark: #004d2b; /* Dark Green */
    --color-primary-light: #2ebd4e; /* Vibrant Leaf Green */
    --color-accent: #f2f9f5; /* Very light green tint for backgrounds */
    
    /* Neutral Colors */
    --color-text-main: #1a202c;
    --color-text-muted: #4a5568;
    --color-bg-light: #f8fafc;
    --color-white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(46, 189, 78, 0.15);
    color: var(--color-primary-dark);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(46, 189, 78, 0.39);
}

.btn-primary:hover {
    background-color: #25a041;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 189, 78, 0.23);
    color: var(--color-white);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-block {
    width: 100%;
}

.btn i {
    margin-left: 0.5rem;
}

/* --- Header & Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px; /* Adjust based on actual logo */
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-light);
    transition: var(--transition-fast);
}

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

.nav-link.btn-contact {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
}

.nav-link.btn-contact::after {
    display: none;
}

.nav-link.btn-contact:hover {
    background-color: #00361e;
    color: var(--color-white);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary-dark);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* --- Trust Bar --- */
.trust-bar {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 2rem 0;
    text-align: center;
}

.trust-bar p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.trust-logo {
    height: 40px; /* Ajusta este valor para cambiar el tamaño de los logos */
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%); /* Hace los logos blancos/grises claros */
    opacity: 0.7;
    transition: var(--transition-fast);
}

.trust-logo:hover {
    filter: grayscale(0%) brightness(100%); /* Muestra los colores originales al pasar el mouse */
    opacity: 1;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-img-wrapper {
    position: relative;
    height: 200px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: carouselFade 10s infinite;
    transition: transform 0.5s ease;
}

.carousel-img:nth-child(1) {
    animation-delay: 0s;
}

.carousel-img:nth-child(2) {
    animation-delay: 5s;
}

@keyframes carouselFade {
    0% { opacity: 0; }
    20% { opacity: 1; }
    50% { opacity: 1; }
    70% { opacity: 0; }
    100% { opacity: 0; }
}

.service-card:hover .carousel-img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-white);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    font-weight: 500;
}

.service-features i {
    color: var(--color-primary-light);
}

/* --- About --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.benefit-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.image-stack {
    position: relative;
}

.img-front {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 4px solid var(--color-white);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary-light);
}

.experience-badge .text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

/* --- Contact (Redesigned) --- */
.contact {
    background: linear-gradient(135deg, #f0faf4 0%, #e8f5ee 50%, #f8fffe 100%);
    color: var(--color-text-main);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.contact-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.deco-blob {
    position: absolute;
    width: 500px;
    height: 500px;
}

.deco-blob-1 {
    top: -100px;
    right: -100px;
    animation: blobFloat 12s ease-in-out infinite;
}

.deco-blob-2 {
    bottom: -150px;
    left: -100px;
    animation: blobFloat 16s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.04); }
}

/* Contact header */
.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    position: relative;
    z-index: 1;
}

.badge-light {
    background-color: rgba(0, 77, 43, 0.1);
    color: var(--color-primary-dark);
}

.contact-main-title {
    font-size: 2.6rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-main-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Grid layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Info Panel */
.contact-panel-info {
    background: var(--color-primary-dark);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 77, 43, 0.25);
}

.contact-panel-inner {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-panel-inner::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(46,189,78,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.panel-title {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.panel-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--color-primary-light);
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(46,189,78,0.4);
    transform: translateX(4px);
    color: var(--color-white);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(46,189,78,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary-light);
    transition: background 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: rgba(46,189,78,0.35);
}

.contact-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-card-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-card-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
}

.contact-card-arrow {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

/* WhatsApp card special style */
.contact-card-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card-whatsapp:hover {
    background: rgba(37, 211, 102, 0.22);
    border-color: rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.2) !important;
    color: #25D366 !important;
}

.contact-card-whatsapp:hover .whatsapp-icon {
    background: rgba(37, 211, 102, 0.4) !important;
}

/* Hours indicator */
.contact-hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.hours-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25D366;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulse-green 2s infinite;
}

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

.contact-hours p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.contact-hours strong {
    color: var(--color-white);
}

/* Right Form Panel */
.contact-panel-form {
    position: relative;
}

.form-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-card-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #006b3c 100%);
    padding: 2rem 2.5rem;
}

.form-card-header h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.form-card-header p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.contact-form {
    padding: 2rem 2.5rem 2.5rem;
    color: var(--color-text-main);
}

/* Form row (2 columns) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-group label i {
    color: var(--color-primary-light);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: #f8fafc;
    color: var(--color-text-main);
}

.form-group textarea {
    resize: none;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(46, 189, 78, 0.12);
    background-color: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

/* Custom select wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.select-wrapper:focus-within .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-primary-light);
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-submit i {
    font-size: 1.3rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    30%, 100% { left: 150%; }
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #a0aec0;
}

.form-privacy i {
    color: var(--color-primary-light);
    font-size: 0.75rem;
}

.form-status {
    margin-top: 0.75rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
    background-color: #0b1116; /* Very dark background */
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0 0;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Make logo white for dark footer if needed */
}

.footer-brand p {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul a {
    transition: var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-badge {
        left: 0;
        bottom: 0;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel-inner {
        padding: 2.5rem 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem 2rem;
    }

    .form-card-header {
        padding: 1.5rem 1.5rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-main-title {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1.5rem 1.25rem;
    }

    .form-card-header {
        padding: 1.25rem;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.3s ease-in-out;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-overlay {
        background: rgba(255,255,255,0.85); /* More opaque for readability */
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-logos {
        gap: 1.5rem;
    }
    
    .trust-logo {
        height: 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 1.5rem auto;
    }
    
    .social-links {
        justify-content: center;
    }
}
