/* ============================================
   Academia Strumfilor - Frontend Styles
   Colors inspired by academiastrumfilor.ro
   ============================================ */

:root {
    /* Culori principale - moderne si vibrante pentru copii */
    --primary: #4A90E2;        /* Albastru deschis, modern */
    --primary-dark: #357ABD;   /* Albastru inchis */
    --primary-light: #6BA3E8;  /* Albastru foarte deschis */
    
    --secondary: #FF6B9D;      /* Roz vibrant, prietenos */
    --secondary-dark: #E8557F; /* Roz inchis */
    --secondary-light: #FF8FB3; /* Roz deschis */
    
    --accent: #FFC857;         /* Galben portocaliu, vesel */
    --accent-dark: #FFB020;    /* Portocaliu inchis */
    --accent-light: #FFD680;   /* Galben deschis */
    
    --success: #4ECDC4;        /* Turcoaz, calm */
    --success-dark: #3BA99F;   /* Turcoaz inchis */
    --success-light: #6EDDD4;  /* Turcoaz deschis */
    
    /* Culori secundare */
    --navy: #2C3E50;           /* Albastru inchis pentru text */
    --navy-light: #34495E;     /* Albastru inchis deschis */
    --purple: #9B59B6;         /* Mov modern */
    --purple-light: #BB8FCE;   /* Mov deschis */
    --orange: #FF8C42;         /* Portocaliu vibrant */
    --orange-light: #FFA366;   /* Portocaliu deschis */
    --red: #E74C3C;            /* Rosu modern */
    --red-light: #EC7063;      /* Rosu deschis */
    --green: #2ECC71;          /* Verde modern */
    --green-light: #58D68D;    /* Verde deschis */
    
    /* Neutre */
    --white: #FFFFFF;
    --off-white: #FFFBF5;      /* Bej foarte deschis, cald */
    --light-gray: #F8F9FA;     /* Gri foarte deschis */
    --gray: #95A5A6;           /* Gri mediu */
    --dark: #2C3E50;           /* Inchis pentru text */
    
    /* Shadows cu noile culori */
    --shadow: 0 4px 20px rgba(74, 144, 226, 0.15);
    --shadow-lg: 0 10px 40px rgba(74, 144, 226, 0.2);
    --shadow-color: rgba(74, 144, 226, 0.1);
    
    /* Altele */
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 240, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(200, 220, 240, 0.3);
}

@keyframes headerGradient {
    0%, 100% {
        background-position: center, 0% bottom;
    }
    50% {
        background-position: center, 100% bottom;
    }
}


.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 250px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    position: relative;
}

.nav-link {
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    backdrop-filter: blur(5px);
    animation: navLinkFadeIn 0.6s ease backwards;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.15s; }
.nav-link:nth-child(3) { animation-delay: 0.2s; }
.nav-link:nth-child(4) { animation-delay: 0.25s; }
.nav-link:nth-child(5) { animation-delay: 0.3s; }
.nav-link:nth-child(6) { animation-delay: 0.35s; }
.nav-link:nth-child(7) { animation-delay: 0.4s; }
.nav-link:nth-child(8) { animation-delay: 0.45s; }

@keyframes navLinkFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 210, 240, 0.25), rgba(240, 200, 220, 0.2));
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.nav-link:hover::before {
    width: 300px;
    height: 300px;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.nav-link:hover::after {
    left: 100%;
}

.nav-link i {
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.nav-link span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(180, 210, 240, 0.3), rgba(240, 200, 220, 0.25));
    color: #5A7FA5;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 6px 20px rgba(180, 210, 240, 0.25),
        0 0 15px rgba(240, 200, 220, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(180, 210, 240, 0.4);
}

.nav-link:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #8FA8C5;
    filter: drop-shadow(0 2px 6px rgba(180, 210, 240, 0.4));
}

.nav-link:hover span {
    transform: translateX(2px);
    font-weight: 800;
}

