/* ===== Variables & Theme ===== */
:root {
    --primary-color: #dd6956; /* Exact Coral requested */
    --primary-dark: #b84c3c; /* Darker variant for hover */
    --primary-light: #f9ebe9;
    --bg-color: #f4f3ef; /* Warm off-white/beige */
    --text-main: #1c2122;
    --text-muted: #424d4f; /* Darkened for better contrast */
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    --font-main: 'Manrope', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

.section {
    padding: 8rem 0; /* Generous spacing F.R.A.M.E. */
}

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

.text-center {
    text-align: center;
}

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h1 span {
    color: var(--primary-color);
}

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

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: var(--font-main);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-main);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===== Components ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
}

.brand i {
    color: var(--primary-color);
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a:not(.btn) {
    font-weight: 600;
    padding: 0.5rem 0;
    color: var(--text-main);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(221,105,86,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.hero-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-location-link:hover {
    color: var(--primary-color);
}

.hero-location-link .arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.hero-location-link:hover .arrow {
    transform: translateX(4px);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-main {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    z-index: 2;
}

.glow-orb {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary-light), var(--primary-color), var(--primary-light));
    opacity: 0.3;
    animation: spin 10s linear infinite;
    z-index: -1;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.hero-icon-large {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.badge-top {
    top: 10%;
    left: 5%;
}

.badge-bottom {
    bottom: 15%;
    right: 5%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Trust Strip ===== */
.trust-strip {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9375rem;
}

.trust-item i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== Services Section ===== */
.section-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(221, 105, 86, 0.05);
    line-height: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ===== Evaluation Section ===== */
.evaluation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.evaluation-visual-wrapper {
    position: relative;
}

.evaluation-graphics {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white), var(--primary-light));
}

.eye-graphic-animated {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.eye-graphic-animated i {
    width: 40px;
    height: 40px;
}

.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: scan 2s linear infinite alternate;
}

@keyframes scan {
    0% { top: 10%; }
    100% { top: 90%; }
}

.evaluation-note {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 250px;
}

.evaluation-note i {
    color: #10b981; /* green */
    flex-shrink: 0;
}

.evaluation-note p {
    font-size: 0.875rem;
    line-height: 1.4;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-list i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ===== Location Section ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.hours-card {
    padding: 2rem;
    background: var(--white);
}

.hours-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-header i {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
}

.hours-header .subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.closed-day strong {
    color: #ef4444; /* red */
}

/* ===== Contact Section ===== */
.contact-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    text-align: left;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    width: 28px;
    height: 28px;
}

.contact-card small {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-card strong {
    font-size: 1.125rem;
    color: var(--text-main);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--primary-light);
}

.footer-brand-col p {
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background: var(--primary-color);
}

.footer-links-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links-col a, .footer-links-col p {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.footer-links-col a:hover {
    color: var(--white);
}

.link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ===== Floating Action Button ===== */
.fab-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: transform var(--transition-fast);
}

.fab-whatsapp:hover {
    transform: scale(1.1);
}

.fab-whatsapp i {
    width: 32px;
    height: 32px;
}

/* ===== Brand Logo ===== */
.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* ===== Hero Showcase (CSS-only visual) ===== */
.hero-showcase {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(221, 105, 86, 0.15);
}

.ring-outer {
    width: 100%;
    height: 100%;
    animation: spin 20s linear infinite;
    border-style: dashed;
}

.ring-inner {
    width: 75%;
    height: 75%;
    animation: spin 14s linear infinite reverse;
    border-color: rgba(221, 105, 86, 0.25);
}

.showcase-core {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(221, 105, 86, 0.35), 0 0 120px rgba(221, 105, 86, 0.15);
    z-index: 3;
}

.showcase-icon {
    width: 56px;
    height: 56px;
    color: white;
}

.showcase-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
}

.p1 { top: 10%; left: 20%; animation: drift 5s ease-in-out infinite; }
.p2 { top: 25%; right: 10%; animation: drift 7s ease-in-out infinite 1s; }
.p3 { bottom: 15%; left: 10%; animation: drift 6s ease-in-out infinite 2s; }
.p4 { bottom: 30%; right: 20%; animation: drift 8s ease-in-out infinite 0.5s; }
.p5 { top: 50%; left: 5%; animation: drift 5.5s ease-in-out infinite 1.5s; width: 6px; height: 6px; opacity: 0.3; }

@keyframes drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    25% { transform: translate(10px, -15px); opacity: 0.8; }
    50% { transform: translate(-5px, -25px); opacity: 0.3; }
    75% { transform: translate(15px, -10px); opacity: 0.6; }
}

/* ===== About Section (Nosotros) ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.point-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--primary-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-point p {
    margin-top: 0.25rem;
}

/* About Showcase Card */
.about-showcase {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-showcase-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    z-index: 0;
}

.about-showcase-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(221, 105, 86, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.about-showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-showcase-icon {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 20px rgba(221, 105, 86, 0.5));
}

.about-showcase-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.about-showcase-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 105, 86, 0.4), transparent 70%);
    z-index: 1;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* ===== Animations F.R.A.M.E. ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pingPongFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.ping-pong-float {
    animation: pingPongFloat 6s ease-in-out infinite;
}

