/* Color Variables */
:root {
    --primary-blue: #00487C;
    --secondary-blue: #4C8DAA;
    --action-orange: #FF6900;
    --neutral-gray: #F0F0F0;
    --text-shadow: #333333;
    
    /* Border Radius Variables */
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
    --border-radius-xl: 50px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--action-orange);
    overflow-x: hidden;
    background: var(--neutral-gray);
}

/* Base Button System */
.btn-base {
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--action-orange);
    color: white;
    border-color: var(--action-orange);
}

.btn-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
    border-radius: var(--border-radius-xl);
    letter-spacing: 1px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: var(--border-radius-lg);
}

/* Utility Classes */
.shadow-light { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.shadow-orange { box-shadow: 0 8px 25px rgba(255, 105, 0, 0.3); }
.shadow-heavy { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--secondary-blue);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0px;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1001;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    margin-left: auto;
    margin-right: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-blue);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--action-orange);
}

.nav-link.active {
    color: var(--action-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--action-orange);
    border-radius: 1px;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--action-orange);
    border-radius: 1px;
    opacity: 0.5;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-blue);
    transition: 0.3s;
    border-radius: 2px;
}

.meter-info-btn {
    background: #888888;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    border: 2px solid #888888;
    margin-right: 15px;
}

.meter-info-btn:hover {
    background: transparent;
    color: #888888;
    transform: translateY(-2px);
}


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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    z-index: 10;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 80vh;
    width: 100%;
}

.hero-left {
    color: var(--action-orange);
    background: transparent;
    padding: 60px 80px 60px 50px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.greeting {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--action-orange);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-left h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-shadow);
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-greeting {
    font-size: 2rem;
    font-weight: 500;
    color: #888888;
    margin-bottom: -15px;
    letter-spacing: 1px;
}

.hero-left h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--action-orange);
}

.net-grey {
    color: #888888;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-shadow);
    margin-bottom: 40px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.hero-social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 105, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--action-orange);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 0, 0.2);
}

.social-link:hover {
    background: var(--action-orange);
    color: white;
    transform: translateY(-2px);
}


.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 10;
    padding-right: 0px;
    padding-bottom: 0px;
}

.hero-image-container {
    position: relative;
    z-index: 10;
    margin-right: -70px;
    margin-bottom: -100px;
}

