/* ============================================
   BUBBLES MAGICAL CHARACTERS - MAIN STYLESHEET
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    --pink-hot: #e91e8c;
    --pink-light: #ff6eb4;
    --pink-pastel: #ffc0e0;
    --pink-bg: #fff0f6;
    --red-brand: #d42b2b;
    --yellow: #ffd700;
    --yellow-light: #fff3b0;
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --green: #22c55e;
    --purple: #a855f7;
    --orange: #f97316;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray-100: #f7f7f8;
    --gray-200: #e5e5ea;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --shadow-sm: 0 2px 8px rgba(233, 30, 140, 0.1);
    --shadow-md: 0 8px 24px rgba(233, 30, 140, 0.15);
    --shadow-lg: 0 16px 48px rgba(233, 30, 140, 0.2);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- FLOATING BALLOONS ---------- */
.floating-balloons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 900;
    overflow: hidden;
}

.balloon {
    position: absolute;
    opacity: 0.45;
    animation: floatUp 15s linear infinite;
    filter: hue-rotate(-50deg) drop-shadow(2px 4px 4px rgba(0,0,0,0.1));
}

.balloon-1 { left: 5%; animation-delay: 0s; animation-duration: 18s; font-size: 3rem; }
.balloon-2 { left: 20%; animation-delay: 3s; animation-duration: 14s; font-size: 4.5rem; }
.balloon-3 { left: 40%; animation-delay: 6s; animation-duration: 20s; font-size: 3.5rem; }
.balloon-4 { left: 60%; animation-delay: 2s; animation-duration: 16s; font-size: 5rem; }
.balloon-5 { left: 80%; animation-delay: 5s; animation-duration: 22s; font-size: 3.8rem; }
.balloon-6 { left: 92%; animation-delay: 8s; animation-duration: 17s; font-size: 4.2rem; }

@keyframes floatUp {
    0% { transform: translateY(110vh); opacity: 0; }
    10% { opacity: 0.45; }
    90% { opacity: 0.45; }
    100% { transform: translateY(-20vh); opacity: 0; }
}

/* ---------- NAVIGATION ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--pink-pastel);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--pink-hot);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-bubble {
    font-size: 1.6rem;
    animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

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

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--pink-hot);
    background: var(--pink-bg);
}

.nav-cta {
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-light)) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md) !important;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-hot)) !important;
}

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--pink-hot);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-bg.webp') center/cover no-repeat;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(233, 30, 140, 0.85) 0%,
        rgba(255, 110, 180, 0.75) 30%,
        rgba(168, 85, 247, 0.7) 70%,
        rgba(59, 130, 246, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
    line-height: 1.1;
}

.title-line-2 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: var(--yellow);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.hero-confetti span {
    position: absolute;
    font-size: 2rem;
    animation: confettiFall 6s linear infinite;
    opacity: 0.4;
}

.hero-confetti span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-confetti span:nth-child(2) { left: 25%; animation-delay: 1.2s; }
.hero-confetti span:nth-child(3) { left: 45%; animation-delay: 2.5s; }
.hero-confetti span:nth-child(4) { left: 65%; animation-delay: 0.8s; }
.hero-confetti span:nth-child(5) { left: 80%; animation-delay: 3.2s; }
.hero-confetti span:nth-child(6) { left: 92%; animation-delay: 1.8s; }

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--pink-hot), var(--purple));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(233, 30, 140, 0.5);
}

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

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

.btn-large { padding: 18px 40px; font-size: 1.15rem; }
.btn-full { width: 100%; }

/* ---------- SECTION STYLES ---------- */
.section-header { text-align: center; margin-bottom: 48px; }

.section-emoji {
    display: block;
    font-size: 3rem;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite;
}

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

.camera-emoji {
    position: relative;
    display: inline-block;
}

