/* Reset and Variables */
:root {
    /* Fondo Claro Default (Light Mode) */
    --bg-color: #f5f5f7;
    --text-color: #ffffff; 
    --text-shadow-glass: 0px 2px 4px rgba(0,0,0,0.5);
    
    /* Liquid Glass default (Light) */
    --liquid-bg: rgba(255, 255, 255, 0.15);
    --liquid-border: rgba(255, 255, 255, 0.3);
    
    font-family: 'Inter', sans-serif;
}

/* Dark Theme */
body.dark-theme {
    --bg-color: #121212;
    --liquid-bg: rgba(0, 0, 0, 0.3);
    --liquid-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.8s ease-in-out;
}

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

/* Canvas Background */
#hero-lightpass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    background-color: #000;
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
    /* Liquid Glass Navbar */
    background: var(--liquid-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--liquid-border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* Logo CSS Ajustado: Destaca más sin romper el menú */
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 60px; /* Tamaño considerablemente mayor */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen; /* Elimina fondo negro */
    margin: -10px 0; /* Margen negativo para absorber altura extra sin romper el pad del navbar */
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
}

body.dark-theme .nav-links a {
    text-shadow: 0px 4px 8px rgba(0,0,0,0.8); /* Fuerte pero ajustado al tema oscuro */
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.nav-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.control-btn {
    background: var(--liquid-bg);
    border: 1px solid var(--liquid-border);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: var(--text-shadow-glass);
}

.control-btn:hover {
    transform: scale(1.1);
}

/* Global Section Styling */
main {
    position: relative;
    z-index: 1;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Liquid Glass (iOS Style) */
.liquid-panel, .liquid-glass {
    background: var(--liquid-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--liquid-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.liquid-panel {
    padding: 3rem;
}

.liquid-panel h1, .liquid-panel h2, .liquid-panel h3, .liquid-panel p {
    color: var(--text-color);
    text-shadow: var(--text-shadow-glass);
}

/* Hero Section */
.hero-section {
    align-items: center;
    text-align: center;
    margin-bottom: 50vh; 
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 8px 20px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: #fff;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255,255,255,0.4);
    background: #f0f0f0;
}

/* About Section */
.about-section {
    margin-bottom: 30vh;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-section p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    margin-bottom: 10vh;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
    color: var(--text-color);
    text-shadow: var(--text-shadow-glass);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
}

.liquid-panel:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
}

/* --- Portfolio Slider 3D Coverflow --- */
.portfolio-section {
    margin-bottom: 10vh;
}

.slider-container {
    position: relative;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.slide-wrapper {
    position: absolute;
    height: 100%;
    max-height: 70vh;
    aspect-ratio: 9 / 16;
    padding: 10px;
    background: var(--liquid-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--liquid-border);
    border-radius: 28px;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.6) rotateY(0deg);
    z-index: 1;
    cursor: pointer;
}

.slide-wrapper.active {
    opacity: 1;
    z-index: 10;
    transform: translateX(0) scale(1) rotateY(0);
    pointer-events: auto;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    cursor: default;
}

.slide-wrapper.prev {
    opacity: 0.8;
    z-index: 5;
    transform: translateX(-110%) scale(0.85) rotateY(15deg);
    pointer-events: auto;
}

.slide-wrapper.next {
    opacity: 0.8;
    z-index: 5;
    transform: translateX(110%) scale(0.85) rotateY(-15deg);
    pointer-events: auto;
}

.slide-wrapper.prev-2 {
    opacity: 0.3;
    z-index: 4;
    transform: translateX(-200%) scale(0.7) rotateY(25deg);
}

.slide-wrapper.next-2 {
    opacity: 0.3;
    z-index: 4;
    transform: translateX(200%) scale(0.7) rotateY(-25deg);
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    pointer-events: none; /* Let the wrapper handle clicks */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--liquid-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--liquid-border);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 20;
    text-shadow: var(--text-shadow-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.slider-arrow.prev { left: 2.5rem; }
.slider-arrow.next { right: 2.5rem; }
.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.02);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    z-index: 20;
}

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

.dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 5px rgba(255,255,255,0.8);
}

/* --- Contact Form Minimalist Redesign --- */
.contact-section {
    margin-bottom: 10vh;
}

.contact-panel {
    max-width: 700px; /* narrowed slightly for better proportion */
    margin: 0 auto;
    width: 100%;
    padding: 4rem 3rem; /* Más aire y padding */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Más espaciado entre campos */
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Campos Minimalistas sin bordes superiores ni laterales */
.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.05); /* Liquid glass aún más sutil */
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px 8px 0 0; /* Ligero en la parte superior, plano donde corta el borde */
    padding: 1.5rem 1rem 1rem 1rem;
    color: #ffffff; 
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    text-shadow: var(--text-shadow-glass); 
}

