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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-lavender: #B8A9E8;
    --primary-lavender-light: #D4C8F0;
    --primary-lavender-dark: #9B85D6;
    --primary-mint: #A8E6CF;
    --primary-mint-light: #C8F0E0;
    --primary-mint-dark: #7DD4AA;
    --primary-peach: #FFD3B6;
    --primary-peach-light: #FFE8D6;
    --primary-peach-dark: #FFB88C;
    --primary-blue: #A8D8EA;
    --primary-blue-light: #C8E8F4;
    --primary-blue-dark: #7BC0D8;
    
    --bg-cream: #FFF5E6;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    
    --text-dark: #2D3436;
    --text-medium: #636E72;
    --text-light: #B2BEC3;
    --text-white: #FFFFFF;
    
    --gradient-hero: linear-gradient(135deg, #B8A9E8 0%, #A8D8EA 50%, #A8E6CF 100%);
    --gradient-warm: linear-gradient(135deg, #FFD3B6 0%, #B8A9E8 100%);
    --gradient-cool: linear-gradient(135deg, #A8D8EA 0%, #A8E6CF 100%);
    
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-hover: 0 15px 50px rgba(184,169,232,0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
    
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    --container-width: 1200px;
    --navbar-height: 80px;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-lavender-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-lavender);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 169, 232, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar.scrolled {
    height: 65px;
    box-shadow: var(--shadow-sm);
}

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

.logo-emoji {
    font-size: 2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(90deg, var(--primary-lavender-dark), var(--primary-blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-links li a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-lavender-dark);
    background-color: rgba(184, 169, 232, 0.1);
}

.btn-nav {
    background: var(--gradient-hero) !important;
    color: white !important;
    border-radius: var(--radius-lg) !important;
    padding: 10px 24px !important;
    font-weight: 700;
    margin-left: 10px;
}

.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    color: white !important;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: var(--navbar-height);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.1;
}

/* ==========================================================================
   Sections & Titles
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-light { background-color: var(--bg-white); }
.section-cream { background-color: var(--bg-cream); }
.section-colored { 
    background: var(--gradient-hero);
    color: white; 
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    color: inherit;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-hero);
    margin: 15px auto;
    border-radius: 2px;
}

.section-colored .section-title::after {
    background: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-colored .section-subtitle {
    color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary-lavender-dark);
    border: 2px solid var(--primary-lavender);
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-medium);
    line-height: 1.6;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 16px;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* ==========================================================================
   Features
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card:nth-child(1) .feature-icon { background: var(--gradient-hero); }
.feature-card:nth-child(2) .feature-icon { background: var(--gradient-warm); }
.feature-card:nth-child(3) .feature-icon { background: var(--gradient-cool); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--primary-mint-dark), var(--primary-blue-dark)); }

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: var(--gradient-hero);
    padding: 80px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card-wrapper {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary-lavender-light);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-lavender-light);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--primary-lavender);
    transform: scale(1.2);
}

/* ==========================================================================
   Menu & Calendar
   ========================================================================== */
.menu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
}

.menu-table thead th {
    background: var(--gradient-hero);
    color: white;
    padding: 16px;
    font-weight: 700;
    text-align: left;
}

.menu-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.menu-table tbody tr:nth-child(even) {
    background: rgba(184,169,232,0.05);
}

.menu-table tbody tr:hover {
    background: rgba(184,169,232,0.1);
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: center;
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.event-date {
    min-width: 70px;
    text-align: center;
    padding: 10px;
    background: var(--gradient-hero);
    border-radius: var(--radius-sm);
    color: white;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-info h4 {
    margin-bottom: 5px;
}

.event-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Page Banner
   ========================================================================== */
.page-banner {
    background: var(--gradient-hero);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.page-banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-banner-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-lavender);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-bio {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-medium);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-lavender);
    color: white;
}

/* ==========================================================================
   Gallery & Lightbox
   ========================================================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-lavender-light);
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: var(--font-body);
}

.filter-btn.active, 
.filter-btn:hover {
    background: var(--primary-lavender);
    color: white;
    border-color: var(--primary-lavender);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(184,169,232,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-prev, 
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: var(--transition);
}

.lightbox-prev:hover, 
.lightbox-next:hover {
    background: rgba(255,255,255,0.4);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    background: var(--primary-lavender-light);
    color: var(--primary-lavender-dark);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 10px 0;
}

.blog-read-more {
    color: var(--primary-lavender-dark);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    margin-top: auto;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--primary-lavender);
}

.blog-sidebar {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Form Wizard
   ========================================================================== */
.form-wizard {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-light);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wizard-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition);
    color: var(--text-medium);
}