.nav-link.active {
    background: linear-gradient(135deg, #B4D4E8 0%, #D4C4E8 50%, #E8D4C4 100%);
    color: #4A6FA5;
    box-shadow: 
        0 4px 15px rgba(180, 210, 240, 0.3),
        0 0 20px rgba(180, 210, 240, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(180, 210, 240, 0.5);
    transform: scale(1.02);
}

.nav-link.active i {
    color: #6A8FA5;
    filter: drop-shadow(0 2px 8px rgba(180, 210, 240, 0.4));
}

@keyframes iconBounce {
    0%, 100% { 
        transform: translateY(0) scale(1.2) rotate(0deg);
    }
    25% { 
        transform: translateY(-3px) scale(1.3) rotate(-5deg);
    }
    75% { 
        transform: translateY(-3px) scale(1.3) rotate(5deg);
    }
}

.nav-link.active span {
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Navigation with Submenu */
.nav-item-wrapper {
    position: relative;
}

.nav-link.has-submenu {
    padding-right: 40px;
    position: relative;
}

.submenu-arrow {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    color: inherit;
    line-height: 1;
    margin: auto 0;
}

.nav-item-wrapper:hover .submenu-arrow {
    transform: rotate(180deg) scale(1.2);
    color: #8FA8C5;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 240, 0.98));
    backdrop-filter: blur(15px);
    border-radius: var(--radius);
    box-shadow: 
        0 10px 40px rgba(45, 53, 97, 0.2),
        0 0 20px rgba(123, 45, 142, 0.1);
    padding: 12px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 2px solid rgba(180, 210, 240, 0.3);
    overflow: hidden;
}

.nav-submenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B4D4E8, #D4C4E8, #E8D4C4);
    background-size: 200% 100%;
    animation: submenuGradient 3s ease infinite;
}

@keyframes submenuGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.nav-item-wrapper:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-submenu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(123, 45, 142, 0.1), transparent);
    transition: width 0.3s ease;
}

.nav-submenu-link:hover::before {
    width: 100%;
}

.nav-submenu-link:hover {
    background: linear-gradient(90deg, rgba(123, 45, 142, 0.12), rgba(232, 168, 56, 0.08));
    color: #5A7FA5;
    border-left-color: #B4D4E8;
    padding-left: 28px;
    transform: translateX(5px);
}

.nav-submenu-link.active {
    background: linear-gradient(90deg, rgba(123, 45, 142, 0.15), rgba(232, 168, 56, 0.1));
    color: #5A7FA5;
    border-left-color: #D4C4E8;
    font-weight: 700;
    box-shadow: inset 0 0 15px rgba(180, 210, 240, 0.15);
}

.nav-submenu-link i {
    font-size: 6px;
    color: #5A7FA5;
    transition: all 0.3s ease;
}

.nav-submenu-link:hover i {
    transform: scale(1.5);
    color: #8FA8C5;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(255, 107, 157, 0.1));
    border: 2px solid rgba(123, 45, 142, 0.2);
    border-radius: 12px;
    cursor: pointer;
    padding: 12px 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.mobile-toggle:hover::before {
    left: 100%;
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, rgba(123, 45, 142, 0.2), rgba(232, 168, 56, 0.2));
    border-color: var(--purple);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--purple);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--orange);
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    min-height: calc(100vh - 80px - 300px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   HOME PAGE - Carousel
   ============================================ */
.home-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.home-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.75) 0%, rgba(74, 144, 226, 0.65) 50%, rgba(255, 200, 87, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.carousel-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    animation: carouselFadeIn 0.8s ease-in-out;
}

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

.carousel-title {
    font-family: 'Fredoka One', cursive;
    font-size: 38px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    color: var(--white);
    line-height: 1.2;
}

.carousel-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    max-width: 700px;
}

.carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.carousel-btn i {
    transition: transform 0.3s ease;
}

.carousel-btn:hover i {
    transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--navy);
    font-size: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Carousel Responsive */
