@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2340;
    --primary-light: #2563a8;
    --accent: #e8a220;
    --accent-light: #f5c75f;
    --white: #ffffff;
    --grey-light: #f1f5f9;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-subtle: #cbd5e1;
    --border-light: #e2e8f0;
    --success: #22c55e;
    --whatsapp: #25d366;
}

/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--grey-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 162, 32, 0.3);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(232, 162, 32, 0.5);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =============================================
   HERO ANIMATIONS
============================================= */
.hero-animate-1 {
    animation: fadeSlideUp 0.8s ease-out 0.2s both;
}
.hero-animate-2 {
    animation: fadeSlideUp 0.8s ease-out 0.4s both;
}
.hero-animate-3 {
    animation: fadeSlideUp 0.8s ease-out 0.6s both;
}
.hero-animate-4 {
    animation: fadeSlideUp 0.8s ease-out 0.8s both;
}
.hero-animate-5 {
    animation: fadeSlideLeft 0.8s ease-out 0.3s both;
}
.hero-animate-6 {
    animation: fadeSlideRight 0.8s ease-out 0.5s both;
}

/* =============================================
   SECTION FADE-IN
============================================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =============================================
   NAVBAR
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary);
    flex-shrink: 0;
}

.brand-text-name {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.brand-text-sub {
    display: block;
    color: var(--accent-light);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-scrolled {
    background: rgba(26, 58, 92, 0.97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-scrolled .navbar-brand {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-light);
}

/* =============================================
   NAVBAR — BUTTONS & CTA
============================================= */
.btn-call-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--accent);
    color: var(--primary);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-call-nav:hover {
    background: var(--accent-light);
    box-shadow: 0 0 25px rgba(232, 162, 32, 0.5);
    transform: translateY(-2px);
}

/* =============================================
   HAMBURGER
============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--primary);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 60;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-menu-links {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-light);
}

.mobile-call-btn {
    display: block;
    text-align: center;
    margin: 1rem 1.5rem 0;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--accent);
    color: var(--primary);
}

/* =============================================
   SECTION BACKGROUNDS
============================================= */
.section-a {
    background: var(--white);
}

.section-b {
    background: var(--grey-light);
}

.section-c {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: var(--white);
}

.hero-deco-1 {
    position: absolute;
    top: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--primary);
}

.hero-deco-2 {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--accent);
}

.hero-deco-dot-1 {
    position: absolute;
    top: 10rem;
    left: 5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    opacity: 0.2;
    background: var(--accent);
}

.hero-deco-dot-2 {
    position: absolute;
    top: 15rem;
    right: 10rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    opacity: 0.2;
    background: var(--primary);
}

.hero-deco-dot-3 {
    position: absolute;
    bottom: 10rem;
    right: 5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    opacity: 0.2;
    background: var(--accent);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: rgba(232, 162, 32, 0.1);
    color: var(--accent);
    border: 1px solid rgba(232, 162, 32, 0.3);
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-star-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-star-row {
    display: flex;
    gap: 2px;
}

.star-filled {
    color: var(--accent);
}

.star-empty {
    color: var(--text-subtle);
}

.hero-star-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
}