.hero-mascot {
    width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

/* Speech Bubble Styles */
.speech-bubble-container {
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: 15;
    animation: float 6s ease-in-out infinite;
}

.speech-bubble {
    position: relative;
    background: var(--action-orange);
    border-radius: 15px 15px 0px 15px;
    box-shadow: 0 8px 25px rgba(255, 105, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: bottom right;
}

.speech-bubble:hover,
.hero-mascot:hover + .speech-bubble-container .speech-bubble {
    width: 450px;
    height: 140px;
    border-radius: 15px 15px 0px 15px;
    background: linear-gradient(135deg, var(--action-orange) 0%, #ff8533 100%);
    transform: rotate(-1deg) translateY(-50px) translateX(-370px);
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.3);
    transform-origin: bottom right;
}

.bubble-content-collapsed {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.speech-bubble:hover .bubble-content-collapsed,
.hero-mascot:hover + .speech-bubble-container .speech-bubble .bubble-content-collapsed {
    opacity: 0;
    transform: scale(0);
}

.exclamation {
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.bubble-content-expanded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease 0.1s;
    pointer-events: none;
}

.speech-bubble:hover .bubble-content-expanded,
.hero-mascot:hover + .speech-bubble-container .speech-bubble .bubble-content-expanded {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.bubble-meter-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.bubble-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.bubble-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bubble-details {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.bubble-details strong {
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bubble-details small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.bubble-shop-btn {
    background: white;
    color: var(--action-orange);
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
    flex-shrink: 0;
}

.bubble-shop-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


/* Curved Blue Background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 100%);
    clip-path: ellipse(70% 100% at 100% 50%);
    z-index: 1;
}

/* Background Shapes - positioned on curved blue area */
.bg-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    clip-path: ellipse(70% 100% at 100% 50%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 10%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 45% 55% 60% 40% / 35% 65% 35% 65%;
    animation: morph1 12s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: 15%;
    right: 8%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph2 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 30%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotate 20s linear infinite;
}

/* Promotional Card */
.promo-card {
    position: absolute;
    bottom: -29px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: white;
    border-radius: var(--border-radius-md);
    padding: 30px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 20;
    max-width: 900px;
    width: 90%;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.02);
}

.promo-content {
    color: var(--text-shadow);
}

.promo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.promo-text {
    flex: 1;
    text-align: left;
    margin-left: 20px;
}

.promo-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -20px;
}

.meter-image {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.promo-badge {
    display: inline-block;
    background: var(--action-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 105, 0, 0.3);
    transform: rotate(-1deg);
    margin-right: auto;
    flex-shrink: 0;
}

.promo-badge .material-icons {
    font-size: 1rem;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
}

.promo-price {
    margin-bottom: 0;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    color: var(--action-orange);
    line-height: 0.9;
}

.price-note {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-shadow);
    display: block;
    margin-top: 5px;
}

.promo-cta {
    background: white;
    color: var(--action-orange);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.promo-cta:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-blue);
}

.promo-cta .material-icons {
    font-size: 1.2rem;
}



/* Responsive adjustments for promo card */
@media (max-width: 768px) {
    .promo-card {
        bottom: 20px;
        padding: 15px 20px;
        max-width: 95%;
        transform: translateX(-50%) rotate(-1deg);
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .promo-card:hover {
        transform: translateX(-50%) rotate(0deg) scale(1.02);
    }
    
    .promo-flex {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .promo-badge {
        transform: rotate(-1deg);
        font-size: 0.7rem;
        padding: 8px 12px;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .promo-text {
        text-align: left;
        margin-left: 5px;
        flex: 1;
    }
    
    .promo-image {
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .promo-cta-container {
        display: none;
    }
    
    .meter-image {
        width: 80px;
    }
    
    .price-amount {
        font-size: 2rem;
        line-height: 1;
    }
    
    .price-note {
        font-size: 0.7rem;
        margin-top: 2px;
    }
}

/* Stats Section */
.stats {
    background: white;
    padding: 80px 0;
    margin-top: -1px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--action-orange);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--neutral-gray);
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--action-orange) 0%, var(--action-orange) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--action-orange);
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-shadow);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list {
    margin-bottom: 50px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: var(--text-shadow);
}

.feature .material-icons {
    color: var(--action-orange);
    font-size: 1.5rem;
    margin-top: 3px;
}

.feature div {
    flex: 1;
}

.feature strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.feature p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-shadow);
}

.why-choose-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.why-choose-badge {
    background: var(--action-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.why-choose-content {
    color: white;
}

.why-choose-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.highlight-text {
    color: var(--action-orange);
    font-weight: 800;
}

.why-choose-subtext {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card .material-icons {
    color: var(--action-orange);
    font-size: 2.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-shadow);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px;
    }
}

.video-container {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 105, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.play-button:hover {
    background: var(--action-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button .material-icons {
    font-size: 2.5rem;
    color: white;
    margin-left: 4px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    z-index: 2;
}

.video-overlay h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.video-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.video-iframe.hidden {
    display: none;
}

.purchase-options-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.purchase-column {
    display: flex;
    flex-direction: column;
}

.purchase-column h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--action-orange);
    line-height: 1.2;
    margin-bottom: 30px;
}

.purchase-column p {
    font-size: 1.1rem;
    color: var(--text-shadow);
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-content-three-col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: start;
}

.about-content-three-col .divider-line {
    width: 8px;
    height: 600px;
    background: rgba(255, 105, 0, 0.3);
    justify-self: center;
    align-self: stretch;
    margin-top: 0;
}

@media (max-width: 768px) {
    .purchase-options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .divider-line {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--action-orange), transparent);
        margin: 20px 0;
    }
}

.learn-more-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.learn-more-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.about-image {
    position: relative;
    height: 500px;
}

.about-logo {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.water-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: bubbleFloat 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.water-bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 80%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.water-bubble:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 75%;
    left: 60%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.water-bubble:nth-child(3) {
    width: 25px;
    height: 25px;
    top: 85%;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.water-bubble:nth-child(4) {
    width: 12px;
    height: 12px;
    top: 70%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.water-bubble:nth-child(5) {
    width: 18px;
    height: 18px;
    top: 90%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.water-bubble:nth-child(6) {
    width: 22px;
    height: 22px;
    top: 78%;
    left: 70%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-150px) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-300px) scale(0.5);
        opacity: 0;
    }
}

.swimming-mascot {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph1 {
    0%, 100% {
        border-radius: 45% 55% 60% 40% / 35% 65% 35% 65%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 35% 65% / 50% 50% 50% 50%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 35% 65% 45% 55% / 65% 35% 65% 35%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 55% 45% 65% 35% / 40% 60% 40% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes morph2 {
    0%, 100% {
        border-radius: 65% 35% 25% 75% / 55% 40% 60% 45%;
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        border-radius: 40% 60% 70% 30% / 45% 55% 35% 65%;
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        border-radius: 75% 25% 45% 55% / 35% 65% 55% 45%;
        transform: translateY(20px) rotate(240deg);
    }
}

@keyframes morph3 {
    0%, 100% {
        border-radius: 40% 60% 55% 45% / 50% 35% 65% 50%;
        transform: scale(1) rotate(0deg);
    }
    20% {
        border-radius: 55% 45% 35% 65% / 65% 50% 35% 50%;
        transform: scale(1.15) rotate(72deg);
    }
    40% {
        border-radius: 35% 65% 60% 40% / 40% 65% 50% 35%;
        transform: scale(0.85) rotate(144deg);
    }
    60% {
        border-radius: 65% 35% 40% 60% / 55% 45% 65% 50%;
        transform: scale(1.1) rotate(216deg);
    }
    80% {
        border-radius: 50% 50% 65% 35% / 35% 55% 45% 65%;
        transform: scale(0.9) rotate(288deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: var(--neutral-gray);
    position: relative;
    z-index: 2;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-box h3,
.service-box .service-content {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-box:hover::before {
    opacity: 1;
}
.service-box.orange-gradient::before {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.service-box:hover h3 {
    color: white;
}

.service-box:hover .service-content p {
    color: white;
}

.service-box:hover .service-content p .material-icons {
    color: white;
}

.service-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--action-orange);
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-shadow);
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-content p .material-icons {
    color: var(--action-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-content p:last-child {
    margin-bottom: 0;
}

/* Services Overview Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .service-box {
        padding: 30px 25px;
    }
    
    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Mobile App Section */
.mobile-app {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    margin-bottom: -275px;
    z-index: 1;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 35%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #E65100 0%, #FF5722 25%, #FF8F00 75%, #FFA000 100%);
    z-index: 1;
}

.mobile-app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.mobile-app-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.mobile-app-text {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 3;
    transform: translateY(-110px);
}
s
.mobile-icons {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 70px;
    flex-wrap: wrap;
}

.mobile-icons .material-icons {
    font-size: 3rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.mobile-icons .material-icons:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.mobile-icons .material-icons::after {
    content: attr(title);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--action-orange);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-icons .material-icons:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

.mobile-app .learn-more-btn {
    background: white;
    color: var(--action-orange);
    border: 2px solid white;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 0 auto 40px auto;
    padding: 15px 40px;
    min-width: 250px;
}

.mobile-app .learn-more-btn:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: white;
    margin-top: -1px;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.reviews h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--action-orange);
    margin-bottom: 60px;
    line-height: 1.2;
}

.reviews-scroll-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.reviews-scroll-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 60s linear infinite;
    width: fit-content;
}

.reviews-scroll-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.scroll-track {
    width: 300px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.scroll-thumb {
    width: 60px;
    height: 6px;
    background: var(--action-orange);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-thumb:hover {
    background: var(--primary-blue);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.best-vision-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -5px;
    margin-top: 40px;
    position: relative;
}

.best-vision-card {
    background: white;
    color: var(--text-shadow);
    padding: 20px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 800px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: -10px;
}

.best-vision-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    height: 180px;
    width: 850px;
    z-index: 10;
}

.best-vision-card h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.4s ease;
    color: var(--text-shadow);
}

.orange-letter {
    color: var(--action-orange);
    font-weight: 800;
}

.best-sticker {
    background: linear-gradient(135deg, var(--action-orange) 0%, #ff8533 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9em;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
    position: relative;
    display: inline-block;
    transform: rotate(-2deg);
    margin: 0 8px;
}

.best-sticker::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff8533 0%, var(--action-orange) 100%);
    border-radius: 14px;
    z-index: -1;
}

.best-vision-card .review-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease 0.1s;
    margin-top: 20px;
    text-align: right;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-shadow);
    position: absolute;
    right: 30px;
    bottom: 5px;
    max-width: 400px;
}

.best-vision-card:hover .review-text {
    opacity: 1;
    transform: translateY(0);
}

.best-vision-card .review-stars {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
}

.best-vision-card .review-stars .material-icons {
    color: var(--action-orange);
    font-size: 2rem;
}

.best-vision-card:hover .review-stars {
    position: absolute;
    top: 20px;
    right: 30px;
    transform: scale(1);
}

.best-vision-card:hover h3 {
    transform: translateY(-15px);
}

@media (max-width: 768px) {
    .best-vision-card {
        width: 90%;
        max-width: 600px;
    }
    
    .best-vision-card:hover {
        width: 95%;
        max-width: 650px;
        height: 200px;
        padding: 15px 20px;
    }
    
    .best-vision-card:hover h3 {
        display: none;
    }
    
    .best-vision-card:hover .review-stars {
        transform: translateY(-80px) translateX(-10px);
    }
    
    .best-vision-card .review-text {
        right: 20px;
        bottom: 20px;
        max-width: 85%;
        font-size: 1rem;
        text-align: left;
    }
}

.review-card {
    background: var(--neutral-gray);
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.review-stars .material-icons {
    color: var(--action-orange);
    font-size: 1.5rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-shadow);
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.review-author strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.review-author span {
    color: var(--secondary-blue);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-left h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 60px;
    }
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    /* Mobile Navigation Styles */
    .mobile-only {
        display: block !important;
    }
    
    .meter-info-btn {
        display: none !important;
    }
    
    .nav-toggle {
        display: flex !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 15px;
        flex-direction: column;
        gap: 8px;
        z-index: 1001;
        position: relative;
        margin-left: auto;
        min-width: 50px;
        min-height: 50px;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle span {
        width: 35px;
        height: 5px;
        background: var(--primary-blue);
        transition: all 0.3s ease;
        border-radius: 3px;
        display: block;
        flex-shrink: 0;
    }

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

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

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

    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 20px !important;
    }

    .nav-container > * {
        flex-shrink: 0;
    }

    .navbar {
        padding: 20px 0 !important;
        min-height: 80px !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
    }

    .nav-logo-img {
        height: 50px !important;
        width: auto !important;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: block;
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        flex-direction: column;
        padding: 0;
        margin: 0;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 20px;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .shop-btn {
        display: none !important;
    }

    .mobile-shop-menu {
        background: var(--action-orange);
        color: white;
        font-weight: 600;
        border-bottom: none;
    }

    .mobile-shop-menu .nav-link {
        color: white;
    }

    body {
        padding-top: 100px !important;
    }

    /* Mobile Hero Layout */
    .hero {
        min-height: 80vh !important;
    }

    .hero::before {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
        border-radius: 50% 50% 0 0;
        z-index: 3;
        transform: scaleX(1.2);
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
        border-radius: 50% 50% 0 0;
        z-index: -4;
        transform: scaleX(1.4);
        opacity: 0.7;
    }

    .hero-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: -150px !important;
        min-height: 80vh !important;
        justify-content: center !important;
        grid-template-columns: 1fr;
    }

    .hero-left {
        order: 1;
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 20px;
    }

    .hero-right {
        order: 2;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: -50px !important;
        margin: 0;
        min-height: 60vh;
    }

    .hero-image-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .hero-mascot {
        max-width: 80% !important;
        height: auto !important;
        margin: -100px auto 0 auto !important;
        transform: translateX(-25px) !important;
        animation: float 3s ease-in-out infinite !important;
        width: 300px;
    }
    
    /* Mobile Speech Bubble */
    .speech-bubble-container {
        top: 15%;
        right: 10px;
        animation: float 3s ease-in-out infinite !important;
    }
    
    .speech-bubble {
        width: 70px;
        height: 35px;
        border-radius: 12px 12px 0px 12px;
        transform-origin: bottom right;
    }
    
    .speech-bubble:hover,
    .speech-bubble.mobile-open {
        width: 320px;
        height: 120px;
        border-radius: 15px 15px 0px 15px;
        transform: rotate(-1deg) translateY(-40px) translateX(-250px);
        transform-origin: bottom right;
    }
    
    .speech-bubble.mobile-open .bubble-content-collapsed {
        opacity: 0;
        transform: scale(0);
    }
    
    .speech-bubble.mobile-open .bubble-content-expanded {
        opacity: 1;
        transform: scale(1);
        pointer-events: all;
    }
    
    .exclamation {
        font-size: 0.6rem;
    }
    
    .bubble-content-expanded {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .bubble-meter-image {
        width: 40px;
        height: 40px;
    }
    
    .bubble-title {
        font-size: 0.8rem;
    }
    
    .bubble-details {
        font-size: 0.9rem;
    }
    
    .bubble-shop-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

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

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .hero-greeting {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .cta-button {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .cta-button span {
        font-size: 0.9rem !important;
        white-space: nowrap !important;
    }
    
    .hero-container,
    .about-container {
        padding: 0 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }

    /* Mobile App Section Mobile */
    .mobile-app {
        padding: 80px 0 200px 0;
        margin-bottom: -150px;
    }
    
    .mobile-app::before {
        height: 100% !important;
        top: 0 !important;
        transform: none !important;
    }
    
    .mobile-app-container {
        padding: 0 20px;
    }
    
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .phone-image {
        max-width: 280px;
        transform: translateY(-50px) translateX(20px);
    }
    
    .mobile-app-text {
        padding: 0 10px 20px 10px;
    }
    
    .mobile-app .learn-more-btn {
        order: 1;
        margin: -20px auto 30px auto;
    }

    .mobile-icons {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px;
        margin-top: 0px;
        margin-bottom: 20px;
        padding: 0 10px;
        flex-wrap: nowrap !important;
        justify-content: center;
        order: 2;
    }

    .mobile-icons .material-icons {
        font-size: 2rem;
        padding: 12px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-icons .material-icons::after {
        font-size: 0.8rem;
        padding: 6px 8px;
        bottom: -35px;
        white-space: nowrap;
    }
    
    /* Reviews Section Mobile */
    .reviews {
        padding: 60px 0;
    }
    
    .reviews-container {
        padding: 0 20px;
    }
    
    .reviews h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .reviews-scroll-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        margin-top: 30px;
    }
    
    .reviews-scroll-track {
        animation: none;
        gap: 20px;
        padding: 0 10px;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
        min-height: 300px;
        padding: 30px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .reviews-scroll-controls {
        display: none;
    }
    
    /* Services Page Mobile Layout */
    .about {
        padding-bottom: 10px !important;
    }
    
    .about-content {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }
    
    /* First about section - Mascot above text */
    .about:first-of-type .about-image {
        order: -1 !important;
        text-align: center;
        margin: -150px 0 0 0;
        padding: 0;
        height: auto !important;
    }
    
    .about:first-of-type .about-text {
        order: 1 !important;
        margin-top: -20px;
    }
    
    /* Second about section - Text above video */
    .about:nth-of-type(2) .about-text {
        order: -1 !important;
    }
    
    .about:nth-of-type(2) .about-image {
        order: 1 !important;
        margin-top: -80px;
    }
    
    .swimming-mascot {
        width: 300px !important;
        height: auto !important;
        top: 0px !important;
        position: relative !important;
        margin: 0 auto;
        display: block;
        padding: 0;
    }
    
    /* Services Page - Reorder Ways to Top Up and Solution Benefits */
    .about-content-three-col {
        flex-direction: column-reverse !important;
        display: flex !important;
    }
    
    .divider-line {
        display: none !important;
    }
}

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

    .hero-greeting {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 50px 0 0 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item .material-icons {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 2px;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-social {
    min-width: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

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

.social-links-vertical .social-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 8px 0;
    gap: 12px;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-vertical .social-link:hover {
    background: transparent;
    color: var(--action-orange);
    transform: translateX(5px);
}

.social-links-vertical .social-link .material-icons {
    font-size: 1.5rem;
    width: 24px;
    flex-shrink: 0;
}

.footer .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer .social-link .material-icons {
    font-size: 1.2rem;
}

.social-links-horizontal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links-horizontal .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-links-horizontal .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links-horizontal .social-link svg {
    width: 20px;
    height: 20px;
}

/* Brand-specific hover colors */
.social-links-horizontal .social-link.facebook:hover {
    background: #1877f2;
}

.social-links-horizontal .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-links-horizontal .social-link.linkedin:hover {
    background: #0077b5;
}

.social-links-horizontal .social-link.twitter:hover {
    background: #000000;
}

.social-links-horizontal .social-link.youtube:hover {
    background: #ff0000;
}

/* Vertical Social Media Stack */
.social-media-stack {
    position: absolute;
    top: -20px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.social-media-stack .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-media-stack .social-link:hover {
    transform: translateX(-5px) scale(1.1);
}

.social-media-stack .social-link svg {
    width: 22px;
    height: 22px;
}

/* Brand-specific hover colors for stack */
.social-media-stack .social-link.facebook:hover {
    background: #1877f2;
}

.social-media-stack .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-media-stack .social-link.linkedin:hover {
    background: #0077b5;
}

.social-media-stack .social-link.youtube:hover {
    background: #ff0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-media-stack {
        right: 20px;
        top: 20px;
    }
    
    .social-media-stack .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-media-stack .social-link svg {
        width: 18px;
        height: 18px;
    }
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* Privacy Policy Page */
.policy-section {
    background: var(--neutral-gray);
    padding: 80px 0;
    min-height: calc(100vh - 160px);
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.policy-content {
    background: white;
    padding: 60px;
    border-radius: var(--border-radius-md);
}

.policy-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 40px 0 20px 0;
    border-bottom: 2px solid var(--action-orange);
    padding-bottom: 10px;
}

.policy-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin: 30px 0 15px 0;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-shadow);
    margin-bottom: 20px;
}

.policy-content a {
    color: var(--action-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.contact-info {
    background: var(--neutral-gray);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--action-orange);
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Policy Page Mobile */
@media (max-width: 768px) {
    .policy-container {
        padding: 0 20px;
    }
    
    .policy-content {
        padding: 40px 30px;
    }
    
    .policy-content h1 {
        font-size: 2.2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}

/* Special Offer Badge */
.special-offer-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.special-offer-badge {
    background: linear-gradient(135deg, var(--action-orange) 0%, #ff8533 100%);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.3);
    transform: rotate(-1deg);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.special-offer-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff8533 0%, var(--action-orange) 100%);
    border-radius: 17px;
    z-index: -1;
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.badge-meter-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.offer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-details {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.offer-details strong {
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-shop-btn {
    background: white;
    color: var(--action-orange);
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
}

.badge-shop-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile responsiveness for special offer badge */
@media (max-width: 768px) {
    .special-offer-section {
        padding: 30px 15px;
    }
    
    .special-offer-badge {
        padding: 15px;
        transform: rotate(-0.5deg);
    }
    
    .badge-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .badge-meter-image {
        width: 65px;
        height: 65px;
        order: -1;
    }
    
    .offer-title {
        font-size: 1rem;
    }
    
    .offer-details {
        font-size: 1.1rem;
    }
    
    .offer-details strong {
        font-size: 1.3rem;
    }
    
    .badge-shop-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Contact Page Styles */
.contact-form-section {
    background: var(--neutral-gray);
    padding: 60px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-md);
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-shadow);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--action-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.2);
}

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

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

.submit-btn {
    width: 100%;
    background: var(--action-orange);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    background: var(--action-orange);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.contact-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-details {
    color: var(--text-shadow);
    line-height: 1.8;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-details a {
    color: var(--action-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-blue);
}

.office-hours {
    background: var(--action-orange);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: auto;
    font-weight: 600;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.social-link-contact {
    width: 45px;
    height: 45px;
    background: var(--neutral-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--action-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-contact:hover {
    background: var(--action-orange);
    color: white;
    transform: translateY(-2px);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--action-orange);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.2);
}

.contact-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.contact-button .material-icons {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-button {
        width: 250px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 404 Error Page Styles */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-gray);
    position: relative;
    overflow: hidden;
    padding: 80px 20px 40px 20px;
}

.error-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.error-mascot {
    width: 300px;
    height: auto;
    margin: 0 auto 40px auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--action-orange);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(255, 105, 0, 0.3);
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-shadow);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.error-btn {
    background: var(--action-orange);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--action-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.error-btn:hover {
    background: transparent;
    color: var(--action-orange);
    transform: translateY(-2px);
}

.error-btn.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.helpful-links {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-md);
    margin-top: 40px;
}

.helpful-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    background: var(--neutral-gray);
    text-decoration: none;
    color: var(--text-shadow);
    transition: all 0.3s ease;
}

.link-item:hover {
    background: var(--action-orange);
    color: white;
    transform: translateY(-2px);
}

.link-item .material-icons {
    color: var(--action-orange);
    font-size: 1.5rem;
}

.link-item:hover .material-icons {
    color: white;
}

/* Background shapes */
.error-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.error-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.1);
    animation: floatShape 15s ease-in-out infinite;
}

.error-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.error-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: -5%;
    animation-delay: 5s;
}

.error-shape:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 30%;
    right: 10%;
    animation-delay: 10s;
    background: rgba(0, 72, 124, 0.05);
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.8rem;
    }

    .error-message {
        font-size: 1rem;
    }

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

    .error-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .helpful-links {
        padding: 30px 20px;
    }

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

    .error-mascot {
        width: 250px;
    }
}

/* Help Page Styles */
.help-section {
    background: var(--neutral-gray);
    padding: 80px 0;
}

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

.faq-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    background: var(--action-orange);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.category-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-shadow);
    line-height: 1.6;
}

.faq-list {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-shadow);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--neutral-gray);
    color: var(--action-orange);
}

.faq-question.active {
    background: var(--action-orange);
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--neutral-gray);
}

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

.faq-answer p {
    color: var(--text-shadow);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer ul {
    color: var(--text-shadow);
    line-height: 1.7;
    padding-left: 20px;
}

.faq-answer a {
    color: var(--action-orange);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--primary-blue);
}

.search-hidden {
    display: none !important;
}

.search-box {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--action-orange);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.2);
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-blue);
}

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

.quick-link {
    background: var(--action-orange);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.quick-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-categories {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }
    
    .category-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

/* Where to Top Up Page Styles */
.top-up-section {
    background: var(--neutral-gray);
    padding: 80px 0;
    min-height: 80vh;
}

.top-up-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.page-title {
    color: var(--text-shadow);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    color: var(--secondary-blue);
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.top-up-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.method-card {
    background: white;
    padding: 40px 30px 30px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    background: var(--action-orange);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.method-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 72, 124, 0.3);
}

.method-card a {
    position: relative;
    z-index: 10;
    display: block;
    text-decoration: none;
}

.method-card a .method-icon {
    pointer-events: all;
}

.method-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.method-description {
    color: var(--text-shadow);
    line-height: 1.7;
    margin-bottom: 25px;
}

.method-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.method-features li {
    color: var(--text-shadow);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-features li::before {
    content: '✓';
    color: var(--action-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.method-cta {
    background: var(--action-orange);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.method-cta:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.additional-info {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.additional-info h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.support-icon {
    background: var(--neutral-gray);
    color: var(--action-orange);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-icon:hover {
    background: var(--action-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.3);
}

.support-item h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

.support-item p {
    color: var(--text-shadow);
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .top-up-container {
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .top-up-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .method-card h3 {
        font-size: 1.5rem;
    }
    
    .additional-info {
        padding: 30px 20px;
    }
    
    .support-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}