/* Estilos globales y reset */
* {
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    /* fondo muy oscuro pero no puro negro */
    --surface: #1f2224;
    /* tarjeta / bloques - más gris y menos oscuro */
    --muted-surface: #232526;
    /* superficies ligeramente más oscuras que surface */
    --text: #eaeaea;
    /* texto principal claro */
    --muted-text: #a7b0b6;
    /* texto secundario */
    --gold: #ffd600;
    /* color dorado del logo */
    --red: #d32f2f;
    /* color rojo del logo */
    --accent: #ffd600;
    /* acento primario (usar dorado para botones y enlaces) */
    --accent-strong: #e6c500;
    --danger: #ff6b6b;
    --card-shadow: rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
}

/* Clases de utilidad para Animaciones de Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Botón flotante de llamada */
.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-call-btn i {
    transition: transform 0.3s ease;
}

.floating-call-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 24px rgba(255, 214, 0, 0.3);
    color: var(--bg);
}

.floating-call-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

header {
    background: linear-gradient(180deg, rgba(255, 214, 0, 0.06), transparent), var(--surface);
    color: var(--gold);
    padding: 24px 0 8px 0;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.3em;
}

#header {
    background: var(--surface);
    color: var(--gold);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link {
    display: inline-block;
}

.site-logo {
    height: 52px;
    width: auto;
    display: block;
}

@media (max-width: 600px) {
    .site-logo {
        height: 40px;
    }
}

/* Nav inner: lista a la izquierda, logo a la derecha */
#navbar .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 8px 20px;
}

#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

#navbar ul li a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 12px;
}

.nav-logo {
    height: 48px;
    width: auto;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 800px) {
    .nav-logo {
        height: 36px;
    }

    #navbar .nav-inner {
        padding: 8px 12px;
    }

    #navbar ul {
        gap: 12px;
        position: static;
        transform: none;
        justify-content: center;
    }

    .nav-logo {
        position: static;
        transform: none;
        margin-left: 12px;
    }
}

/* Navbar background and behaviour */
#navbar {
    background: rgba(15, 17, 19, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 24px var(--card-shadow);
    transition: box-shadow 0.3s, background 0.3s;
}

#navbar ul li a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 24px;
    transition: background 0.18s, color 0.18s, transform 0.12s;
    display: inline-block;
}

#navbar ul li a:hover,
#navbar ul li a:focus {
    background: rgba(255, 214, 0, 0.15);
    color: var(--text);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(90deg, rgba(211, 47, 47, 0.10) 0%, rgba(255, 214, 0, 0.06) 100%);
    color: var(--text);
    padding: 64px 20px 48px 20px;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 16px;
    font-weight: 700;
    text-shadow: 0 8px 36px rgba(0, 0, 0, 0.75);
}

.hero {
    /* Fondo igual al del logo (negro) */
    background: rgba(26, 26, 26, 1);
    color: var(--text);
    padding: 64px 20px 48px 20px;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: none;
}

.hero-logo {
    display: block;
    margin: 0 auto 18px;
    height: 96px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .hero-logo {
        height: 64px;
        margin-bottom: 12px;
    }
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: stretch;
    margin: 40px 0;
}

.services-preview h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    color: var(--gold);
    grid-column: 1 / -1;
    /* que ocupe toda la fila del grid */
}

/* En pantallas de escritorio forzamos que el título no haga wrap */
@media (min-width: 900px) {
    .services-preview h2 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.services-preview ul {
    display: none;
}

.service-card {
    background: linear-gradient(145deg, var(--surface), var(--muted-surface));
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--card-shadow);
    padding: 24px 16px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 214, 0, 0.1), 0 0 15px rgba(255, 214, 0, 0.05);
    border-color: rgba(255, 214, 0, 0.2);
}

.service-card h3 {
    color: var(--gold);
    margin: 0;
    font-size: 1.15em;
}

.service-icon {
    color: var(--red);
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    stroke: var(--red);
    transition: transform 0.4s ease, stroke 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    stroke: var(--gold);
}