/* Placeholder styles */
.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: none;
}

/* Reacción al modo oscuro */
body.dark-theme .form-group input, 
body.dark-theme .form-group textarea {
    background: rgba(0, 0, 0, 0.2); 
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* Glow Effect Premium en Focus */
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.5); /* glow diurno / blanco */
}
body.dark-theme .form-group input:focus, 
body.dark-theme .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(100, 200, 255, 0.8);
    box-shadow: 0 10px 20px -10px rgba(100, 200, 255, 0.4); /* glow nocturno azulado/tech */
}

/* Boton Enviar Rediseñado */
.submit-button {
    margin-top: 1rem;
    padding: 1.2rem;
    /* Degradado sutil premium */
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(200,200,200,0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Hover de alto impacto con animación scale(1.02) */
.submit-button:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

body.dark-theme .submit-button {
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
body.dark-theme .submit-button:hover {
    box-shadow: 0 12px 30px rgba(100, 200, 255, 0.3); /* Glow que armoniza con el input focus */
}


/* Footer */
.footer {
    padding: 2rem 1rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    mix-blend-mode: screen; 
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

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

.social-icon-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    transition: transform 0.3s ease;
}

.social-icon-link span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    text-shadow: var(--text-shadow-glass);
    opacity: 0.8;
}

.social-icon-link:hover .social-icon {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.6));
}

.social-icon-link:hover span {
    opacity: 1;
    color: #fff;
}

.contact-email {
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 5px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-top: 1rem;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.copyright {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0d0d0d;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.progress-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    border-radius: 2px;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.1s linear;
}

#progress-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
}

#loading-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.loading {
    overflow: hidden;
}

/* --- CGI Reel Section --- */
.cgi-section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20vh;
    background: transparent;
}

.cgi-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cgi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.cgi-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.cgi-card {
    display: inline-block;
}

.cgi-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cgi-card p {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    .hamburger-menu {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .liquid-panel {
        padding: 2rem;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
}

/* --- Mobile Menu Overlay --- */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(-100%);
    background: var(--liquid-bg);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid var(--liquid-border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

#close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--liquid-border);
    font-size: 1.5rem;
    color: var(--text-color);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: var(--text-shadow-glass);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
    transform: scale(1.1);
}

/* Animations for Scroll Indicator */
@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}
@keyframes bounceFade {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Responsive Vertical Video Container with Liquid Glass Aesthetic */
.vertical-video-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 1.5rem auto;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    /* Liquid Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

body.dark-theme .vertical-video-container {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.vertical-video-container:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.cgi-video-native {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom Video Controls styling */
.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.vertical-video-container:hover .video-controls {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
}

.video-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-btn:active {
    transform: scale(0.95);
}


/* --- Testimonials Section --- */
.testimonials-section {
    margin-bottom: 20vh;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--liquid-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.user-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    color: #4c8bf5; /* Google/Facebook Blue */
    font-size: 0.9rem;
}

.stars-rating {
    display: flex;
    gap: 2px;
    color: #ffb400; /* Star Gold */
    font-size: 1rem;
    margin-top: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: auto;
}

/* Hover effect specific to testimonial cards */
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-theme .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

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