.wizard-step.active .step-number {
    background: var(--primary-lavender);
    color: white;
}

.wizard-step.completed .step-number {
    background: var(--primary-mint);
    color: white;
}

.wizard-step .step-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.wizard-step.active .step-label {
    color: var(--primary-lavender-dark);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-input, 
.form-select, 
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    border-color: var(--primary-lavender);
    outline: none;
    box-shadow: 0 0 0 4px rgba(184,169,232,0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #e74c3c;
}

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

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

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 18px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(184, 169, 232, 0.12);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-lavender-light);
}

.info-card .info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.info-card:nth-child(1) .info-icon { background: linear-gradient(135deg, #B8A9E8, #9B85D6); }
.info-card:nth-child(2) .info-icon { background: linear-gradient(135deg, #A8E6CF, #7DD4AA); }
.info-card:nth-child(3) .info-icon { background: linear-gradient(135deg, #FFD3B6, #FFB88C); }
.info-card:nth-child(4) .info-icon { background: linear-gradient(135deg, #A8D8EA, #7BC0D8); }

.info-content {
    width: 100%;
    text-align: center;
}

.info-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-content p {
    font-size: 0.86rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0 0 4px 0;
    word-break: break-word;
}

.info-content a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition-fast);
    word-break: break-all;
}

.info-content a:hover {
    color: var(--primary-lavender-dark);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.accordion-header:hover {
    background: rgba(184,169,232,0.05);
}

.accordion-header i {
    transition: transform 0.3s;
    color: var(--primary-lavender);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 24px 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 0;
}

.footer-wave {
    color: var(--text-dark);
    margin-top: -1px;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-lavender);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-lavender-light);
    padding-left: 5px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .logo-emoji {
    font-size: 1.8rem;
}

.footer-brand h3 {
    color: white;
    font-family: var(--font-heading);
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-list i {
    color: var(--primary-lavender-light);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-lavender);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   WhatsApp Button
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.grid-2 { grid-template-columns: 1fr 1fr !important; }
.grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
.grid-4 { grid-template-columns: repeat(4, 1fr) !important; }

.wave-divider {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Values & About
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-color: var(--primary-lavender-light);
    transform: translateY(-5px);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    background: rgba(184,169,232,0.1);
    color: var(--primary-lavender);
}

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary-lavender-light);
    margin-top: 40px;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
    padding-left: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-lavender);
    border: 3px solid white;
}

/* ==========================================================================
   Hero Campaign Section
   ========================================================================== */
.hero-campaign {
    min-height: 100vh;
    background: #FFFFFF;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
}

/* Floating Decorative Emojis */
.hero-deco {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: floatDeco 6s ease-in-out infinite;
}

.hero-deco-1 { top: 8%; left: 5%; animation-delay: 0s; font-size: 3rem; opacity: 0.2; }
.hero-deco-2 { top: 15%; right: 8%; animation-delay: 1s; font-size: 2.8rem; opacity: 0.18; }
.hero-deco-3 { top: 45%; left: 3%; animation-delay: 2s; font-size: 2.2rem; }
.hero-deco-4 { bottom: 20%; right: 5%; animation-delay: 0.5s; font-size: 3.5rem; opacity: 0.12; }
.hero-deco-5 { top: 25%; left: 12%; animation-delay: 3s; font-size: 1.8rem; }
.hero-deco-6 { bottom: 30%; left: 8%; animation-delay: 1.5s; font-size: 2rem; }
.hero-deco-7 { top: 60%; right: 10%; animation-delay: 4s; font-size: 2.5rem; opacity: 0.12; }
.hero-deco-8 { bottom: 10%; right: 15%; animation-delay: 2.5s; font-size: 2rem; }

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

/* Confetti Shapes */
.confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    opacity: 0.25;
    z-index: 0;
    animation: confettiFall 8s linear infinite;
}

.confetti-1 { left: 10%; top: -5%; background: var(--primary-lavender); animation-delay: 0s; width: 10px; height: 10px; border-radius: 50%; }
.confetti-2 { left: 25%; top: -5%; background: var(--primary-mint); animation-delay: 1.5s; width: 14px; height: 8px; }
.confetti-3 { left: 50%; top: -5%; background: var(--primary-peach); animation-delay: 3s; border-radius: 50%; }
.confetti-4 { left: 70%; top: -5%; background: var(--primary-blue); animation-delay: 4.5s; width: 8px; height: 14px; }
.confetti-5 { left: 85%; top: -5%; background: var(--primary-lavender-light); animation-delay: 2s; border-radius: 50%; width: 10px; height: 10px; }
.confetti-6 { left: 40%; top: -5%; background: var(--primary-mint-light); animation-delay: 5.5s; width: 15px; height: 6px; }

@keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.15; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Campaign Badge */
.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFE8D6 0%, #FFD3B6 100%);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 211, 182, 0.4);
    position: relative;
    z-index: 1;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #E17055;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 211, 182, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 6px 25px rgba(255, 211, 182, 0.6); }
}

/* Campaign Title */
.campaign-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.highlight-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary-peach-light);
    opacity: 0.5;
    border-radius: 4px;
    z-index: -1;
}

