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

:root {
    /* Color Palette */
    --bg-dark: #0a0915;
    --bg-card: rgba(20, 18, 42, 0.6);
    --bg-card-hover: rgba(28, 25, 58, 0.8);
    --primary: #00f0ff; /* Neon Cyan */
    --primary-glow: rgba(0, 240, 255, 0.4);
    --secondary: #9d00ff; /* Neon Violet */
    --secondary-glow: rgba(157, 0, 255, 0.4);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(0, 240, 255, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-neon: 0 0 20px var(--primary-glow);
    --shadow-neon-sec: 0 0 20px var(--secondary-glow);
    --glass-blur: blur(12px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Background Gradients */
.bg-gradient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}
.glow-1 {
    top: -10%;
    left: -10%;
    background: var(--primary);
}
.glow-2 {
    bottom: -10%;
    right: -10%;
    background: var(--secondary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1f1d36;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 9, 21, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 9, 21, 0.9);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-fast);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -2;
    filter: brightness(0.6);
}
.hero-content {
    max-width: 650px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.5s infinite alternate;
}
.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}
.hero-title span {
    background: linear-gradient(135deg, var(--primary) 20%, var(--secondary) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: var(--shadow-neon);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Stats Banner */
.stats-banner {
    background: rgba(20, 18, 42, 0.4);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item h3 {
    font-size: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Common Layout */
section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}
.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition-fast);
}
.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-neon);
}
.service-card:hover::before {
    opacity: 1;
}
.service-icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 12px;
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.1);
}
.service-card:hover .service-icon {
    background: rgba(0, 240, 255, 0.1);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}
.service-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}
.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}
.service-card:hover .service-link {
    color: var(--text-main);
}
.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* Products Section */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}
.tab-btn:hover, .tab-btn.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-normal);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-neon-sec);
}
.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}
.product-card:hover .product-image-container img {
    transform: scale(1.08);
}
.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 9, 21, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
}
.product-info {
    padding: 24px;
}
.product-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.product-info p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}
.product-spec {
    font-size: 12px;
    color: var(--text-muted);
}
.product-spec span {
    display: block;
    color: var(--text-main);
    font-weight: 600;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}


/* FAQ & Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
}
.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform var(--transition-normal);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 14px;
}
.faq-item.active {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

/* Contact Form */
.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: var(--glass-blur);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-title {
    font-size: 24px;
    margin-bottom: 8px;
}
.form-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}
textarea.form-input {
    resize: none;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer */
.footer {
    background: #06050b;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 24px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--primary);
}
.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}
.contact-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-info-item span {
    line-height: 1.4;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 40px;
    color: var(--text-muted);
    font-size: 13px;
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}
.social-icon:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

/* Animations & Reveals */
@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 4px var(--primary-glow); }
    100% { transform: scale(1.1); box-shadow: 0 0 10px var(--primary); }
}

@keyframes float-glow-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, 80px) scale(1.25); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-glow-2 {
    0% { transform: translate(0, 0) scale(1.2); }
    50% { transform: translate(-140px, -60px) scale(0.85); }
    100% { transform: translate(0, 0) scale(1.2); }
}

.glow-1 {
    animation: float-glow-1 25s infinite ease-in-out;
}

.glow-2 {
    animation: float-glow-2 30s infinite ease-in-out;
}

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

.service-card:hover .service-icon {
    animation: float-icon 2.5s infinite ease-in-out;
}

/* Button Shine Sweep Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::after {
    left: 150%;
}

/* Hero Content Load-in Animation */
.hero-content > * {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-load 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .badge { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.3s; }
.hero-content p { animation-delay: 0.45s; }
.hero-content .hero-buttons { animation-delay: 0.6s; }

@keyframes hero-load {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.reveal-child > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-child.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Children Delay */
.reveal-child.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-child.active > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-child.active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-child.active > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-child.active > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-child.active > *:nth-child(6) { transition-delay: 0.55s; }


/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title { font-size: 52px; }
    .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 68px;
        position: relative;
    }
    .logo {
        font-size: 17px;
        max-width: calc(100% - 54px);
    }
    .logo span {
        white-space: normal;
        line-height: 1.05;
    }
    .nav-cta { display: none; }
    .menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
    }
    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        background: rgba(10, 9, 21, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 14px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
        backdrop-filter: var(--glass-blur);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        display: block;
        padding: 13px 14px;
        border-radius: 10px;
        font-size: 16px;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(0, 240, 255, 0.08);
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 70px;
        text-align: center;
    }
    .hero-content { margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .section-header h2 { font-size: 34px; }
    section { padding: 72px 0; }
    #kids-softplay-featured {
        padding: 72px 0 !important;
    }
    #kids-softplay-featured .container > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    #kids-softplay-featured h2 {
        font-size: 32px !important;
    }
    #kids-softplay-featured .container > div > div:last-child {
        height: 280px !important;
    }
    .product-meta {
        align-items: flex-start;
        gap: 16px;
        flex-direction: column;
    }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; gap: 24px; }
    .contact-box { padding: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .badge {
        white-space: normal;
        justify-content: center;
        line-height: 1.35;
    }
    .hero-title {
        font-size: 36px;
        line-height: 1.08;
    }
    .hero-description { font-size: 16px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .services-grid, .products-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item h3 { font-size: 34px; }
    .section-header h2 { font-size: 30px; }
    .service-card,
    .product-info,
    .contact-box {
        padding: 24px;
    }
    .product-image-container { height: 220px; }
    #kids-softplay-featured h2 {
        font-size: 28px !important;
    }
    #kids-softplay-featured .container > div > div:last-child {
        height: 230px !important;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
