/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
    /* Primary Colors */
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #ff7e5f;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    
    /* Background Colors */
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #1a1a2e;
    
    /* Other Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Box Shadow */
    --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.3s;
    --transition-normal: 0.5s;
    --transition-slow: 0.7s;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn, 
button:not(.swiper-button-next):not(.swiper-button-prev) {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn:hover, 
button:not(.swiper-button-next):not(.swiper-button-prev):hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: absolute;
    bottom: -10px;
    left: 25%;
    border-radius: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Animations and Effects
--------------------------------------------------------------*/
.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shadow-effect {
    box-shadow: var(--box-shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

/* Glow Animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(106, 17, 203, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
    }
}

/* Rotating Animation */
@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotating-fruit {
    animation: rotating 15s linear infinite;
}

/* Floating Animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow-sm);
    padding: 10px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark); /* Dark text color for better contrast on white background */
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color); /* Highlight color for active or hovered links */
}

.navbar.scrolled .logo span {
    color: var(--primary-color); /* Adjust logo text color for consistency */
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 56px;
    margin-right: 10px;
    filter: saturate(1.08) hue-rotate(8deg) brightness(0.97) contrast(1.04);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: var(--spacing-md);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light) !important;
    padding: 8px 20px;
    border-radius: var(--border-radius-md);
}

.contact-btn:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236a11cb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Fruit Animations */
.fruit-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fruit-3d {
    position: absolute;
    width: 150px;
    height: auto;
}

.main-fruit {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    z-index: 2;
}

.apple-anim {
    top: 15%;
    left: 8%;
    width: 60px;
}

.orange-anim {
    bottom: 20%;
    right: 12%;
    width: 70px;
}

.berry-anim {
    top: 25%;
    right: 18%;
    width: 50px;
}

.strawberry-anim {
    top: 75%;
    left: 22%;
    width: 45px;
}

.banana-anim {
    top: 35%;
    left: 80%;
    width: 65px;
}

.grape-anim {
    bottom: 30%;
    left: 35%;
    width: 55px;
}

.kiwi-anim {
    top: 65%;
    right: 28%;
    width: 48px;
}

.watermelon-anim {
    top: 10%;
    left: 40%;
    width: 72px;
}

.pineapple-anim {
    bottom: 15%;
    right: 45%;
    width: 60px;
}

.rotating-fruit {
    animation: rotating 15s linear infinite;
    width: 100%;
    height: auto;
}

.floating-fruit {
    animation: floating 4s ease-in-out infinite;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(5px);
    box-shadow: var(--box-shadow-md);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

/* Responsive adjustments for banner text */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }
}

.cta-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    display: inline-block;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.6);
}