.camera-emoji::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 70%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    animation: flashEffect 3.5s infinite;
    z-index: 10;
    box-shadow: 0 0 20px 10px rgba(255,255,255,0.8);
}

@keyframes flashEffect {
    0%, 85% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    87% { transform: translate(-50%, -50%) scale(6); opacity: 1; filter: blur(1px); }
    89% { transform: translate(-50%, -50%) scale(8); opacity: 1; filter: blur(3px); background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0) 70%); box-shadow: 0 0 40px 20px rgba(255,255,255,1); }
    93% { transform: translate(-50%, -50%) scale(2); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--pink-hot);
    margin-bottom: 16px;
    text-shadow: 2px 2px 0px var(--pink-pastel), 4px 4px 8px rgba(233, 30, 140, 0.3);
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white), var(--pink-bg));
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.service-card-content {
    padding: 28px;
}

.service-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pink-hot);
    margin-bottom: 12px;
}

.service-card-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.service-features li {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-features li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e91e8c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

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

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

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-image-decoration {
    position: absolute;
    inset: -12px;
    border-radius: var(--radius-xl);
    border: 4px dashed var(--pink-pastel);
    z-index: -1;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content .section-title { text-align: left; }

.about-text {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--pink-bg), var(--yellow-light));
    border-radius: var(--radius-md);
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--pink-hot);
}

.stat-label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ---------- GALLERY / SOCIAL ---------- */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pink-bg), var(--white));
    position: relative;
    z-index: 1;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
}

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

.social-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.instagram-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-radius: var(--radius-md); }
.tiktok-icon { background: linear-gradient(135deg, #010101, #69c9d0); border-radius: var(--radius-md); }
.facebook-icon { background: linear-gradient(135deg, #1877f2, #3b5998); border-radius: var(--radius-md); }

.social-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
}

.social-handle {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pink-hot), var(--purple));
    position: relative;
    z-index: 1;
}

.contact .section-title { color: var(--white); }
.contact .section-emoji { filter: brightness(1.2); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info { color: var(--white); }

.contact-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.sponsor-link {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    margin: 0 auto;
}

.sponsor-link:hover {
    transform: translateY(-2px);
}

.sponsor-logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    opacity: 0.95;
    transition: var(--transition);
}

.sponsor-link:hover .sponsor-logo-img {
    opacity: 1;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.contact-icon { font-size: 1.8rem; }

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item span {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.contact .btn-primary {
    background: var(--white);
    color: var(--pink-hot);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pink-hot);
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-hot);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
    background: var(--white);
}

.form-group textarea { resize: vertical; }

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    padding: 48px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content { color: var(--white); }

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pink-light);
    margin-bottom: 8px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--pink-hot);
    transform: translateY(-3px);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    margin-top: 12px;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--pink-hot);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* ---------- LEGAL PAGES ---------- */
.legal-header {
    padding: 150px 20px 60px;
    background: linear-gradient(135deg, var(--pink-hot), var(--purple));
    color: var(--white);
    text-align: center;
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    margin-bottom: 16px;
}

.legal-content {
    padding: 80px 20px;
    background: var(--white);
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-family: var(--font-display);
    color: var(--pink-hot);
    margin: 40px 0 16px;
    font-size: 1.8rem;
}

.legal-content p, .legal-content ul {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-content ul {
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

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

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

/* Scroll reveal */
.service-card,
.social-card,
.about-image-wrapper,
.about-content,
.contact-info,
.contact-form-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.service-card.visible,
.social-card.visible,
.about-image-wrapper.visible,
.about-content.visible,
.contact-info.visible,
.contact-form-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.social-card:nth-child(2) { transition-delay: 0.1s; }
.social-card:nth-child(3) { transition-delay: 0.2s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .social-links-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .about-content,
    .about-content .section-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 2px solid var(--pink-pastel);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .service-card-content {
        text-align: center;
    }

    .service-features li {
        justify-content: center;
        text-align: center;
    }

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

    .contact-item {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
}