/* En pantallas muy grandes mostramos hasta 5 columnas */
@media (min-width: 1400px) {
    .services-preview {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1000px) and (max-width: 1399px) {
    .services-preview {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    .services-preview {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card p {
    color: var(--muted-text);
    font-size: 1em;
    margin: 0;
}

/* ========================================= */
/* Carousel / Gallery */
/* ========================================= */
.gallery-preview {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.gallery-preview h2 {
    color: var(--gold);
    margin-bottom: 24px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--surface);
    box-shadow: 0 10px 32px var(--card-shadow);
    padding: 12px;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    border-radius: 12px;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(33.333% - 10.66px);
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.carousel-slide:hover img {
    transform: scale(1.03);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold);
    border: 2px solid rgba(255, 214, 0, 0.4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
}

.prev-btn { left: 24px; }
.next-btn { right: 24px; }

@media (max-width: 600px) {
    .prev-btn { left: 16px; width: 40px; height: 40px; font-size: 1rem; }
    .next-btn { right: 16px; width: 40px; height: 40px; font-size: 1rem; }
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ========================================= */
/* About Us */
/* ========================================= */
.about-preview {
    background: linear-gradient(180deg, rgba(211, 47, 47, 0.02), var(--muted-surface));
    margin: 40px auto;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 32px var(--card-shadow);
    max-width: 700px;
    text-align: center;
}

.about-preview h2 {
    color: var(--gold);
    margin-bottom: 16px;
}

/* Sección destacada para teléfono (Call To Action) */
/* Sección destacada para teléfono (Call To Action) - Estilos reutilizados dentro de contacto */
/* .call-cta eliminada como sección independiente */

.call-cta-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.call-cta-text {
    color: var(--text);
    margin: 0;
    font-weight: 600;
}

.call-cta-sub {
    color: var(--muted-text);
    margin: 6px 0 0 0;
    font-size: 0.95em;
}

.call-button {
    display: inline-block;
    margin-top: 8px;
    background: var(--gold);
    color: var(--surface);
    padding: 12px 20px;
    border-radius: 28px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
    transition: transform 0.12s, box-shadow 0.12s;
}

.call-button:hover,
.call-button:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
    background: var(--red);
    color: var(--text);
}

@media (max-width: 600px) {
    .call-cta-inner {
        flex-direction: column;
        padding: 0 6px;
    }

    .call-button {
        width: 100%;
        box-sizing: border-box;
    }
}


.contact-form {
    background: linear-gradient(180deg, rgba(211, 47, 47, 0.02), var(--muted-surface));
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 32px var(--card-shadow);
    max-width: 700px;
    margin: 40px auto;
}

.contact-form h2 {
    color: var(--gold);
    margin-bottom: 16px;
    text-align: center;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    transition: border 0.12s, box-shadow 0.12s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid var(--red);
    outline: none;
    box-shadow: 0 8px 28px rgba(211, 47, 47, 0.12);
}

.contact-form button {
    background: var(--gold);
    color: var(--surface);
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.12s, transform 0.12s;
    margin: 0 auto;
    display: block;
}

.contact-form button:hover {
    background: var(--accent-strong);
    transform: translateY(-3px);
}

/* Estilos para iframe embebido (Google Maps) dentro de la sección de contacto */
.map-embed {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 32px var(--card-shadow);
}

.responsive-iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 400px;
    border: 0;
}

footer {
    background: var(--surface);
    color: var(--text);
    text-align: center;
    padding: 24px 0;
    margin-top: 48px;
    border-radius: 0 0 16px 16px;
    font-size: 1em;
    letter-spacing: 1px;
    box-shadow: 0 -12px 36px var(--card-shadow);
}

.footer-social .fab {
    color: var(--accent);
}

/* ========================================= */
/* Legal Content & Footer Links */
/* ========================================= */
.legal-links {
    margin-top: 12px;
    font-size: 0.85em;
}

.legal-links a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.2s ease;
    margin: 0 4px;
}

.legal-links a:hover {
    color: var(--gold);
}

.legal-content {
    background: var(--surface);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 32px var(--card-shadow);
    max-width: 900px;
    margin: 60px auto;
    color: var(--text);
    line-height: 1.6;
}

.legal-content h1 {
    color: var(--gold);
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 214, 0, 0.2);
    padding-bottom: 12px;
}

.legal-content h2 {
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.4em;
}

.legal-content p, .legal-content ul {
    margin-bottom: 16px;
    color: var(--muted-text);
}

.legal-content ul {
    padding-left: 24px;
}

.legal-content a {
    color: var(--gold);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        margin: 30px 16px;
        padding: 24px 16px;
    }
}

/* ========================================= */
/* Cookie Banner */
/* ========================================= */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 19, 0.95);
    color: var(--text);
    padding: 16px 24px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 9999;
    backdrop-filter: blur(8px);
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9em;
    color: var(--muted-text);
    max-width: 800px;
}