@media (max-width: 768px) {
    .home-carousel-wrapper {
        height: 350px;
        border-radius: 0 0 15px 15px;
    }
    
    .carousel-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .carousel-description {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .carousel-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .carousel-overlay {
        padding: 20px;
    }
    
    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 12px;
    }
    
    .carousel-next {
        right: 12px;
    }
    
    .carousel-dots {
        bottom: 15px;
        padding: 6px 12px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .home-carousel-wrapper {
        height: 280px;
    }
    
    .carousel-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .carousel-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .carousel-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .carousel-overlay {
        padding: 15px;
    }
}

/* ============================================
   HOME PAGE - Hero
   ============================================ */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 50%, var(--accent) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

/* Hero Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    opacity: 0.85;
    animation: hero-float 6s ease-in-out infinite;
}

.hero-decoration svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.hero-star-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hero-star-2 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
    transform: scale(0.85);
}

.hero-balloon-1 {
    top: 20%;
    left: 3%;
    animation-delay: 1s;
    transform: scale(0.9);
}

.hero-balloon-2 {
    top: 30%;
    right: 6%;
    animation-delay: 3s;
    transform: scale(0.8);
}

.hero-heart-1 {
    top: 50%;
    left: 6%;
    animation-delay: 1.5s;
    transform: scale(0.75);
}

.hero-cloud-1 {
    top: 40%;
    right: 4%;
    animation-delay: 2.5s;
    transform: scale(0.7);
}

.hero-sun-1 {
    top: 60%;
    right: 8%;
    animation-delay: 0.8s;
    transform: scale(0.65);
}

.hero-moon-1 {
    top: 70%;
    left: 10%;
    animation-delay: 3.5s;
    transform: scale(0.6);
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(8deg);
    }
}

@media (max-width: 768px) {
    .hero-decoration {
        opacity: 0.7;
    }
    
    .hero-decoration svg {
        width: 25px;
        height: 25px;
    }
    
    .hero-star-1 { left: 3%; top: 10%; }
    .hero-star-2 { right: 3%; top: 15%; }
    .hero-balloon-1 { left: 1%; top: 12%; }
    .hero-balloon-2 { right: 2%; top: 20%; }
    .hero-heart-1 { left: 2%; top: 45%; }
    .hero-cloud-1 { right: 1%; top: 35%; }
    .hero-sun-1 { right: 3%; top: 55%; }
    .hero-moon-1 { left: 5%; top: 65%; }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content .lead {
    font-size: 22px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Feature Cards */
.features-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 8px;
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--purple), var(--red));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-light);
}

.feature-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 24px;
    color: #5A7FA5;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.feature-card .feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

/* ============================================
   SERVICES SECTION (Cresa, Gradinita, Before & After School)
   ============================================ */
.services-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--purple), var(--orange), var(--red));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
}

.service-card-primary {
    border-top: 4px solid var(--purple);
}

.service-card-primary:hover {
    border-color: var(--purple);
}

.service-card-secondary {
    border-top: 4px solid var(--orange);
}

.service-card-secondary:hover {
    border-color: var(--orange);
}

.service-card-tertiary {
    border-top: 4px solid var(--red);
}

.service-card-tertiary:hover {
    border-color: var(--red);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    transition: all 0.3s;
}

.service-card-primary .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(74, 144, 226, 0.05));
    color: #5A7FA5;
}

.service-card-secondary .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.15), rgba(232, 168, 56, 0.05));
    color: #8FA8C5;
}

.service-card-tertiary .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(232, 72, 85, 0.15), rgba(232, 72, 85, 0.05));
    color: var(--red);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card-primary:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.service-card-secondary:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
}

.service-card-tertiary:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: white;
}

.service-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 400;
}

.service-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 40px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(45, 53, 97, 0.08);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #8FA8C5;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.service-card-primary .service-features li i {
    color: #5A7FA5;
}

.service-card-secondary .service-features li i {
    color: #8FA8C5;
}

.service-card-tertiary .service-features li i {
    color: var(--red);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(45, 53, 97, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(45, 53, 97, 0.12);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--off-white);
    color: #5A7FA5;
}

.faq-question.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.faq-question span {
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: inherit;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-accordion {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 0 20px 18px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.event-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 53, 97, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.15);
}

.event-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 20px;
    display: flex;
    gap: 15px;
    flex: 1;
}

.event-date {
    min-width: 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-day {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Fredoka One', cursive;
}

.event-month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 400;
}

.event-details p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--gray);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-meta i {
    color: #5A7FA5;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5A7FA5;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-link:hover {
    color: #8FA8C5;
    gap: 12px;
}

@media (max-width: 768px) {
    .events-section {
        padding: 40px 0;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .event-content {
        padding: 18px;
    }
    
    .event-date {
        min-width: 55px;
        padding: 10px 6px;
    }
    
    .event-day {
        font-size: 24px;
    }
    
    .event-details h3 {
        font-size: 18px;
    }
}

/* ============================================
   EXTRACURRICULAR ACTIVITIES SECTION
   ============================================ */
.activities-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.activity-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 53, 97, 0.1);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.15);
}

.activity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1) rotate(5deg);
}

.activity-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 400;
}

.activity-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .activities-section {
        padding: 40px 0;
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }
    
    .activity-card {
        padding: 25px 20px;
    }
    
    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .activity-card h3 {
        font-size: 20px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 53, 97, 0.1);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.15);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 400;
}

.why-choose-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */
.cta-section {
    padding: 70px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 53, 97, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 400;
}

.video-info p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RECENT ACTIVITIES SECTION
   ============================================ */
.recent-activities-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.recent-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.recent-activity-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 53, 97, 0.1);
    transition: all 0.3s ease;
}

