/* ===========================
   EN SINTONÍA CON MONIQUE
   Premium Wellness Website v2
   Professional Redesign
   =========================== */

/* --- CSS Custom Properties --- */
:root {
    --gold: #C9A87C;
    --gold-light: #DFC9A6;
    --gold-dark: #B08D60;
    --gold-glow: rgba(201, 168, 124, 0.25);
    --navy: #1A2744;
    --navy-light: #253559;
    --navy-lighter: #36486E;
    --cream: #FDFAF5;
    --cream-dark: #F8F3EC;
    --cream-mid: #EFE8DD;
    --warm-white: #FFFDF9;
    --text-dark: #1C1F2A;
    --text-body: #525566;
    --text-light: #8A8D9E;
    --text-muted: #B0B3C2;
    --white: #ffffff;
    --whatsapp: #25D366;
    --spotify: #1DB954;
    --tiktok: #010101;
    --border: rgba(201, 168, 124, 0.12);
    --border-strong: rgba(201, 168, 124, 0.3);
    --shadow-xs: 0 1px 3px rgba(26, 39, 68, 0.04);
    --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06), 0 1px 2px rgba(26, 39, 68, 0.04);
    --shadow-md: 0 4px 24px rgba(26, 39, 68, 0.08), 0 2px 8px rgba(26, 39, 68, 0.04);
    --shadow-lg: 0 12px 48px rgba(26, 39, 68, 0.12), 0 4px 16px rgba(26, 39, 68, 0.06);
    --shadow-xl: 0 20px 60px rgba(26, 39, 68, 0.15), 0 8px 24px rgba(26, 39, 68, 0.08);
    --shadow-gold: 0 4px 24px rgba(201, 168, 124, 0.25);
    --shadow-gold-lg: 0 8px 40px rgba(201, 168, 124, 0.3);
    --glass: rgba(255, 253, 249, 0.85);
    --glass-strong: rgba(255, 253, 249, 0.95);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

::selection {
    background-color: var(--gold);
    color: var(--white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
button { font-family: var(--font-body); }

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden,
.loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-butterfly {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
}

.wing {
    position: absolute;
    width: 22px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    top: 6px;
    opacity: 0.85;
}

.wing-left {
    left: 4px;
    transform-origin: right center;
    animation: wing-flap 0.7s ease-in-out infinite alternate;
    border-radius: 50% 0 50% 50%;
}

.wing-right {
    right: 4px;
    transform-origin: left center;
    animation: wing-flap 0.7s ease-in-out infinite alternate-reverse;
    border-radius: 0 50% 50% 50%;
}

.body-line {
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    width: 2px;
    height: 36px;
    background: var(--gold-dark);
    border-radius: 2px;
}

@keyframes wing-flap {
    0% { transform: rotateY(0deg) scaleX(1); }
    100% { transform: rotateY(55deg) scaleX(0.5); }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-style: italic;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-strong);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
    padding: 12px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-glow);
}

.nav-brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--navy-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26, 39, 68, 0.82) 0%,
        rgba(26, 39, 68, 0.6) 35%,
        rgba(26, 39, 68, 0.45) 60%,
        rgba(201, 168, 124, 0.2) 100%
    );
}

.hero-butterflies {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.butterfly-particle {
    position: absolute;
    width: 14px;
    height: 14px;
    left: var(--x);
    top: var(--y);
    opacity: 0.3;
    animation: butterfly-float 10s ease-in-out infinite;
    animation-delay: var(--delay);
}

.butterfly-particle::before,
.butterfly-particle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    background: var(--gold-light);
    top: 0;
}

.butterfly-particle::before {
    left: 0;
    transform-origin: right center;
    animation: wing-flap 1.4s ease-in-out infinite alternate;
    border-radius: 50% 0 50% 50%;
}

.butterfly-particle::after {
    right: 0;
    transform-origin: left center;
    animation: wing-flap 1.4s ease-in-out infinite alternate-reverse;
    border-radius: 0 50% 50% 50%;
}