/* Campaign Subtitle */
.campaign-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Campaign Benefits Grid */
.campaign-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: #FFFFFF;
    border: 2px solid rgba(184, 169, 232, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-lavender-light);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
    animation: bounceIcon 3s ease-in-out infinite;
}

.benefit-card:nth-child(1) .benefit-icon { animation-delay: 0s; }
.benefit-card:nth-child(2) .benefit-icon { animation-delay: 0.5s; }
.benefit-card:nth-child(3) .benefit-icon { animation-delay: 1s; }
.benefit-card:nth-child(4) .benefit-icon { animation-delay: 1.5s; }

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

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Campaign CTA Area */
.campaign-cta {
    position: relative;
    z-index: 1;
}

.campaign-deadline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(184,169,232,0.08) 0%, rgba(168,216,234,0.08) 100%);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--text-dark);
    border: 1px solid rgba(184, 169, 232, 0.15);
}

.campaign-deadline i {
    color: var(--primary-lavender);
    font-size: 1.1rem;
}

.campaign-deadline strong {
    color: var(--primary-lavender-dark);
}

.campaign-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.btn-lg {
    padding: 18px 40px !important;
    font-size: 1.1rem !important;
    border-radius: var(--radius-xl) !important;
}

.campaign-note {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.campaign-note i {
    color: var(--primary-peach);
}

/* ==========================================================================
   Features Vertical Timeline Section
   ========================================================================== */
.features-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

/* Central Vertical Line */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background: rgba(184, 169, 232, 0.2);
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 1;
}

/* Filled Progress Bar along the Line */
.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-hero);
    border-radius: 10px;
    transition: height 0.2s ease-out;
    box-shadow: 0 0 12px rgba(184, 169, 232, 0.6);
}

/* Timeline Item (Row) */
.timeline-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    margin-bottom: 60px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternate Right Alignment */
.timeline-item.timeline-right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

/* Center Dot */
.timeline-dot {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
    border: 3px solid rgba(184, 169, 232, 0.3);
}

.timeline-item.active-dot .timeline-dot,
.timeline-item.animated .timeline-dot {
    border-color: var(--primary-lavender);
    box-shadow: 0 0 20px rgba(184, 169, 232, 0.6);
    transform: translateX(-50%) scale(1.1);
}

.dot-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
}

/* Individual Card Styling */
.timeline-card {
    width: 88%;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(184, 169, 232, 0.12);
    position: relative;
    transition: var(--transition);
}

.timeline-item.timeline-left .timeline-card {
    margin-right: 40px;
}

.timeline-item.timeline-right .timeline-card {
    margin-left: 40px;
}

/* Connector Arrow */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 36px;
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    transform: rotate(45deg);
    border-top: 2px solid rgba(184, 169, 232, 0.12);
}

.timeline-item.timeline-left .timeline-card::before {
    right: -8px;
    border-right: 2px solid rgba(184, 169, 232, 0.12);
}

.timeline-item.timeline-right .timeline-card::before {
    left: -8px;
    border-left: 2px solid rgba(184, 169, 232, 0.12);
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-lavender-light);
}

.timeline-card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.timeline-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-card-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 18px;
}