.recent-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.15);
}

.activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
}

.activity-date {
    display: inline-block;
    color: #5A7FA5;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 400;
}

.activity-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.activity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5A7FA5;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.activity-link:hover {
    color: #8FA8C5;
    gap: 12px;
}

@media (max-width: 768px) {
    .why-choose-section, .videos-section, .recent-activities-section {
        padding: 40px 0;
    }
    
    .why-choose-grid, .videos-grid, .recent-activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   QUOTE SECTION (Additional Info) - Modern Design
   ============================================ */
.quote-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0E8F5 50%, #FFF4E6 100%);
    overflow: hidden;
    isolation: isolate;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(180, 210, 240, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 200, 220, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.quote-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(200, 220, 240, 0.4);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
}

.quote-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #4A6FA5;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.quote-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #B4D4E8, transparent);
    border-radius: 2px;
}

.quote-content p {
    font-size: 20px;
    color: #5A6B7A;
    line-height: 1.9;
    font-weight: 500;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 60px 0;
    }
    
    .quote-content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .quote-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .quote-content h2::after {
        width: 60px;
        height: 3px;
    }
    
    .quote-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-top: 20px;
    }
}

/* ============================================
   INFO PAGE (Events & FAQ)
   ============================================ */
.info-page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.info-page-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 400;
}

.info-page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.info-tabs-section {
    background: var(--off-white);
    padding: 20px 0;
    border-bottom: 2px solid var(--light-gray);
}

.info-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.info-tab {
    padding: 15px 35px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
}

.info-tab:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 45, 142, 0.3);
}

.info-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.info-tab-content {
    display: none;
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.info-tab-content.active {
    display: block;
}

.events-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-accordion-full {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.no-content-message {
    text-align: center;
    padding: 80px 30px;
    color: var(--gray);
}

.no-content-message i {
    font-size: 64px;
    color: var(--light-gray);
    margin-bottom: 20px;
    display: block;
}

.no-content-message h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 400;
}

.no-content-message p {
    font-size: 16px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .info-page-header {
        padding: 40px 0;
    }
    
    .info-page-header h1 {
        font-size: 32px;
    }
    
    .info-tabs {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .info-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }
    
    .info-tab-content {
        padding: 40px 0;
    }
    
    .events-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .faq-accordion-full {
        padding: 0 20px;
    }
}

/* ============================================
   PAGE CONTENT (Dynamic Pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    padding: 50px 0;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 42px;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--off-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}

.page-body h1, .page-body h2, .page-body h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-family: 'Baloo 2', cursive;
}

.page-body h1 { font-size: 36px; }
.page-body h2 { font-size: 30px; }
.page-body h3 { font-size: 24px; }

.page-body p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.page-body img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.page-body ul, .page-body ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-body li {
    margin-bottom: 8px;
    font-size: 17px;
    color: #444;
}

.page-body blockquote {
    border-left: 4px solid var(--orange);
    padding: 15px 25px;
    margin: 20px 0;
    background: var(--light-gray);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--navy);
}

/* Layout-uri pentru pagini */
.page-body .page-layout-2cols,
.page-body .page-layout-3cols {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.page-body .page-layout-2cols > div,
.page-body .page-layout-3cols > div {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.page-body .page-layout-2cols > div:hover,
.page-body .page-layout-3cols > div:hover {
    border-color: var(--orange-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Card boxes */
.page-body .page-card-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin: 25px 0;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--purple);
    transition: var(--transition);
}

.page-body .page-card-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.page-body .page-card-box h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-family: 'Baloo 2', cursive;
}

/* Highlight boxes */
.page-body .page-highlight {
    background: linear-gradient(135deg, #FFF9E6, #FFE8CC);
    border-left: 4px solid var(--orange);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(232, 168, 56, 0.15);
}

.page-body .page-highlight p {
    margin: 0;
    color: var(--navy);
    font-weight: 600;
}

.page-body .page-highlight i {
    color: #8FA8C5;
    margin-right: 8px;
}

/* Page Gallery */
.page-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.page-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.page-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    margin-top: 0;
}

.footer-wave {
    position: relative;
    margin-bottom: -2px;
}

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

.footer-content {
    background: var(--navy);
    color: var(--white);
    padding: 30px 0 0;
    position: relative;
    overflow: hidden;
}

/* Footer Decorative Elements */
.footer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-decoration {
    position: absolute;
    opacity: 0.95;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.footer-decoration svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)) brightness(1.1);
}