/* Hero Packages Styles */
.hero-packages {
    margin-top: 2.4rem;
    padding: 1.1rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(106, 17, 203, 0.16), rgba(37, 117, 252, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 14px 28px rgba(35, 50, 90, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-packages .cta-btn {
    margin-top: 1.2rem;
    display: inline-block;
    transition: none;
    transform: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 18px rgba(71, 68, 190, 0.35);
}

.hero-packages .cta-btn:hover {
    transform: none;
    transition: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 18px rgba(71, 68, 190, 0.35);
}

.packages-label {
    font-size: 1rem;
    color: rgba(245, 248, 255, 0.98);
    margin-bottom: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.package-category {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(221, 229, 248, 0.95);
    border-radius: 18px;
    padding: 0.7rem;
    box-shadow: 0 8px 16px rgba(43, 56, 104, 0.1);
}

.package-category:nth-child(1) {
    background: linear-gradient(165deg, #f5f0ff, #ece6ff);
}

.package-category:nth-child(2) {
    background: linear-gradient(165deg, #eef4ff, #e6eeff);
}

.package-category:nth-child(3) {
    background: linear-gradient(165deg, #f3f2ff, #e9e7ff);
}

.package-category-title {
    margin: 0 0 0.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2f2f67;
    text-shadow: none;
    text-align: left;
    font-weight: 700;
}

.package-category-list {
    display: grid;
    gap: 0.55rem;
}

.package-chip {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(207, 216, 240, 0.92);
    border-radius: 25px;
    padding: 0.62rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: #2d3563;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(43, 56, 104, 0.08);
    min-height: 50px;
    line-height: 1.35;
}

.package-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.45;
    pointer-events: none;
}

.package-category:nth-child(1) .package-chip {
    background: #fcf9ff;
    border-color: #dcd2fb;
}

.package-category:nth-child(2) .package-chip {
    background: #f8fbff;
    border-color: #cfdbf4;
}

.package-category:nth-child(3) .package-chip {
    background: #f9f8ff;
    border-color: #d9d6fb;
}

.package-chip span {
    color: #2d3563 !important;
    position: relative;
    z-index: 1;
    font-weight: 700 !important;
    letter-spacing: 0.2px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.package-category:nth-child(1) .package-chip span {
    color: #5a2f90 !important;
}

.package-category:nth-child(2) .package-chip span {
    color: #2f4f9c !important;
}

.package-category:nth-child(3) .package-chip span {
    color: #4f3f9d !important;
}

.package-chip a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.package-chip span a {
    color: inherit !important;
    text-decoration: none;
}

.package-chip:hover {
    background: #ffffff;
    border-color: rgba(186, 199, 236, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(43, 56, 104, 0.14);
    color: #2a3461;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .package-chip {
        padding: 0.65rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .package-chip span {
        font-size: 0.75rem;
        color: #2d3563 !important;
    }

    .package-category-title {
        font-size: 0.75rem;
    }
}

@media (min-width: 1440px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
        padding: 0 2rem;
    }
    
    .package-chip {
        padding: 0.8rem 1.1rem;
        font-size: 0.95rem;
    }
    
    .package-chip span {
        font-size: 0.95rem;
        color: #2d3563 !important;
    }
}

@media (min-width: 1920px) {
    .packages-grid {
        gap: 1.3rem;
        padding: 0 3rem;
    }
    
    .package-chip {
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
    }
    
    .package-chip span {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .package-category {
        padding: 0.65rem;
    }
    
    .package-chip {
        font-size: 0.8rem;
        padding: 0.65rem 0.9rem;
    }
    
    .package-chip span {
        color: #2d3563 !important;
        font-weight: 800 !important;
        font-size: 0.8rem;
    }
    
    .packages-label {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .hero-packages {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .package-chip {
        font-size: 0.7rem;
        padding: 0.5rem 0.7rem;
        border-radius: 18px;
        font-weight: 800;
    }
    
    .package-chip span {
        color: #2d3563 !important;
        font-weight: 800 !important;
        font-size: 0.7rem;
    }
    
    .packages-label {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .hero-packages {
        margin-top: 2rem;
        padding: 1rem 0.7rem;
    }
}

/*--------------------------------------------------------------
# Packages Section
--------------------------------------------------------------*/
.calculator-cta {
    margin-top: var(--spacing-md);
    text-align: center;
}

.calculator-cta .btn {
    margin-bottom: var(--spacing-xs);
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    background: linear-gradient(to right, var(--color-accent), var(--color-secondary));
    color: var(--secondary-color); /* Ensure good contrast for text */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.2);
}

.calculator-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.3);
}

.calculator-cta .btn i {
    margin-left: 8px;
}

.calculator-cta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.packages {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.packages-pricing {
    margin: 1.2rem auto 1.5rem;
    max-width: 980px;
    padding: 1.35rem;
    border-radius: 22px;
    background: linear-gradient(145deg, #f9fbff 0%, #f2f6ff 46%, #fbf8ff 100%);
    border: 1px solid rgba(124, 142, 186, 0.24);
    box-shadow: 0 14px 34px rgba(31, 52, 96, 0.13);
    position: relative;
    overflow: hidden;
}

.packages-pricing::before,
.packages-pricing::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.packages-pricing::before {
    width: 220px;
    height: 220px;
    top: -95px;
    right: -80px;
    background: radial-gradient(circle, rgba(156, 183, 245, 0.24) 0%, rgba(156, 183, 245, 0) 70%);
}

.packages-pricing::after {
    width: 180px;
    height: 180px;
    bottom: -85px;
    left: -60px;
    background: radial-gradient(circle, rgba(230, 202, 146, 0.2) 0%, rgba(230, 202, 146, 0) 72%);
}

.packages-pricing h3 {
    margin-bottom: 0.35rem;
    font-size: 1.45rem;
    font-family: var(--font-secondary);
    color: #273a63;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.pricing-subtitle {
    margin: 0 0 1.05rem;
    font-size: 0.95rem;
    color: #5d6d8f;
    font-weight: 500;
    line-height: 1.45;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    position: relative;
    border-radius: 18px;
    padding: 1.35rem 1.1rem 1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(35, 54, 96, 0.12);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 215px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 28px rgba(31, 52, 96, 0.16);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 62%);
    pointer-events: none;
}

.pricing-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.75);
}

.pricing-tier {
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #2e4467;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding-right: 96px;
}

.pricing-rating {
    position: absolute;
    top: 0.62rem;
    right: 0.62rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.16rem;
    margin: 0;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 12px rgba(34, 50, 88, 0.13);
    overflow: hidden;
}

.pricing-rating::after {
    content: '';
    position: absolute;
    width: 65%;
    height: 240%;
    top: -70%;
    left: 50%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.98) 50%, rgba(255, 255, 255, 0) 80%);
    transform: translate(-220%, -220%) rotate(-25deg);
    transform-origin: center;
    animation: pricingRatingShine 2.4s linear infinite;
    pointer-events: none;
    will-change: transform;
}

.pricing-rating i {
    font-size: 0.8rem;
    color: #bf9536;
}

.pricing-rating span {
    margin-left: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #314f7b;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.pricing-rating i {
    position: relative;
    z-index: 1;
}

.pricing-amount {
    margin: 0.1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    align-items: flex-start;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.45);
}

.pricing-old {
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(50, 64, 94, 0.72);
    text-decoration: line-through;
}

.pricing-new {
    font-size: 1.86rem;
    font-weight: 800;
    color: #1d3155;
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.pricing-period {
    margin-top: 0.22rem;
    display: inline-block;
    width: fit-content;
    padding: 0.18rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #2f4d7a;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1;
    background: rgba(217, 228, 248, 0.65);
    border: 1px solid rgba(120, 148, 196, 0.32);
    border-radius: 999px;
}

.pricing-meta {
    margin-top: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.pricing-save {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #436a4f;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: right;
}

.pricing-delivery {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f6a4b;
    letter-spacing: 0.02em;
    text-transform: none;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(46, 122, 86, 0.2);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
}

.pricing-delivery::before {
    content: '+';
    font-weight: 800;
    color: #1e7a53;
}

.pricing-tag {
    position: absolute;
    right: 0.62rem;
    top: 2.92rem;
    z-index: 2;
    padding: 0.24rem 0.58rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: 999px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #3f6fbe 0%, #2f5ead 100%);
    box-shadow: 0 4px 10px rgba(45, 87, 160, 0.28);
}

.pricing-tag-starter {
    background: linear-gradient(135deg, #2f8e66 0%, #47b482 100%);
    box-shadow: 0 4px 10px rgba(36, 120, 86, 0.3);
}

.pricing-tag-standard {
    background: linear-gradient(135deg, #3b6fc8 0%, #548be3 100%);
    box-shadow: 0 4px 10px rgba(50, 91, 171, 0.3);
}

.pricing-tag-premium {
    background: linear-gradient(135deg, #be8927 0%, #dca842 100%);
    box-shadow: 0 4px 10px rgba(146, 104, 33, 0.32);
}

.pricing-featured {
    transform: translateY(-6px);
    border-color: rgba(90, 129, 201, 0.38);
    box-shadow: 0 16px 30px rgba(39, 66, 118, 0.2);
}

.pricing-featured .pricing-tier {
    padding-right: 132px;
}

.pricing-featured:hover {
    transform: translateY(-8px);
}

@keyframes pricingRatingShine {
    0% {
        transform: translate(-220%, -220%) rotate(-25deg);
    }
    100% {
        transform: translate(120%, 120%) rotate(-25deg);
    }
}

.pricing-starter {
    background: linear-gradient(135deg, #e8f5ee 0%, #daeede 100%);
}

.pricing-standard {
    background: linear-gradient(135deg, #e8effd 0%, #d6e3fb 100%);
}

.pricing-premium {
    background: linear-gradient(135deg, #fdf2dd 0%, #f5e5c4 100%);
}

@media (max-width: 768px) {
    .packages-pricing {
        padding: 0.95rem 0.8rem;
        border-radius: 18px;
    }

    .packages-pricing h3 {
        font-size: 1.18rem;
        letter-spacing: 0.04em;
    }

    .pricing-subtitle {
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0.78rem;
    }

    .pricing-card {
        min-height: auto;
        padding: 1.08rem 0.9rem 0.88rem;
        border-radius: 14px;
    }

    .pricing-tier {
        font-size: 0.82rem;
        padding-right: 98px;
    }

    .pricing-rating {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.18rem 0.42rem;
    }

    .pricing-rating i,
    .pricing-rating span {
        font-size: 0.72rem;
    }

    .pricing-tag {
        right: 0.5rem;
        top: 2.6rem;
        padding: 0.2rem 0.48rem;
        font-size: 0.62rem;
    }

    .pricing-old {
        font-size: 0.88rem;
    }

    .pricing-meta {
        flex-wrap: wrap;
        row-gap: 0.35rem;
    }

    .pricing-save {
        text-align: left;
    }

    .pricing-featured,
    .pricing-featured:hover {
        transform: none;
    }

    .pricing-new {
        font-size: 1.5rem;
    }

    .pricing-period {
        font-size: 0.7rem;
        padding: 0.16rem 0.42rem;
    }

    .pricing-delivery {
        font-size: 0.74rem;
        padding: 0.18rem 0.46rem;
    }

    .pricing-save {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .packages-pricing {
        padding: 0.82rem 0.68rem;
        border-radius: 15px;
    }

    .packages-pricing h3 {
        font-size: 1.06rem;
    }

    .pricing-subtitle {
        font-size: 0.8rem;
    }

    .pricing-card {
        padding: 0.95rem 0.78rem 0.78rem;
    }

    .pricing-tier {
        font-size: 0.76rem;
        letter-spacing: 0.07em;
        padding-right: 88px;
    }

    .pricing-rating {
        gap: 0.12rem;
        padding: 0.14rem 0.34rem;
    }

    .pricing-rating i,
    .pricing-rating span {
        font-size: 0.66rem;
    }

    .pricing-rating span {
        margin-left: 0.2rem;
    }

    .pricing-tag {
        top: 2.4rem;
        font-size: 0.58rem;
        padding: 0.16rem 0.4rem;
    }

    .pricing-new {
        font-size: 1.34rem;
    }

    .pricing-old {
        font-size: 0.8rem;
    }

    .pricing-period {
        font-size: 0.64rem;
        letter-spacing: 0.06em;
    }

    .pricing-delivery,
    .pricing-save {
        font-size: 0.66rem;
    }
}

.package-swiper {
    overflow: hidden;
    padding: 30px 0;
}

.package-carousel-shell {
    position: relative;
}

.package-carousel-nav {
    position: absolute;
    top: 42%;
    left: -48px;
    right: -48px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 30;
}

.package-carousel-nav .swiper-button-prev,
.package-carousel-nav .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    margin-top: 0;
    border-radius: 50%;
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #26ad6e;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    z-index: 31;
}

.package-carousel-nav .swiper-button-prev:hover,
.package-carousel-nav .swiper-button-next:hover {
    background: #40c589;
}

.package-carousel-nav .swiper-button-prev::after,
.package-carousel-nav .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .package-carousel-nav {
        top: 43%;
        left: -24px;
        right: -24px;
    }
}

@media (max-width: 640px) {
    .package-carousel-nav {
        top: 44%;
        left: -10px;
        right: -10px;
    }

    .package-carousel-nav .swiper-button-prev,
    .package-carousel-nav .swiper-button-next {
        width: 38px;
        height: 38px;
    }
}

.package-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 249, 249, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    transition: box-shadow var(--transition-fast);
    box-shadow: var(--box-shadow-sm);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover {
    box-shadow: var(--box-shadow-sm);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.package-icon i {
    font-size: 30px;
    color: var(--text-light);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.package-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.package-card .package-ideal {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #325c43;
    font-weight: 600;
    margin-top: calc(var(--spacing-xs) * -0.2);
}

.fruit-list {
    margin-bottom: var(--spacing-md);
}

.fruit-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.fruit-list i {
    color: var(--success-color);
    margin-right: 10px;
}

.package-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.package-swiper .swiper-pagination {
    position: relative;
    margin-top: var(--spacing-md);
}

/*--------------------------------------------------------------
# Nutrition Section
--------------------------------------------------------------*/
.nutrition {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.nutrition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236a11cb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.nutrition-swiper {
    overflow: hidden;
    padding: 30px 0;
}

.nutrition-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 249, 249, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    transition: transform var(--transition-fast), box-shadow var (--transition-fast);
    box-shadow: var(--box-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.nutrition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.nutrition-icon i {
    font-size: 30px;
    color: var(--text-light);
}

.nutrition-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.nutrition-benefits {
    color: var(--text-muted);
}

.nutrition-benefits ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-sm);
}

.nutrition-benefits li {
    margin-bottom: 8px;
}

.nutrition-quote {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: var(--spacing-sm);
    text-align: center;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f6f9ff 0%, #eef4ff 45%, #f9f6ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 12% 20%, rgba(106, 17, 203, 0.08) 0%, rgba(106, 17, 203, 0) 32%), radial-gradient(circle at 88% 80%, rgba(37, 117, 252, 0.09) 0%, rgba(37, 117, 252, 0) 34%);
    pointer-events: none;
}

.testimonial-swiper {
    padding: 4px 2px 64px;
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    padding: 1.55rem 1.35rem;
    border: 1px solid rgba(120, 145, 205, 0.2);
    box-shadow: 0 10px 24px rgba(40, 58, 104, 0.14);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    animation: testimonialLiftIn 0.65s ease both;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(94, 125, 194, 0.35);
    box-shadow: 0 18px 34px rgba(33, 53, 100, 0.2);
}

.testimonial-rating {
    color: #d09b2e;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: #334868;
    margin-bottom: 1.2rem;
    line-height: 1.72;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(128, 150, 198, 0.18);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
    color: #1f3560;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.testimonial-author span {
    font-size: 0.84rem;
    color: #62759a;
    font-weight: 600;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #7b90be;
    opacity: 0.45;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: #304f8c;
    opacity: 1;
    transform: scale(1.15);
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    color: #314f8c;
}

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

/*--------------------------------------------------------------
# Research Section
--------------------------------------------------------------*/
.research {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.research-intro {
    margin-bottom: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(249, 249, 249, 0.7) 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
}

.research-intro p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.research-intro p:last-child {
    margin-bottom: 0;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    visibility: visible !important; /* Ensure visibility */
    opacity: 1 !important; /* Ensure opacity is not set to 0 */
    transition: opacity 0.3s ease-in-out; /* Smooth transition for visibility */
}

.research-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 249, 249, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--box-shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    visibility: visible !important; /* Ensure visibility */
    opacity: 1 !important; /* Ensure opacity is not set to 0 */
}

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

.research-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.chart-container {
    height: 200px;
    margin-bottom: var(--spacing-sm);
}

.research-item p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var (--spacing-sm);
    font-weight: 500;
}

.research-source {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #4c5f84;
    text-align: left;
}

.research-source strong {
    color: #2e4472;
}

.research-source a {
    color: #245db6;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.research-source a:hover {
    color: #1c4a93;
}

.research-details {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
}

.research-details h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.research-details ul {
    padding-left: var(--spacing-md);
}

.research-details li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.research-summary {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05) 0%, rgba(37, 117, 252, 0.05) 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--box-shadow-sm);
}

.research-summary h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.research-summary p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.research-summary p:last-child {
    margin-bottom: 0;
}

.research-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.research-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: var(--text-light);
}

.why-us .section-header h2 {
    color: var(--text-light);
}

.why-us .section-header h2::after {
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.5));
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.why-us-intro {
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
}

.why-us-intro p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ensure responsive grid layout */
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    visibility: visible !important; /* Ensure visibility */
    opacity: 1 !important; /* Ensure opacity is not set to 0 */
    transition: opacity 0.3s ease-in-out; /* Smooth transition for visibility */
}

.feature {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
    visibility: visible !important; /* Ensure visibility */
    opacity: 1 !important; /* Ensure opacity is not set to 0 */
}

.feature:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.why-us .feature,
.why-us .feature:hover,
.why-us .feature:focus,
.why-us .feature:focus-within,
.why-us .feature:active {
    transform: none !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.feature-icon i {
    font-size: 30px;
    color: var(--text-light);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
}

.why-us-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.why-us-cta .btn {
    padding: 12px 25px;
    font-weight: 600;
}

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

.why-us-cta .btn-outline:hover {
    background: white;
    color: var(--color-accent);
}

/*--------------------------------------------------------------
# WhatsApp CTA Button
--------------------------------------------------------------*/
.whatsapp-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-cta a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-cta img {
    width: 35px;
    height: 35px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-about p,
.footer-contact p,
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-family: var(--font-primary);
}

.newsletter-form button {
    padding: 10px 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-terms {
    display: flex;
    gap: 20px;
}

.footer-terms a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-terms a:hover {
    color: var(--text-light);
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/

@media (max-width: 1200px) {
    .container {
        width: 90%;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .fruit-3d {
        max-width: 350px;
    }
    
    .research-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-swiper .swiper-slide {
        height: auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .navbar,
    .navbar.scrolled {
        padding: 8px 0;
        min-height: 72px;
    }

    .navbar .container {
        min-height: 56px;
        align-items: center;
    }

    .logo img {
        height: 46px;
        margin-right: 8px;
    }

    .logo span {
        font-size: 1.3rem;
        line-height: 1;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--spacing-md);
        transition: all var(--transition-fast);
        box-shadow: var(--box-shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0 0 var(--spacing-sm);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-terms {
        margin-top: var(--spacing-xs);
    }
}

@media (max-width: 576px) {
    .navbar,
    .navbar.scrolled {
        min-height: 68px;
    }

    .navbar .container {
        min-height: 52px;
    }

    .logo img {
        height: 46px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 50px;
    }
    
    .research-cta, .why-us-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .research-cta .btn, .why-us-cta .btn {
        width: 100%;
        margin-bottom: var(--spacing-xs);
        text-align: center;
    }
    
    .calculator-cta .btn {
        width: 100%;
    }
    
    .research-details {
        padding: var(--spacing-xs);
    }
    
    .research-details h4 {
        font-size: 0.95rem;
    }
    
    .research-details li {
        font-size: 0.85rem;
    }
    
    .chart-container {
        height: 180px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius-md);
        margin-bottom: var(--spacing-xs);
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius-md);
    }
    
    .whatsapp-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-cta a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-cta img {
        width: 28px;
        height: 28px;
    }
}

/* Keyframes for unique movements */
@keyframes apple-move {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -200px) rotate(15deg);
    }
    50% {
        transform: translate(-150px, 250px) rotate(-10deg);
    }
    75% {
        transform: translate(200px, -150px) rotate(20deg);
    }
}

@keyframes orange-move {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-230px, 120px) rotate(-15deg);
    }
    50% {
        transform: translate(50px, -50px) rotate(10deg);
    }
    75% {
        transform: translate(-130px, 230px) rotate(-20deg);
    }
}

@keyframes berry-move {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(90px, -150px) rotate(10deg);
    }
    50% {
        transform: translate(90px, 330px) rotate(-15deg);
    }
    75% {
        transform: translate(230px, -140px) rotate(15deg);
    }
}

@keyframes kiwi-move {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(100px, -250px) rotate(20deg);
    }
    75% {
        transform: translate(-80px, 180px) rotate(-15deg);
    }
}

@keyframes watermelon-move {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(70px, -40px) rotate(25deg);
    }
    50% {
        transform: translate(-160px, 150px) rotate(-20deg);
    }
    75% {
        transform: translate(50px, -30px) rotate(15deg);
    }
}

@keyframes pineapple-move {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, 60px) rotate(-25deg);
    }
    50% {
        transform: translate(100px, -150px) rotate(20deg);
    }
    75% {
        transform: translate(-230px, 240px) rotate(-15deg);
    }
}

.hero .fruit-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero .fruit-3d {
    position: absolute;
    width: 100px;
    height: auto;
    animation: floating 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.hero .apple-anim {
    top: 20%;
    left: 10%;
    animation: apple-move 10s ease-in-out infinite;
    filter: hue-rotate(20deg);
}

.hero .orange-anim {
    top: 30%;
    right: 15%;
    animation: orange-move 9s ease-in-out infinite;
    filter: hue-rotate(45deg);
}

.hero .berry-anim {
    bottom: 25%;
    left: 20%;
    animation: berry-move 11s ease-in-out infinite;
    filter: hue-rotate(90deg);
}

.hero .kiwi-anim {
    top: 50%;
    right: 25%;
    animation: kiwi-move 10.5s ease-in-out infinite;
    filter: hue-rotate(120deg);
}

.hero .watermelon-anim {
    bottom: 10%;
    left: 40%;
    animation: watermelon-move 12s ease-in-out infinite;
    filter: hue-rotate(180deg);
}

.hero .pineapple-anim {
    top: 15%;
    right: 40%;
    animation: pineapple-move 11.5s ease-in-out infinite;
    filter: hue-rotate(300deg);
}

/*--------------------------------------------------------------
# Pack Details Page
--------------------------------------------------------------*/
.pack-details-page {
    padding-top: 100px;
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 10%, rgba(106, 17, 203, 0.08), transparent 35%),
        radial-gradient(circle at 90% 15%, rgba(37, 117, 252, 0.08), transparent 35%),
        linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pack-navbar {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--box-shadow-sm);
    backdrop-filter: blur(6px);
}

.pack-nav-actions {
    display: flex;
    align-items: center;
}

.pack-back-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
}

.pack-details-hero {
    padding: 2rem 0 1rem;
}

.pack-hero-card {
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    padding: 1.4rem 1.4rem 1.2rem;
    box-shadow: 0 14px 35px rgba(32, 52, 92, 0.14);
    backdrop-filter: blur(7px);
}

.pack-kicker {
    display: inline-block;
    margin: 0 0 0.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(37, 117, 252, 0.12);
    color: #1e56b3;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pack-details-hero h1 {
    font-size: 2.45rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
    line-height: 1.15;
}

.pack-details-hero p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.marketing-line {
    font-size: 1.12rem;
    font-weight: 700;
    color: #2d6d2f;
    margin-bottom: 0.7rem;
}

.pack-caption {
    font-size: 1rem;
    color: #3f4c5f;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.pack-note {
    display: inline-block;
    background: rgba(255, 126, 95, 0.14);
    border: 1px solid rgba(255, 126, 95, 0.45);
    color: #b44421;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pack-details-content {
    padding: 1rem 0 3rem;
}

.table-stack {
    display: grid;
    gap: 1.4rem;
}

.pack-highlights {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pack-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 126, 95, 0.12);
    color: #a64b31;
}