.cookie-banner a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--gold);
    color: var(--bg);
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--accent-strong);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }
}

/* ========================================= */
/* Responsive */
/* ========================================= */
@media (max-width: 900px) {
    .services-preview {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        min-height: auto;
        padding: 20px 16px;
    }

    .about-preview,
    .contact-form {
        max-width: 95%;
    }

    .responsive-iframe {
        height: 40vh;
        /* menor altura en pantallas pequeñas */
    }

    /* Mobile-specific fixes: keep desktop styles untouched */
    /* Make navbar flexible/wrapping so logo doesn't push menu off-screen */
    #navbar .nav-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 8px 12px;
    }

    #navbar ul {
        width: 100%;
        justify-content: center;
        padding: 6px 0;
        order: 1;
        flex-wrap: wrap; /* Ensure menu items wrap on tablets */
        gap: 12px;
    }

    .nav-logo {
        order: 2;
        margin: 6px auto 0 auto;
        height: 36px;
    }

    /* Adjust hero on small screens so it doesn't get cut (use auto height) */
    .hero {
        padding: 32px 12px 24px 12px;
        min-height: auto;
    }

    /* Make navbar and hero span full viewport width on mobile devices */
    #navbar {
        width: 100%;
        left: 0;
        right: 0;
    }

    #navbar .nav-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
        box-sizing: border-box;
    }

    .hero {
        width: 100%;
        margin: 0 auto;
        border-radius: 0 0 16px 16px;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 32px 8px 24px 8px;
        border-radius: 0 0 16px 16px;
    }

    .service-card {
        padding: 20px 12px;
    }

    nav ul {
        gap: 8px;
    }
}

/* Target very small screens (phones) with a conservative full-bleed fix */
@media (max-width: 480px) {

    /* Make the hero stretch edge-to-edge without affecting desktop */
    /* Removed problematic full-bleed hack to fix horizontal scroll */
    .hero {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        box-sizing: border-box;
        margin: 0;
    }

    .hero h1 {
        font-size: 1.8em; /* Further reduce font size for very small screens */
        padding: 0 10px;
    }

    /* Ensure navbar content uses safe-area and full width */
    #navbar,
    #navbar .nav-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
        box-sizing: border-box;
    }

    /* Better spacing for nav items on small screens */
    #navbar ul {
        gap: 6px;
        flex-wrap: wrap;
    }

    #navbar ul li a {
        padding: 6px 8px;
        font-size: 0.85em;
        letter-spacing: -0.2px;
    }

    .floating-call-btn {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}

/* ========================================= */
/* Lightbox Modal */
/* ========================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--text);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

.carousel-slide img {
    cursor: pointer;
}

/* ========================================= */
/* Google Reviews */
/* ========================================= */
.reviews-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.reviews-section h2 {
    color: var(--gold);
    margin-bottom: 32px;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    margin-bottom: 0;
}

.summary-stars {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.summary-text {
    color: var(--muted-text);
    font-size: 1rem;
    text-align: center;
}
.summary-text strong {
    color: var(--text);
}

.reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 24px; /* Space for scrollbar and shadow */
    scroll-snap-type: x mandatory;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 214, 0, 0.5) transparent;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}
.reviews-grid::-webkit-scrollbar-track {
    background: transparent;
}
.reviews-grid::-webkit-scrollbar-thumb {
    background-color: rgba(255, 214, 0, 0.5);
    border-radius: 20px;
}

.review-card {
    flex: 0 0 340px; /* Fixed width for horizontal scroll */
    scroll-snap-align: center;
    background: linear-gradient(145deg, var(--surface), var(--muted-surface));
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 8px 24px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 85vw; /* Slightly narrower on mobile so next card peeks */
        scroll-snap-align: start;
    }
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 214, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info .author-name {
    margin: 0 0 4px 0;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
}

.review-date {
    font-size: 0.85rem;
    color: var(--muted-text);
}

.google-icon {
    font-size: 1.5rem;
    color: #4285F4;
}

.review-stars {
    display: flex;
    margin-bottom: 12px;
    gap: 2px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBC05;
}

.review-text {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}