/* ===== Media Queries ===== */
@media (min-width: 768px) {
    h1 { font-size: 4.5rem; }
    h2 { font-size: 3rem; }
    
    .desktop-nav { display: flex; }
    .mobile-menu-btn { display: none; }
    
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: row; }
    
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    
    .evaluation-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
    
    .about-grid { grid-template-columns: 1fr 1fr; }
    
    .location-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
    
    .contact-methods { grid-template-columns: 1fr 1fr; }
    
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    
    .hero-showcase { width: 380px; height: 380px; }
    .showcase-core { width: 160px; height: 160px; }
    .showcase-icon { width: 64px; height: 64px; }
    
    .about-showcase-text { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-showcase { width: 420px; height: 420px; }
}

/* ===== F.R.A.M.E. v2.0 Assets Integration ===== */

/* Utilities */
.p-8 { padding: 2rem !important; }
.text-white { color: var(--white) !important; }
.text-light-muted { color: rgba(255, 255, 255, 0.8) !important; margin-bottom: 2rem; }
.relative-z { position: relative; z-index: 2; }
.eyebrow-light { background: rgba(255, 255, 255, 0.1); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.2); }

.dark-glass {
    background: rgba(28, 33, 34, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Images & Overlays */
.image-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.absolute-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(28, 33, 34, 0.8), transparent);
    z-index: 2;
    padding: 2rem;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28, 33, 34, 0.95) 0%, rgba(28, 33, 34, 0.6) 100%);
    z-index: 1;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(221, 105, 86, 0.2);
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-video-wrapper { width: 380px; height: 380px; }
}

@media (min-width: 1024px) {
    .hero-video-wrapper { width: 420px; height: 420px; }
}

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

.video-glow {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(221, 105, 86, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

/* Refraction Effects */
.refraction-img {
    mix-blend-mode: normal;
}

.prism-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(221, 105, 86, 0.4) 0%, rgba(245, 158, 11, 0.2) 50%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    mix-blend-mode: screen;
    animation: drift 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.about-glow {
    top: 20%;
    right: -20%;
    width: 250px;
    height: 250px;
}

.btn-cta-glow {
    box-shadow: 0 0 20px rgba(221, 105, 86, 0.4);
}
.btn-cta-glow:hover {
    box-shadow: 0 0 30px rgba(221, 105, 86, 0.6);
}

/* ===== Testimonials Section (Carousel) ===== */
.testimonials-marquee-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
    position: relative;
    background: var(--primary-light);
}

.contact-card > div {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.testimonials-marquee {
    display: flex;
    width: fit-content;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    gap: 2rem;
    padding-right: 2rem;
    animation: scroll-x 80s linear infinite;
}

.testimonials-marquee:hover .marquee-group {
    animation-play-state: paused;
}

@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b; /* Amber/Gold */
}

.stars i {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    flex-grow: 1;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong {
    display: block;
    color: var(--text-main);
    line-height: 1.2;
}

.testimonial-author small {
    color: var(--text-muted);
    font-size: 0.8rem;
}
