/* Base Reset & Variables */
:root {
    --primary-color: #2b6cb0;
    /* Calming ocean blue */
    --primary-light: #63b3ed;
    /* Soft sky blue */
    --primary-dark: #2c5282;
    /* Deep navy blue */
    --secondary-color: #e2e8f0;
    /* Cool light gray/blue */
    --accent-color: #4299e1;
    /* Bright blue accent */
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    /* Very light blue-tinted background */
    --bg-white: #ffffff;
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
}

/* Offset for fixed navbar anchor jumps */
section[id] {
    scroll-margin-top: 95px;
}

@media screen and (max-width: 768px) {
    section[id] {
        scroll-margin-top: 195px; /* Account for taller mobile header */
    }
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-primary {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0eee5 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--secondary-color);
    border-radius: 20px 100px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: white;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(45deg);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Wave Divider */
.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.hero-shape-divider .shape-fill {
    fill: var(--bg-white);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Esquina inferior derecha */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Verde oficial de WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-float-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background-color: white;
    /* Changed to white to blend with EVA icon */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    /* Ensure image doesn't overflow */
}

.chatbot-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    /* Makes white background transparent */
}

.chatbot-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Tooltip */
.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-family: var(--font-body);
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

/* Show tooltip briefly on load via JS, or when hovered */
.tooltip.show-tooltip::before,
.tooltip.show-tooltip::after,
.chatbot-button:hover::before,
.chatbot-button:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.chatbot-window.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.chatbot-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.chatbot-agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.chatbot-agent-info img {
    background: white;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-messages {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f9f9f9;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message.bot {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.user {
    background-color: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
    background: white;
}

.chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    font-family: var(--font-body);
}

.chatbot-input button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
    transition: var(--transition);
}

.chatbot-input button:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}


/* General Section Styles */
.section-padding {
    padding: 65px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0eee5;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-list {
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Section */
.contact {
    background-color: var(--bg-white);
}

.contact-card {
    background-color: var(--bg-light);
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    box-shadow: var(--shadow-soft);
}

.contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h3,
.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: white;
    transition: var(--transition);
}

.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(92, 129, 114, 0.2);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

footer .logo {
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 900px) {

    .hero-container,
    .about-container,
    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-card {
        padding: 35px 20px;
    }
    
    .location-item {
        gap: 8px;
    }
    
    .location-item p {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .image-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-list li,
    .contact-item {
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* Hide the hamburger button completely */
    .hamburger {
        display: none !important;
    }

    /* Shrink logo size slightly to save vertical space on mobile */
    .logo {
        font-size: 1.25rem !important;
    }

    /* Make the nav container stack vertically: Logo on top, links below */
    .nav-container {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        padding: 6px 0;
    }

    /* Display links directly in a centered row wrapping neatly */
    .nav-links {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 10px;
        width: 100%;
        padding: 0;
        margin: 0;
        box-shadow: none;
        position: static;
        background-color: transparent;
        border-top: none;
    }
    
    .nav-links li {
        width: auto;
        margin: 0;
        text-align: center;
    }
    
    .nav-links a {
        display: inline-block;
        width: auto;
        padding: 4px 6px;
        font-size: 0.8rem; /* Slightly smaller to fit neatly on mobile screens */
    }

    /* Style the CTA button in the menu on mobile */
    .nav-links .btn {
        font-size: 0.78rem;
        padding: 5px 10px;
        border-radius: 20px;
    }

    .chatbot-window {
        width: 300px;
        right: -10px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .hero {
        padding: 195px 0 35px;
    }

    .checklist-section {
        padding: 40px 0;
    }
}

/* --- New Sections Styles --- */

/* Checklist Section */
.checklist-section {
    background-color: var(--bg-light);
    padding: 55px 0;
    border-top: 1px solid #f0eee5;
    border-bottom: 1px solid #f0eee5;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border-left: 4px solid var(--primary-color);
}

.checklist-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.checklist-item p {
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Complementary Services Section */
.comp-services {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.comp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.comp-service-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0eee5;
    transition: var(--transition);
}

.comp-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.comp-service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(43, 108, 176, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.step-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid #f0eee5;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -50px auto 20px;
    box-shadow: 0 4px 10px rgba(43,108,176, 0.3);
    border: 4px solid var(--bg-white);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #f0eee5;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    outline: none;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-white);
}

.faq-answer-content {
    padding: 20px 25px;
    border-top: 1px solid #f0eee5;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.faq-item.active {
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Allows smooth expansion */
}

/* Locations List Styling */
.locations-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.location-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

.location-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.location-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Media Queries adjustment for new grids */
@media screen and (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .comp-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 60px;
    }
}

/* --- Sub-pages / Location Custom Styles --- */
.location-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 10px rgba(43, 108, 176, 0.25);
}

.location-map-section {
    background-color: var(--bg-white);
    border-top: 1px solid #f0eee5;
    border-bottom: 1px solid #f0eee5;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.location-info-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0eee5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-iframe-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 450px;
    border: 1px solid #f0eee5;
}

@media screen and (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-iframe-container {
        height: 350px;
    }
    
    .location-info-card {
        padding: 30px 20px;
    }
}

/* Service Details Grid Responsiveness */
.services-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media screen and (max-width: 768px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Locations Grid Responsiveness */
.contact-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

@media screen and (max-width: 768px) {
    .contact-locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Avoid side scroll inside maps on small screens */
    .contact-locations-grid > div:last-child {
        height: 300px !important;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0eee5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.testimonial-card h3,
.testimonial-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f6ad55;
    font-size: 0.9rem;
    margin-top: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}