.footer-star-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.footer-star-2 {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
    transform: scale(0.8);
}

.footer-balloon-1 {
    top: 20%;
    left: 5%;
    animation-delay: 1s;
    transform: scale(0.9);
}

.footer-balloon-2 {
    top: 30%;
    right: 8%;
    animation-delay: 3s;
    transform: scale(0.85);
}

.footer-heart-1 {
    top: 50%;
    left: 8%;
    animation-delay: 1.5s;
    transform: scale(0.75);
}

.footer-cloud-1 {
    top: 40%;
    right: 5%;
    animation-delay: 2.5s;
    transform: scale(0.7);
}

.footer-star-3 {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
    transform: scale(0.65);
}

.footer-heart-2 {
    top: 70%;
    right: 15%;
    animation-delay: 3.5s;
    transform: scale(0.7);
}

.footer-balloon-3 {
    top: 55%;
    left: 3%;
    animation-delay: 4s;
    transform: scale(0.8);
}

.footer-sun-1 {
    top: 65%;
    right: 3%;
    animation-delay: 1.5s;
    transform: scale(0.6);
}

.footer-moon-1 {
    top: 75%;
    left: 12%;
    animation-delay: 2.8s;
    transform: scale(0.55);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.95;
    }
    50% {
        transform: translateY(-12px) rotate(5deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .footer-decoration {
        opacity: 0.9;
    }
    
    .footer-decoration svg {
        width: 25px;
        height: 25px;
        filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5)) brightness(1.15);
    }
    
    .footer-star-1 { left: 5%; top: 10%; }
    .footer-star-2 { right: 5%; top: 15%; }
    .footer-balloon-1 { left: 2%; top: 12%; }
    .footer-balloon-2 { right: 3%; top: 20%; }
    .footer-heart-1 { left: 3%; top: 45%; }
    .footer-cloud-1 { right: 2%; top: 35%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.footer-col h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 18px;
    color: #8FA8C5;
    margin-bottom: 5px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #8FA8C5;
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-col p i {
    color: #8FA8C5;
    margin-right: 8px;
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 200, 87, 0.4);
}

.footer-col-logo {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-logo {
    height: 90px;
    width: auto;
    max-width: 300px;
    filter: brightness(1.3) drop-shadow(0 4px 15px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.4) drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}
    object-fit: contain;
    transition: var(--transition);
    background: transparent;
    mix-blend-mode: multiply;
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: brightness(1.3) drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.footer-tagline {
    color: rgba(255,255,255,0.95);
    font-size: 17px;
    font-weight: 700;
    margin-top: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* ============================================
   QUICK INFO BUTTON (FLOATING)
   ============================================ */
.quick-info-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(123, 45, 142, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 24px;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.quick-info-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(123, 45, 142, 0.5);
}

.quick-info-btn span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-info-btn i {
    font-size: 28px;
}

/* Quick Info Modal */
.quick-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.quick-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 53, 97, 0.8);
    backdrop-filter: blur(5px);
}

.quick-info-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 10001;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

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

.quick-info-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    color: white;
    padding: 25px 30px;
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.quick-info-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-info-header h2 i {
    color: #8FA8C5;
}

.quick-info-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-info-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.quick-info-body {
    padding: 30px;
}

.quick-info-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--light-gray);
}

.quick-info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.quick-info-section h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-info-section h3 i {
    color: #8FA8C5;
    font-size: 22px;
}

.quick-info-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.quick-info-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--off-white);
    border-radius: 12px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.quick-info-links a:hover {
    background: var(--white);
    border-color: var(--orange-light);
    transform: translateX(5px);
    color: #5A7FA5;
}

.quick-info-links a i {
    color: #8FA8C5;
    font-size: 16px;
    width: 20px;
}

.quick-info-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-info-contact a,
.quick-info-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--off-white);
    border-radius: 12px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    margin: 0;
}

.quick-info-contact a:hover {
    background: var(--white);
    transform: translateX(5px);
    color: #5A7FA5;
}

.quick-info-contact i {
    color: #8FA8C5;
    font-size: 18px;
    width: 22px;
}