.pack-table-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pack-table-card {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.6), rgba(236, 253, 245, 0.6));
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.1);
}

.pack-table-head {
    padding: 1rem 1.1rem 0.7rem;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.18), rgba(16, 185, 129, 0.14));
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.pack-table-head p {
    margin: 0.25rem 0 0;
    color: #485066;
    font-size: 0.9rem;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.6);
}

.pack-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.pack-table th,
.pack-table td {
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    vertical-align: top;
    font-size: 0.92rem;
}

.pack-table th {
    background: rgba(219, 234, 254, 0.85);
    color: #1e3a8a;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2;
}

.pack-table td:first-child {
    font-weight: 600;
    color: #2f3750;
}

.pack-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.12);
}

.pack-table tbody tr.row-apple td {
    background: rgba(239, 68, 68, 0.11);
}

.pack-table tbody tr.row-melon td {
    background: rgba(251, 191, 36, 0.12);
}

.pack-table tbody tr.row-premium-fruit td {
    background: rgba(168, 85, 247, 0.12);
}

.pack-table tbody tr.row-sprouts td {
    background: rgba(34, 197, 94, 0.11);
}

.pack-table tbody tr.row-seeds td {
    background: rgba(180, 83, 9, 0.1);
}

.pack-table tbody tr.row-veggies td {
    background: rgba(14, 165, 233, 0.11);
}