.timeline-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-card-tags .tag {
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--bg-cream);
    color: var(--primary-lavender-dark);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(184, 169, 232, 0.2);
}

/* ==========================================================================
   Multi-card Testimonials Carousel (4 visible cards, 10 total)
   ========================================================================== */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 45px;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 15px 5px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card-item {
    flex: 0 0 25%; /* 4 cards visible at a time */
    max-width: 25%;
    padding: 0 12px;
    box-sizing: border-box;
}

.testimonial-card-inner {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(184, 169, 232, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-lavender-light);
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card-inner .testimonial-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(184, 169, 232, 0.15);
    padding-top: 16px;
}

.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.avatar-1 { background: linear-gradient(135deg, #B8A9E8, #9B85D6); }
.avatar-2 { background: linear-gradient(135deg, #A8E6CF, #7DD4AA); }
.avatar-3 { background: linear-gradient(135deg, #FFD3B6, #FFB88C); }
.avatar-4 { background: linear-gradient(135deg, #A8D8EA, #7BC0D8); }
.avatar-5 { background: linear-gradient(135deg, #FF9A9E, #FECFEF); }
.avatar-6 { background: linear-gradient(135deg, #A1C4FD, #C2E9FB); }
.avatar-7 { background: linear-gradient(135deg, #FBC2EB, #A6C1EE); }
.avatar-8 { background: linear-gradient(135deg, #84FAB0, #8FD3F4); }
.avatar-9 { background: linear-gradient(135deg, #F6D365, #FDA085); }
.avatar-10 { background: linear-gradient(135deg, #5EE7DF, #B490CA); }

.user-info .user-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

.user-info .user-role {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--primary-lavender-light);
    color: var(--primary-lavender-dark);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition);
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }

.testimonial-arrow:hover {
    background: var(--gradient-hero);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(184, 169, 232, 0.4);
}

/* Dots */
.testimonial-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dots-container .t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(184, 169, 232, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots-container .t-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-lavender);
}

/* ==========================================================================
   Rich About Us Preview Section & Photo Tour
   ========================================================================== */
.about-preview-section {
    padding: 90px 0;
    position: relative;
    background: linear-gradient(180deg, #FFF5E6 0%, #FFFFFF 100%);
    overflow: hidden;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Photo Collage Layout */
.about-collage-wrapper {
    position: relative;
}

.collage-container {
    position: relative;
    width: 100%;
    min-height: 440px;
}

.collage-photo {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.collage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.collage-photo:hover img {
    transform: scale(1.06);
}

/* Main Photo */
.main-photo {
    top: 0;
    left: 0;
    width: 78%;
    height: 330px;
    border: 5px solid #FFFFFF;
    z-index: 1;
}

/* Sub Photo Overlapping */
.sub-photo {
    bottom: -20px;
    right: 0;
    width: 58%;
    height: 250px;
    border: 5px solid #FFFFFF;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(184, 169, 232, 0.25);
}

.photo-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 12px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: badgeFloat 4s ease-in-out infinite;
    border: 2px solid rgba(184, 169, 232, 0.2);
}

.badge-exp {
    top: 20px;
    right: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
}

.badge-icon-box {
    font-size: 1.8rem;
}

.badge-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-lavender-dark);
    line-height: 1.1;
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--text-medium);
}

.badge-kids {
    bottom: 15px;
    left: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    animation-delay: 2s;
}

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

/* Right Content */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-peach-light);
    color: #E17055;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 18px;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* 4 Highlights Grid */
.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 35px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #FFFFFF;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(184, 169, 232, 0.15);
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-lavender-light);
}

.box-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.icon-bg-1 { background: rgba(184, 169, 232, 0.2); }
.icon-bg-2 { background: rgba(168, 230, 207, 0.25); }
.icon-bg-3 { background: rgba(255, 211, 182, 0.3); }
.icon-bg-4 { background: rgba(168, 216, 234, 0.25); }

.box-text h4 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.box-text p {
    font-size: 0.82rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0;
}

.about-cta-action {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* School Mini Photo Tour Strip */
.school-tour-strip {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 2px dashed rgba(184, 169, 232, 0.25);
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-title i {
    color: var(--primary-lavender);
}

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

.tour-card {
    position: relative;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tour-card:hover img {
    transform: scale(1.1);
}

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

.gallery-item {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