.quick-info-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-info-location {
    padding: 18px;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.quick-info-location strong {
    display: block;
    color: #5A7FA5;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Baloo 2', cursive;
}

.quick-info-location p {
    margin: 6px 0;
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.quick-info-location p i {
    color: #8FA8C5;
    margin-top: 3px;
    font-size: 14px;
    width: 16px;
}

.quick-info-location a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

.quick-info-location a:hover {
    color: #5A7FA5;
}

@media (max-width: 768px) {
    .quick-info-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .quick-info-btn span {
        font-size: 9px;
    }
    
    .quick-info-btn i {
        font-size: 24px;
    }
    
    .quick-info-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .quick-info-header {
        padding: 20px;
    }
    
    .quick-info-header h2 {
        font-size: 20px;
    }
    
    .quick-info-body {
        padding: 20px;
    }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed !important;
    bottom: 110px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    background-color: #25D366 !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    cursor: pointer !important;
    z-index: 10000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    font-size: 24px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5) !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    background-color: #25D366 !important;
}

.whatsapp-float span {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: white !important;
}

.whatsapp-float i {
    font-size: 28px !important;
    color: white !important;
}



/* Positions - WhatsApp deasupra butonului Info (care e la bottom: 30px) */
.whatsapp-float.whatsapp-bottom-right {
    bottom: 110px !important; /* 30px (Info) + 70px (Info height) + 10px (gap) = 110px */
    right: 30px !important;
    left: auto !important;
    top: auto !important;
}

.whatsapp-float.whatsapp-bottom-left {
    bottom: 110px !important; /* 30px (Info) + 70px (Info height) + 10px (gap) = 110px */
    left: 30px !important;
    top: auto !important;
    right: auto !important;
}

.whatsapp-float.whatsapp-top-right {
    top: 100px !important;
    right: 30px !important;
    bottom: auto !important;
    left: auto !important;
}

.whatsapp-float.whatsapp-top-left {
    top: 100px !important;
    left: 30px !important;
    bottom: auto !important;
    right: auto !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 90px;
        right: 20px;
        font-size: 20px;
    }
    
    .whatsapp-float span {
        font-size: 9px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .whatsapp-float.whatsapp-bottom-right {
        bottom: 90px; /* 20px (Info mobile) + 60px (Info height mobile) + 10px (gap) = 90px */
        right: 20px;
    }
    
    .whatsapp-float.whatsapp-bottom-left {
        bottom: 90px; /* 20px (Info mobile) + 60px (Info height mobile) + 10px (gap) = 90px */
        left: 20px;
    }
    
    .whatsapp-float.whatsapp-top-right {
        top: 80px;
        right: 20px;
    }
    
    .whatsapp-float.whatsapp-top-left {
        top: 80px;
        left: 20px;
    }
}
    
    .quick-info-links {
        grid-template-columns: 1fr;
    }
    
    .quick-info-locations {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.15);
    margin-top: 50px;
    padding: 25px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.footer-bottom p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   PAGES LISTING (index.php)
   ============================================ */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
}

.page-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.page-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.page-card-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.5);
}

.page-card-body {
    padding: 25px;
}

.page-card-body h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
}

.page-card-body p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-card-body .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5A7FA5;
    font-weight: 700;
    font-size: 15px;
}

.page-card-body .read-more:hover {
    color: #8FA8C5;
    gap: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 0;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 20px;
        border-radius: var(--radius-sm);
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content .lead {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pages-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }

/* Lightbox for gallery */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Alert messages */
.alert {
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    margin: 20px auto;
    max-width: 1200px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid var(--green);
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--red);
}

/* No pages message */
.no-content {
    text-align: center;
    padding: 80px 30px;
    color: var(--gray);
}

.no-content i {
    font-size: 60px;
    color: var(--orange-light);
    margin-bottom: 20px;
    display: block;
}

.no-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 10px;
}

/* ============================================
   PRICES PAGE - SUPER WOW DESIGN
   ============================================ */
.prices-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 50%, var(--accent) 100%);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.prices-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.prices-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.prices-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.prices-hero-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.prices-hero-content .lead {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 20px;
}

