* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Floating Pill Header */
.sticky-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border: 1px solid var(--accent-primary);
    outline: 1px solid var(--accent-secondary);
    /* Purple outside blue border */
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--purple-glow);
}

.sticky-header nav {
    width: 100%;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 100px;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-whatsapp {
    background: var(--accent-primary) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 100px;
    box-shadow: 0 4px 15px var(--blue-glow), 0 4px 25px var(--purple-glow);
}

/* Section 1: Hero-Aloocare (Vertical Stack) */
.hero-aloocare {
    min-height: 140vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    /* Full Obsidian Background */
    color: var(--text-main);
}

@keyframes floatBg {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5%, 5%);
    }
}

.text-group {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    width: 90%;
    max-width: 1200px;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 1.1;
    margin: 0 auto 20px;
    font-weight: 400;
    color: var(--text-main);
}

.hero-content h1 span {
    font-weight: 700;
    display: inline;
    color: var(--accent-primary);
    /* Electric Blue Pop */
}

.tagline-badge {
    display: inline-block;
    background: var(--accent-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-tagline {
    display: inline-block;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: #4a4a4a;
    /* Darker for better contrast on light paper */
    margin: 20px auto 40px;
    padding: 14px 28px;
    max-width: 650px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 500;

    /* Aesthetic Paper Texture */
    background: #fdfaf5;
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.5) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(255, 255, 255, 0.4) 0, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;

    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 0 20px rgba(255, 255, 255, 0.5);

    position: relative;
    overflow: hidden;
}

.hero-subtext {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 20px auto;
    letter-spacing: 0.5px;
}

/* Floating Labels Grouped Near Text */
.floating-labels-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    /* Behind text but near */
}

.floating-label {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.l1 {
    top: -15px;
    left: 0;
}

.l2 {
    top: 45%;
    right: -30px;
    animation-delay: 1.5s;
}

.l3 {
    bottom: -15px;
    left: 15%;
    animation-delay: 1s;
}

/* Large Video Sequence Below Text */
.large-video {
    width: 100vw;
    height: 80vh;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 1;
    border-radius: 0;
    box-shadow: none;
    background: #000;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Section 2: Catalogue */
.catalogue-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.portfolio-card {
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.portfolio-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 163, 255, 0.2), 0 20px 80px rgba(138, 43, 226, 0.15);
}

.card-img-wrapper {
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 1s ease;
}

.portfolio-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border: 1.5px solid var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.enquire-btn:hover {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px var(--blue-glow), 0 0 35px var(--purple-glow);
}

/* Section 3: Dark Portfolio */
.dark-portfolio {
    background: var(--bg-primary);
    color: var(--text-main);
    padding: 180px 0 var(--spacing-xl);
    position: relative;
}

.section-divider {
    height: 0;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
    margin-top: 0;
}

/* Moving Showcase Ribbon */
.insta-ribbon {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 40px 0;
}

.ribbon-track {
    display: flex;
    gap: 30px;
    animation: scrollRibbon 30s linear infinite;
    width: max-content;
}

.ribbon-track img {
    height: 350px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes scrollRibbon {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contact Funnel Section */
.contact-funnel {
    background: var(--bg-secondary);
    padding: 100px 0;
    text-align: center;
}

.funnel-container {
    max-width: 800px;
    margin: 0 auto;
}

.funnel-container h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 20px;
}

.funnel-container p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.funnel-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.funnel-wa-btn {
    background: var(--accent-primary);
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px var(--blue-glow), 0 10px 50px var(--purple-glow);
}

.funnel-wa-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--blue-glow), 0 15px 60px var(--purple-glow);
}

/* FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

/* Footer */
.main-footer {
    background-color: #000;
    color: var(--text-main);
    padding: 100px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
}

.footer-brand .logo {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition-fast);
}

.footer-wa:hover {
    opacity: 0.8;
}

.footer-bottom {
    background: #050505;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}



/* Product Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 2001;
    display: flex;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    animation: modalSlide 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes modalSlide {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2005;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent-primary);
    color: white;
}

.modal-content {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevent parent from scrolling */
}

.modal-left {
    flex: 1.2;
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100%;
}

.main-media {
    width: 100%;
    height: 100%;
    max-height: 60vh;
    border-radius: var(--radius-md);
    overflow: auto;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    padding: 20px;
}

.main-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
    cursor: zoom-in;
}

.main-media img.zoomed {
    cursor: zoom-out;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.zoom-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.zoom-controls button:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.1);
}

.zoom-controls button ion-icon {
    pointer-events: none;
}

.media-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.media-thumbnails img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: #111;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.media-thumbnails img.active {
    border-color: var(--accent-primary);
}

.modal-right {
    flex: 1;
    padding: 60px 40px 40px;
    /* Reduced top padding */
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    overflow: hidden;
    /* Contain children */
}

.modal-right h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 5px;
    /* Tighter margin-bottom as price/rating follow */
    color: var(--text-main);
    line-height: 1.1;
}