.pack-table tbody tr.row-alt td {
    background: rgba(107, 114, 128, 0.1);
}

.pack-table tbody tr.row-apple:hover td,
.pack-table tbody tr.row-melon:hover td,
.pack-table tbody tr.row-premium-fruit:hover td,
.pack-table tbody tr.row-sprouts:hover td,
.pack-table tbody tr.row-seeds:hover td,
.pack-table tbody tr.row-veggies:hover td,
.pack-table tbody tr.row-alt:hover td {
    filter: brightness(0.97);
}

.emoji-col {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.08rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pack-details-page {
        padding-top: 88px;
    }

    .pack-back-btn {
        padding: 7px 12px;
        font-size: 0.82rem;
    }

    .pack-details-hero h1 {
        font-size: 1.8rem;
    }

    .pack-kicker {
        font-size: 0.68rem;
    }

    .marketing-line {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .pack-caption {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .pack-hero-card {
        border-radius: 18px;
        padding: 1rem 0.9rem;
    }

    .pack-note {
        font-size: 0.82rem;
    }

    .pack-highlights span {
        font-size: 0.72rem;
    }

    .pack-table-title {
        font-size: 1.25rem;
    }

    .pack-table-head {
        padding: 0.85rem 0.8rem 0.6rem;
    }
}

/*--------------------------------------------------------------
# Children Nutrition Pack
--------------------------------------------------------------*/
.kids-pack-page {
    padding-top: 96px;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 186, 73, 0.22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(74, 222, 128, 0.2), transparent 32%),
        linear-gradient(165deg, #fff8e8 0%, #f0f9ff 52%, #ecfdf5 100%);
}

.kids-hero {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 0 1rem;
}

.kids-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.kids-bg-orb.orb-one {
    width: 180px;
    height: 180px;
    left: -40px;
    top: 10px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.35), rgba(255, 153, 0, 0));
}