.prices-hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-hero {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.badge-hero:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.badge-hero i {
    margin-right: 8px;
    color: #8FA8C5;
}

.prices-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.prices-hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.prices-section {
    padding: 50px 0;
    background: var(--off-white);
}

.prices-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--purple), var(--orange), var(--red));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 50px rgba(45, 53, 97, 0.2);
    border-color: var(--orange-light);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--red);
    color: white;
    padding: 8px 50px;
    font-weight: 800;
    font-size: 12px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.discount-badge i {
    margin-right: 5px;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 36px;
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.price-card:hover .price-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.price-header h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

.price-amount {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 2px dashed var(--light-gray);
    border-bottom: 2px dashed var(--light-gray);
    background: linear-gradient(to bottom, transparent, var(--off-white), transparent);
}

.price-original {
    margin-bottom: 10px;
}

.old-price {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 600;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-value {
    font-family: 'Fredoka One', cursive;
    font-size: 38px;
    color: var(--navy);
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    color: var(--navy);
    font-weight: 700;
}

.price-period {
    font-size: 16px;
    color: var(--gray);
    font-weight: 600;
}

.discount-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
}

.price-section {
    margin-bottom: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.price-section h4 {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 700;
}

.price-section h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-section h4 i {
    font-size: 16px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list {
    margin: 0;
    padding: 0;
}

.price-list li {
    padding: 8px 0;
    color: var(--navy);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    border-bottom: 1px dotted var(--light-gray);
    transition: var(--transition);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li:hover {
    padding-left: 3px;
    color: #5A7FA5;
}

.price-list li i {
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 12px;
}

.price-list li i {
    margin-top: 6px;
    flex-shrink: 0;
}

.features-list li {
    font-size: 14px;
    color: var(--gray);
}

.price-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.btn-price {
    display: block;
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.btn-price:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.btn-price i {
    margin-right: 10px;
}

.prices-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-light);
}

.info-card i {
    font-size: 32px;
    color: #8FA8C5;
    margin-bottom: 12px;
    display: block;
}

.info-card h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.no-prices {
    text-align: center;
    padding: 100px 30px;
    color: var(--gray);
}

.no-prices i {
    font-size: 70px;
    color: var(--orange-light);
    margin-bottom: 25px;
    display: block;
}

.no-prices h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .prices-hero-content h1 {
        font-size: 36px;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-value {
        font-size: 38px;
    }
    
    .prices-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
/* Contact Page - New Design */
.contact-page-section {
    padding: 50px 0 70px;
    background: var(--off-white);
}

.contact-page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 30px 0;
}

.contact-header-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-dec {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.contact-star-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.contact-heart-1 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.contact-balloon-1 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.contact-page-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.contact-page-header p {
    font-size: 17px;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.contact-error {
    text-align: center;
    padding: 60px 30px;
    color: var(--gray);
}

.contact-error i {
    font-size: 60px;
    color: var(--orange-light);
    margin-bottom: 20px;
    display: block;
}

.contact-main-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.12);
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    box-shadow: 0 5px 20px rgba(123, 45, 142, 0.3);
}

.contact-main-card h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 30px;
}

.contact-info-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--off-white);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-box:hover {
    background: var(--white);
    border-color: var(--purple-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.contact-box-content {
    flex: 1;
    text-align: left;
}

.contact-box-content strong {
    display: block;
    font-size: 12px;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-box-content span {
    display: block;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.4;
}

.contact-social-compact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.contact-social-compact h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-social-btn.facebook {
    background: #1877F2;
}

.contact-social-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

.contact-social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Contact Locations */
.contact-locations {
    margin-top: 50px;
}

.contact-locations-title {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.contact-locations-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: 2px;
}

.contact-locations-title i {
    color: #8FA8C5;
    margin-right: 10px;
}

.contact-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-location-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(45, 53, 97, 0.12);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 53, 97, 0.2);
    border-color: var(--purple-light);
}

.contact-location-header {
    padding: 25px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.contact-location-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: white;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-location-header h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contact-location-body {
    padding: 25px 20px;
}

.contact-location-name {
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.contact-location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-location-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--off-white);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-location-detail:hover {
    background: var(--white);
    border-color: var(--purple-light);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-location-detail i {
    color: #5A7FA5;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    font-size: 16px;
}

.contact-location-detail span {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

@media (max-width: 768px) {
    .contact-page-header h1 {
        font-size: 28px;
    }
    
    .contact-info-compact {
        grid-template-columns: 1fr;
    }
    
    .contact-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-main-card {
        padding: 30px 20px;
    }
    
    .contact-location-card {
        margin-bottom: 0;
    }
    
    .nav-item-wrapper {
        width: 100%;
    }
    
    .nav-link.has-submenu {
        padding-right: 30px;
    }
    
    .submenu-arrow {
        right: 10px;
        font-size: 9px !important;
        top: 0;
        bottom: 0;
    }
    
    .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        margin-top: 0;
        margin-left: 0;
        padding: 5px 0 5px 30px;
        min-width: auto;
        width: 100%;
        border: none;
        border-left: 2px solid rgba(123, 45, 142, 0.2);
    }
    
    .nav-item-wrapper:hover .nav-submenu {
        transform: none;
    }
    
    .nav-submenu-link {
        padding: 8px 20px 8px 30px;
        font-size: 13px;
    }
    
    .nav-submenu-link:hover {
        padding-left: 35px;
    }
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 50%, var(--accent) 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.error-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.error-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    color: #8FA8C5;
    border: 3px solid rgba(255,255,255,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.error-hero-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 120px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1;
}

.error-hero-content h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 36px;
    margin: 20px 0;
    color: var(--white);
}

.error-hero-content .lead {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-error-primary,
.btn-error-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.btn-error-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: var(--orange);
    color: var(--white);
}

.btn-error-secondary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-error-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.5);
}

.error-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.error-hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.error-suggestions {
    padding: 80px 0;
    background: var(--off-white);
}

.error-suggestions h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.suggestion-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.12);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.suggestion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(45, 53, 97, 0.2);
    border-color: var(--orange-light);
}