.modal-right p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-description-scroll {
    flex: 1;
    /* Take up all remaining space */
    min-height: 0;
    /* Important for flex-child scrolling */
    overflow-y: auto;
    padding-right: 15px;
    margin-top: 10px;
}

.modal-description-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal-description-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-description-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

.modal-right ul {
    list-style: none;
    margin-bottom: 35px;
}

.modal-right ul li {
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-right ul li::before {
    content: '→';
    color: var(--accent-primary);
    font-weight: bold;
}

.modal-cta {
    margin-bottom: 25px;
    flex-shrink: 0;
}

.modal-cta .enquire-btn {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    background: rgba(43, 108, 176, 0.1);
    border-width: 2px;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.2);
}

.modal-cta .enquire-btn:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 30px var(--blue-glow), 0 0 50px var(--purple-glow);
}

.funnel-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .modal-container {
        height: 95vh;
        width: 95%;
    }

    .modal-content {
        flex-direction: column;
    }

    .modal-left {
        flex: none;
        height: auto;
        padding: 30px;
        position: relative;
    }

    .main-media {
        max-height: 40vh;
    }

    .modal-right {
        flex: none;
        padding: 30px;
    }

    .modal-right h2 {
        font-size: 1.8rem;
    }
}

/* Amazon-Inspired Pricing & Rating Styles */
.card-price-preview {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-muted);
}

.card-price-preview span {
    color: var(--accent-primary);
    font-weight: 700;
    margin-left: 5px;
}

.modal-rating-amazon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.modal-rating-amazon .stars {
    color: #FFA41C;
    /* Amazon Gold */
    font-size: 1.1rem;
}

.modal-rating-amazon .rating-num {
    color: var(--accent-primary);
    font-weight: 600;
}

.modal-rating-amazon .review-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.modal-pricing-amazon {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 5px;
}

.modal-pricing-amazon .discount-percent {
    color: #CC0C39;
    /* Amazon Red */
    font-size: 1.8rem;
    font-weight: 300;
}

.modal-pricing-amazon .current-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-main);
}

.mrp-pricing {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

/* Review Section Styles */
.modal-review-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.review-title {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.star-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.star-icon {
    font-size: 1.8rem;
    color: #444;
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-icon:hover,
.star-icon.hover,
.star-icon.active {
    color: #FFA41C;
    transform: scale(1.1);
}

.submit-review-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1.5px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.submit-review-btn:hover {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 15px var(--blue-glow), 0 0 25px var(--purple-glow);
}

.review-status-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-status-msg.success {
    color: #25D366;
}

.mrp-value {
    text-decoration: line-through;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border: 1px solid var(--accent-primary);
    border-top: none;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-wa {
    color: var(--accent-primary);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sticky-header {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        height: 64px;
        border-left: none;
        border-right: none;
        border-top: none;
        max-width: none;
    }

    .nav-container {
        padding: 0 20px;
        width: 100%;
        max-width: none;
        height: 100%;
    }

    .sticky-header nav {
        padding: 0;
        height: 100%;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    /* Hero Adjustments */
    .hero-aloocare {
        padding-top: 140px;
        /* Strong padding to prevent overlap with sticky header */
        min-height: auto;
        padding-bottom: 60px;
    }

    .text-group {
        margin: 0 auto 40px;
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
        margin-bottom: 15px;
        text-align: center;
    }

    .tagline-badge {
        padding: 4px 12px;
        font-size: 0.65rem;
        margin: 0 auto 10px;
        display: inline-block;
    }

    .hero-tagline {
        display: block;
        padding: 16px 20px;
        font-size: 0.9rem;
        margin: 0 auto 30px;
        width: 92%;
        max-width: 500px;
        border-radius: 12px;
        text-align: center;
    }

    /* Hero Labels as Badges on Mobile */
    .floating-labels-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
        transform: unset;
        width: 100%;
        height: auto;
        margin: 0 auto;
        pointer-events: auto;
        z-index: 10;
    }

    .floating-label {
        position: static;
        padding: 6px 12px;
        font-size: 0.7rem;
        animation: none;
        /* Disable floating animation on mobile */
        white-space: nowrap;
    }

    .l1,
    .l2,
    .l3 {
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
    }

    /* Grid Adjustments */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .card-info {
        padding: 12px;
    }

    .card-info h3 {
        font-size: 1rem;
    }

    .card-info p {
        font-size: 0.8rem;
    }

    .card-price-preview {
        font-size: 0.9rem;
    }

    /* Footer Alignment */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 10px auto;
    }

    /* Modal Adjustments */
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .modal-content {
        flex-direction: column;
        overflow-y: auto;
    }

    .modal-left {
        height: 45vh;
        padding: 15px;
        position: relative;
    }

    .modal-right {
        padding: 20px;
        overflow-y: visible;
    }

    .modal-pricing-amazon .current-price {
        font-size: 1.8rem;
    }

    .funnel-wa-btn {
        width: 100%;
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}