.kids-bg-orb.orb-two {
    width: 220px;
    height: 220px;
    right: -60px;
    top: -10px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.32), rgba(34, 197, 94, 0));
}

.kids-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(44, 76, 112, 0.16);
    padding: 1.1rem;
}

.kids-hero-media {
    position: relative;
    min-height: 230px;
    display: grid;
    place-items: center;
}

.kids-main-3d {
    width: 200px;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
    animation: kids-bob 3.6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.kids-hero-card:hover .kids-main-3d {
    transform: scale(1.04) rotate(-2deg);
}

.kids-float {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.kids-float.float-1 { top: 10px; left: 22px; animation: kids-orbit-a 4.2s ease-in-out infinite; }
.kids-float.float-2 { top: 18px; right: 20px; animation: kids-orbit-b 4.6s ease-in-out infinite; }
.kids-float.float-3 { bottom: 16px; left: 26px; animation: kids-orbit-c 4.4s ease-in-out infinite; }
.kids-float.float-4 { bottom: 10px; right: 18px; animation: kids-orbit-d 4.8s ease-in-out infinite; }

.kids-kicker {
    background: rgba(255, 153, 0, 0.18);
    color: #a04d00;
}

.kids-hero-content h1 {
    color: #0f4b7f;
    margin-bottom: 0.6rem;
    font-size: 2.2rem;
}

.kids-marketing {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d7f41;
    margin-bottom: 0.5rem;
}

.kids-caption {
    color: #3a4a5f;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.kids-highlights span {
    background: rgba(30, 144, 255, 0.14);
    color: #195a9f;
}

.kids-pack-content {
    padding: 0.8rem 0 2.8rem;
}

.kids-table-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kids-table-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 34px rgba(26, 71, 130, 0.16);
}

.kids-table-head {
    background: linear-gradient(90deg, rgba(255, 186, 73, 0.26), rgba(74, 222, 128, 0.2));
}

.kids-pack-table {
    min-width: 760px;
}

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

@keyframes kids-orbit-a {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(8deg); }
}

@keyframes kids-orbit-b {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(6px) rotate(-10deg); }
}

@keyframes kids-orbit-c {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(6deg); }
}

@keyframes kids-orbit-d {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(7px) rotate(-8deg); }
}

@media (max-width: 900px) {
    .kids-hero-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kids-hero-content h1 {
        font-size: 1.85rem;
    }

    .kids-hero-media {
        min-height: 210px;
    }
}

@media (max-width: 640px) {
    .kids-pack-page {
        padding-top: 86px;
    }

    .kids-main-3d {
        width: 164px;
    }

    .kids-float {
        width: 34px;
        height: 34px;
        font-size: 1.05rem;
    }

    .kids-marketing {
        font-size: 1rem;
    }

    .kids-caption {
        font-size: 0.9rem;
        line-height: 1.45;
    }
}