@keyframes butterfly-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(25px, -35px) rotate(3deg); }
    50% { transform: translate(-15px, -50px) rotate(-2deg); }
    75% { transform: translate(30px, -25px) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 760px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 8px 28px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-title-accent {
    display: block;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 400;
    font-size: 0.85em;
    margin-top: 4px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: var(--gold-light);
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    padding: 15px;
    border-radius: var(--radius-md);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.82rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    animation: bounce-down 2.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* --- Sections General --- */
.section {
    padding: 96px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

/* Decorative line under section title */
.section-header .section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- About Section --- */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--gold);
    border-radius: calc(var(--radius-lg) + 4px);
    z-index: -1;
    opacity: 0.3;
}

.about-quote {
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-quote i { color: var(--gold-light); font-size: 1rem; }

.about-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-intro {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.credential-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    color: var(--navy);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition-fast);
    letter-spacing: 0.2px;
}

.credential-tag:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.credential-tag i { color: var(--gold); font-size: 0.78rem; }
.credential-tag:hover i { color: var(--white); }

.about-text {
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.about-phrase {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--cream);
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.about-phrase .butterfly-icon { font-size: 1.3rem; }

.about-phrase p {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--navy);
    font-style: italic;
}

/* --- Stats Section --- */
.section-stats {
    background: var(--navy);
    padding: 56px 0;
    position: relative;
}

.section-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(201, 168, 124, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
}

.stat-item {
    padding: 20px 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

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

/* --- Services Section --- */
.section-services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}

.service-image {
    position: relative;
    height: 175px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

.service-icon {
    position: absolute;
    bottom: -18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    border: 3px solid var(--white);
}

.service-content {
    padding: 26px 20px 20px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.service-content p {
    font-size: 0.83rem;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 14px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition-fast);
    border: none;
    background: none;
    cursor: pointer;
}

.service-cta:hover {
    color: var(--navy);
    gap: 10px;
}

/* --- Radio & Podcast Section --- */
.section-radio {
    background: var(--white);
}

.radio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: start;
}

.radio-featured {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.radio-featured-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.radio-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.radio-featured:hover .radio-featured-image img { transform: scale(1.04); }

.radio-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.radio-featured:hover .radio-play-overlay { opacity: 1; }

.radio-play-overlay i {
    font-size: 1.8rem;
    color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    padding-left: 3px;
    box-shadow: var(--shadow-gold-lg);
}

.radio-featured-content { padding: 22px; }

.radio-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.radio-featured-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.radio-featured-content p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.radio-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.radio-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.channel-card:hover {
    background: var(--white);
    border-color: var(--border-strong);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.channel-icon.spotify { background: #1DB95415; color: var(--spotify); }
.channel-icon.tiktok { background: #01010112; color: var(--tiktok); }
.channel-icon.instagram { background: linear-gradient(45deg, #f0943315, #cc236615); color: #e6683c; }
.channel-icon.whatsapp { background: #25D36615; color: var(--whatsapp); }

.channel-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1px;
}

.channel-info p { font-size: 0.75rem; color: var(--text-light); }

.channel-card > i:last-child {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.channel-card:hover > i:last-child { color: var(--gold); }

/* --- Blog Section --- */
.section-blog {
    background: var(--cream);
}

.blog-filters {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.blog-filter {
    padding: 7px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-body);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

.blog-filter:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.blog-filter.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.blog-card-image {
    height: 155px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-content { padding: 16px 18px; }

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.blog-card-category,
.blog-category {
    background: var(--gold);
    color: var(--white);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.blog-card-date,
.blog-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

.blog-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.blog-card-content p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--text-light);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.blog-read-more:hover { color: var(--navy); gap: 8px; }

/* Blog Modal */
.blog-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.blog-modal.active { opacity: 1; visibility: visible; }

.blog-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.75);
    backdrop-filter: blur(8px);
}

.blog-modal-content {
    position: relative;
    width: 92%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow-y: auto;
    z-index: 1;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
}

.blog-modal.active .blog-modal-content {
    transform: translateY(0) scale(1);
}

.blog-modal-close {
    position: sticky;
    top: 12px;
    float: right;
    margin: 12px 12px 0 0;
    width: 34px;
    height: 34px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.blog-modal-close:hover { background: var(--gold); transform: rotate(90deg); }

.blog-modal-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-modal-meta {
    display: flex;
    gap: 12px;
    padding: 20px 28px 0;
    align-items: center;
}

.blog-modal-category {
    background: var(--gold);
    color: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.blog-modal-date { font-size: 0.8rem; color: var(--text-muted); }

.blog-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    padding: 14px 28px 6px;
    line-height: 1.3;
}

.blog-modal-body {
    padding: 8px 28px 24px;
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-body);
}

.blog-modal-body p { margin-bottom: 16px; }

.blog-modal-body h2, .blog-modal-body h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.15rem;
    margin: 24px 0 10px;
}

.blog-modal-body img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
    box-shadow: var(--shadow-sm);
}

.blog-modal-body ul, .blog-modal-body ol { margin: 10px 0 16px 20px; }
.blog-modal-body li { margin-bottom: 6px; list-style: disc; }

.blog-modal-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 12px 18px;
    background: var(--cream);
    margin: 16px 0;
    font-style: italic;
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    color: var(--text-dark);
}

.blog-modal-body .blog-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-modal-footer {
    padding: 16px 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid var(--cream-mid);
}

.blog-modal-share {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.share-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--text-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.share-btn:hover { background: var(--gold); color: var(--white); }

/* --- Testimonials --- */
.section-testimonials {
    background: var(--white);
    overflow: hidden;
}

.testimonial-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.testimonial-carousel {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.testimonial-track {
    display: flex;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    padding: 44px 40px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.testimonial-card.active { display: block; }

.testimonial-quote { margin-bottom: 18px; }

.testimonial-quote i {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 400;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.testimonial-prev,
.testimonial-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.8rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.testimonial-dots { display: flex; gap: 6px; }

.testimonial-dot,
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-mid);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-block;
}

.testimonial-dot.active,
.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* --- Booking Section --- */
.section-booking {
    background: var(--cream-dark);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
    align-items: start;
}

.booking-form {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.form-group label i { color: var(--gold); font-size: 0.72rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-xs);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #DC4A4A;
    box-shadow: 0 0 0 3px rgba(220, 74, 74, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Booking Info */
.info-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.info-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--navy);
    font-style: italic;
}

.info-card p { font-size: 0.88rem; line-height: 1.65; }

.info-card-dark {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    border: none;
}

.info-card-dark h4 {
    color: var(--gold-light);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card-dark p { color: rgba(255, 255, 255, 0.65); font-size: 0.82rem; }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--white);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--border-strong);
    transform: translateX(3px);
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp { background: #25D36612; color: var(--whatsapp); }
.contact-icon.channel { background: rgba(201, 168, 124, 0.12); color: var(--gold); }
.contact-icon.tiktok { background: #01010110; color: var(--tiktok); }
.contact-icon.instagram { background: #e6683c10; color: #e6683c; }

.contact-method h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.contact-method p { font-size: 0.72rem; color: var(--text-muted); }

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 2px solid rgba(201, 168, 124, 0.2);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--gold-light);
    margin-bottom: 14px;
    font-style: italic;
}

.footer-text {
    font-size: 0.78rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 0.92rem;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-links ul li,
.footer-services ul li { margin-bottom: 8px; }

.footer-links ul li a,
.footer-services ul li a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--gold-light);
    padding-left: 3px;
}

.footer-contact ul { margin-bottom: 18px; }

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact ul li i { color: var(--gold); font-size: 0.82rem; width: 14px; }
.footer-contact ul li a:hover { color: var(--gold-light); }

.footer-cta { width: 100%; justify-content: center; }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit { margin-top: 4px; }
.footer-credit i { color: var(--gold); }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 998;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: var(--transition-fast);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 7px 14px;
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 88px;
    right: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-image-wrapper img { height: 320px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item:nth-child(2)::after { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .radio-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    .container { padding: 0 12px; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }

    /* Navigation mobile */
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 72%;
        max-width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px 32px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Hero mobile */
    .hero-badge { font-size: 0.65rem; padding: 6px 18px; letter-spacing: 1.5px; }
    .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-scroll-indicator { display: none; }
    .hero-subtitle { font-size: 0.85rem; }

    /* Stats mobile */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .section-stats { padding: 40px 0; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.68rem; }
    .stat-item::after { display: none; }

    /* Services mobile - COMPACT horizontal cards */
    .services-grid { grid-template-columns: 1fr; gap: 10px; }

    .service-card {
        display: grid;
        grid-template-columns: 105px 1fr;
        border-radius: var(--radius-sm);
    }

    .service-image { height: 100%; min-height: 130px; }
    .service-image::after { display: none; }

    .service-icon {
        width: 30px; height: 30px; font-size: 0.75rem;
        bottom: auto; top: 8px; right: 8px;
        border-width: 2px;
    }

    .service-content { padding: 12px; }
    .service-content h3 { font-size: 0.95rem; margin-bottom: 4px; }
    .service-content p { font-size: 0.78rem; margin-bottom: 8px; line-height: 1.5; }

    /* Radio mobile */
    .radio-featured-image { height: 180px; }
    .radio-featured-content { padding: 16px; }
    .radio-featured-content h3 { font-size: 1.15rem; }
    .channel-card { padding: 10px 12px; }
    .channel-icon { width: 38px; height: 38px; font-size: 1rem; }

    /* Blog mobile - COMPACT horizontal cards */
    .blog-grid { grid-template-columns: 1fr; gap: 10px; }

    .blog-card {
        display: grid;
        grid-template-columns: 95px 1fr;
    }

    .blog-card-image { height: 100%; min-height: 100px; }
    .blog-card-content { padding: 10px 12px; }
    .blog-card-content h3 { font-size: 0.88rem; }
    .blog-card-content p { font-size: 0.75rem; -webkit-line-clamp: 2; }
    .blog-filters { gap: 5px; margin-bottom: 20px; }
    .blog-filter { padding: 5px 12px; font-size: 0.72rem; }

    /* Blog modal mobile */
    .blog-modal-content { width: 96%; max-height: 92vh; border-radius: var(--radius-md); }
    .blog-modal-image { height: 170px; }
    .blog-modal-content h2 { font-size: 1.25rem; padding: 10px 18px 4px; }
    .blog-modal-body { padding: 6px 18px 18px; font-size: 0.86rem; }
    .blog-modal-meta { padding: 14px 18px 0; }
    .blog-modal-footer { padding: 12px 18px 20px; flex-direction: column; align-items: stretch; }

    /* Testimonial mobile */
    .testimonial-card { padding: 28px 20px; }
    .testimonial-text { font-size: 0.9rem; }

    /* Booking mobile */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form { padding: 22px 16px; }

    /* Contact mobile */
    .contact-method { padding: 10px; }
    .contact-icon { width: 34px; height: 34px; font-size: 0.95rem; }
    .info-card { padding: 18px 14px; }

    /* Footer mobile */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer { padding: 44px 0 0; }
    .footer-brand { text-align: center; }
    .footer-social { justify-content: center; }

    /* WhatsApp float mobile */
    .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
    .whatsapp-tooltip { display: none; }
    .back-to-top { bottom: 72px; right: 18px; width: 34px; height: 34px; }
}

@media (max-width: 480px) {
    .container { padding: 0 8px; }
    .section { padding: 48px 0; }
    .section-title { font-size: 1.5rem; }
    .section-label { font-size: 0.65rem; }
    .hero-content { padding: 0 12px; }

    .credential-tag { font-size: 0.7rem; padding: 4px 10px; }

    .services-grid { gap: 8px; }
    .service-card { grid-template-columns: 85px 1fr; }

    .blog-card { grid-template-columns: 80px 1fr; }
    .blog-card-content h3 { font-size: 0.82rem; }

    .stats-grid { gap: 6px; }
    .stat-item { padding: 12px 6px; }
    .stat-number { font-size: 1.7rem; }

    .about-image-wrapper img { height: 220px; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