.suggestion-card i {
    font-size: 48px;
    color: #8FA8C5;
    margin-bottom: 20px;
    display: block;
}

.suggestion-card h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
}

.suggestion-card p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .error-hero-content h1 {
        font-size: 80px;
    }
    
    .error-hero-content h2 {
        font-size: 28px;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SOCIAL MEDIA PAGE
   ============================================ */
/* Social Media Page - Compact Design */
.social-page-section {
    padding: 40px 0 60px;
    background: var(--off-white);
}

.social-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-page-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 10px;
}

.social-page-header p {
    font-size: 16px;
    color: var(--gray);
}

.social-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card-compact {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(45, 53, 97, 0.1);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--light-gray);
}

.social-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 53, 97, 0.15);
    border-color: var(--purple-light);
}

.social-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.social-card-content {
    flex: 1;
    min-width: 0;
}

.social-card-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.social-card-content p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.social-card-arrow {
    color: var(--gray);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.social-card-compact:hover .social-card-arrow {
    color: #5A7FA5;
    transform: translateX(5px);
}

.no-social {
    text-align: center;
    padding: 100px 30px;
    color: var(--gray);
}

.no-social i {
    font-size: 70px;
    color: var(--orange-light);
    margin-bottom: 25px;
    display: block;
}

.no-social h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .social-page-header h1 {
        font-size: 28px;
    }
    
    .social-grid-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-card-compact {
        padding: 15px;
    }
    
    .social-card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .social-card-content h3 {
        font-size: 16px;
    }
    
    .social-card-content p {
        font-size: 12px;
    }
    
    /* Contact Page Mobile */
    .contact-page-header h1 {
        font-size: 28px;
    }
    
    .contact-info-compact {
        grid-template-columns: 1fr;
    }
    
    .contact-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-main-card {
        padding: 30px 20px;
    }
    
    .contact-box-content span {
        font-size: 13px;
    }
    
    /* Preturi Page Mobile */
    .prices-section {
        padding: 30px 0;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    /* Acasa Page Mobile */
    .services-section {
        padding: 40px 0;
    }
    
    .services-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .service-features li {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .section-title {
        margin-bottom: 25px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    /* Page Content Mobile */
    .page-body {
        padding: 20px 15px;
        font-size: 16px;
    }
    
    .page-body img {
        max-width: 100%;
        height: auto;
    }
    
    .page-body iframe {
        max-width: 100%;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 20px;
    }
    
    /* Hero decorations - Hide on mobile for performance */
    .hero-decorations,
    .contact-header-decorations {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Contact Page Small Mobile */
    .contact-page-header h1 {
        font-size: 24px;
    }
    
    .contact-main-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .contact-main-card h2 {
        font-size: 22px;
    }
    
    .contact-box-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-locations-title {
        font-size: 24px;
    }
    
    /* Social Page Small Mobile */
    .social-page-header h1 {
        font-size: 24px;
    }
    
    /* Preturi Page Small Mobile */
    .prices-header h1 {
        font-size: 24px;
    }
    
    /* Acasa Page Small Mobile */
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content .lead {
        font-size: 16px;
    }
    
    .services-section {
        padding: 30px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 20px 18px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .service-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .service-features li {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .section-title {
        margin-bottom: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    /* Page Content Small Mobile */
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-body {
        padding: 15px 10px;
        font-size: 15px;
    }
    
    /* Footer Small Mobile */
    .footer-logo {
        height: 60px;
        max-width: 200px;
    }
    
    .logo-img {
        height: 70px;
        max-width: 200px;
    }
    
    /* Floating buttons Small Mobile */
    .info-float,
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .info-float span,
    .whatsapp-float span {
        font-size: 9px;
    }
}