.hero-star-sub {
    color: #94a3b8;
    font-size: 0.875rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-ring {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 4px solid;
    border-color: var(--accent);
    opacity: 0.2;
}

.hero-image-ring-2 {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    opacity: 0.1;
    background: var(--primary);
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-accent:hover {
    background: var(--accent-light);
    box-shadow: 0 0 25px rgba(232, 162, 32, 0.5);
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    background: var(--whatsapp);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-solid-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    background: var(--white);
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solid-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-pulse {
    animation: gentlePulse 2s infinite;
}

/* =============================================
   IMAGE & FALLBACK
============================================= */
.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 1rem;
}

@media (min-width: 640px) {
    .hero-img {
        height: 500px;
    }
}

.img-fallback {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.img-placeholder {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.img-hidden {
    display: none;
}

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
    padding: 3rem 0;
    border-top: 2px solid rgba(232, 162, 32, 0.2);
    border-bottom: 2px solid rgba(232, 162, 32, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fbbf24;
    font-weight: 500;
}

/* =============================================
   SECTION HEADINGS
============================================= */
.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(232, 162, 32, 0.1);
    color: var(--accent);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 42rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================
   COURSES — FLIP CARDS
============================================= */
.courses-section {
    padding: 5rem 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.flip-card {
    perspective: 1000px;
    cursor: pointer;
    height: 380px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    overflow: hidden;
}

.flip-card-front {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.flip-card-front-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flip-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(232, 162, 32, 0.1);
    color: var(--accent);
    font-size: 1.25rem;
}

.flip-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.flip-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 1;
}

.flip-card-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

.flip-card-back-content {
    padding: 1.5rem;
}

.flip-card-back-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.flip-card-back-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.flip-card-list {
    list-style: none;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.flip-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
    opacity: 0.8;
}

.check-icon {
    color: #fbbf24;
}

.flip-card-btn {
    display: block;
    text-align: center;
    padding: 0.625rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--accent);
    color: var(--primary);
    transition: all 0.3s ease;
    margin-top: auto;
}

.flip-card-btn:hover {
    background: var(--accent-light);
}

/* =============================================
   WHY CHOOSE US
============================================= */
.why-section {
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 58, 92, 0.15);
}

.why-icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(232, 162, 32, 0.1);
    color: var(--accent);
    font-size: 1.5rem;
}

.why-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.why-card-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* =============================================
   GALLERY
============================================= */
.gallery-section {
    padding: 5rem 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 58, 92, 0.15);
}

.gallery-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    display: block;
}

/* =============================================
   REVIEWS
============================================= */
.reviews-section {
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 58, 92, 0.12);
}

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

.review-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.9375rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-avatar-blue {
    background: var(--primary);
    color: var(--white);
}

.review-avatar-gold {
    background: var(--accent);
    color: var(--primary);
}

.review-author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9375rem;
}

.review-author-role {
    color: #94a3b8;
    font-size: 0.8125rem;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
    padding: 5rem 0;
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--accent);
    color: var(--primary);
}

.about-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--grey-light);
}

.about-highlight-icon {
    font-size: 1.125rem;
    color: var(--accent);
    flex-shrink: 0;
}

.about-highlight-value {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
}

.about-highlight-label {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* =============================================
   CONTACT / LEAD FORM
============================================= */
.contact-section {
    padding: 5rem 0;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .form-card {
        padding: 2.5rem;
    }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 162, 32, 0.15);
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--accent-light);
    box-shadow: 0 0 25px rgba(232, 162, 32, 0.5);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    font-size: 2rem;
}

.form-success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-success-text {
    color: var(--text-muted);
}

/* =============================================
   CONTACT INFO
============================================= */
.contact-info-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(232, 162, 32, 0.1);
    color: var(--accent);
    font-size: 1.125rem;
}

.contact-info-heading {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.contact-info-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-info-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--primary);
}

/* =============================================
   FINAL CTA
============================================= */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cta-inner {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.8;
    color: #fbbf24;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-col-title {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-brand-desc {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #64748b;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    color: var(--accent-light);
    margin-top: 0.125rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.footer-contact-text {
    color: #64748b;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.footer-contact-link {
    color: #64748b;
    font-size: 0.8125rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid #1e3a5c;
    padding: 2rem 1.5rem 0;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom-text {
    color: #475569;
    font-size: 0.8125rem;
}

/* =============================================
   STICKY BUTTONS
============================================= */
.sticky-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
    background: var(--whatsapp);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    bottom: 112px;
}

.sticky-chatbot {
    position: fixed;
    right: 1.5rem;
    width: 3.5rem;
    height: 45.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
    background: var(--primary);
    border: 3px solid var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sticky-chatbot:hover {
    transform: scale(1.1);
}

.sticky-chatbot svg {
    width: 1.625rem;
    height: 1.625rem;
}

/* =============================================
   MOBILE BOTTOM BAR
============================================= */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1023px) {
    .mobile-bottom-bar {
        display: flex;
    }
}

.mobile-bottom-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--primary);
    color: var(--white);
}

.mobile-bottom-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--whatsapp);
    color: var(--white);
}

/* =============================================
   MOBILE-SPECIFIC NAV HIDE
============================================= */
@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero {
        padding-bottom: 6rem;
    }
}
