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

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    color: #334155;
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Colors */
:root {
    --primary-orange: #f97316;
    /* Vibrant Amber-Orange */
    --primary-accent: #ff6b00;
    /* Deep Orange Hover Accent */
    --primary-dark: #0f172a;
    /* Slate Dark / Neutral */
    --dark-bg: #f8fafc;
    /* Light Slate BG */
    --card-bg: #ffffff;
    /* White Card */
    --text-gray: #475569;
    /* Readable Charcoal Gray */
    --light-gray: #f1f5f9;
    /* Soft border gray */
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    /* Modern rounded corners */
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}



.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Header Navigation */
header {
    border-bottom: 1px solid #f1f5f9;
    padding: 15px 0;
    background: white;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    text-decoration: none;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: inline-block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.2s;
    padding-bottom: 4px;
}

nav ul li a:hover {
    color: #0f172a;
}

/* Sliding underline hover animation */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

nav ul li a.active {
    color: #0f172a;
}

nav ul li a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions span {
    color: var(--text-gray);
    font-weight: 500;
}

.nav-timing-mobile {
    display: none;
}

.nav-timing-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-timing-desktop.is-open {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.nav-timing-desktop.is-closed {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

.nav-mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: white;
}

.hero-text-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-title-large {
    grid-column: 1 / -1;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: transparent;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.hero-title-large {
    animation: textReveal 0.1s forwards 0.5s;
}

.hero-title-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-accent);
    transform-origin: bottom;
    transform: scaleY(0);
}

.hero-title-large::after {
    animation: blockRevealUp 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-left p {
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 550px;
    min-height: 100px;
    /* reserve space for three lines */
}

.hero-left p::after {
    content: '|';
    animation: blink 1s step-start infinite;
}

.hero-right {
    text-align: right;
}

.hero-right h2 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: transparent;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.hero-right h2 {
    animation: textReveal 0.1s forwards 0.7s;
}

.hero-right h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-accent);
    transform-origin: top;
    transform: scaleY(0);
}

.hero-right h2::after {
    animation: blockRevealDown 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.2s;
}

.text-orange {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Hero Gallery */
.hero-gallery {
    display: flex;
    gap: 20px;
}

.gallery-item {
    flex: 1;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-sub {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

/* Lower Section styled similar to Hero (Light Theme) */
.dark-section {
    background-color: var(--dark-bg);
    /* #f8fafc */
    color: #334155;
    padding: 80px 0;
    border-top: 1px solid #f1f5f9;
}

.trusted-title {
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-gray);
}

.logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.9;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 20px;
    color: #334155;
}

.capacity-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #0f172a;
}

/* Pricing Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--card-bg);
    border-left: 6px solid var(--primary-orange);
    padding: 30px;
    border-radius: 12px;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: var(--light-gray);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #0f172a;
}

.card ul {
    list-style: none;
}

.card ul li {
    display: flex;
    justify-content: space-between;
    color: #475569;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.card ul li span:last-child {
    color: #0f172a;
    font-weight: 600;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-wrapper {
        padding: 0 5px;
        position: relative;
    }

    .nav-timing-mobile {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        padding: 6px 12px;
        border-radius: 20px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        max-width: 50%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-timing-mobile.is-open {
        background: #dcfce7;
        color: #166534;
        border: 1px solid #bbf7d0;
    }

    .nav-timing-mobile.is-closed {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }

    .nav-timing-desktop {
        display: none !important;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
        padding: 100px 30px 40px 30px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    nav ul li a {
        font-size: 1.25rem;
        padding-bottom: 6px;
    }

    .nav-mobile-only {
        display: block;
        margin-top: 40px;
    }

    .header-actions {
        display: none;
    }

    /* Hero Section Responsiveness */
    .hero {
        padding: 40px 0;
    }

    .hero-text-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-title-large {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-left p {
        max-width: 100%;
        margin: 0 auto 20px auto;
    }

    .hero-right {
        text-align: center;
    }

    .hero-right h2 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-gallery {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-item {
        height: 260px;
    }

    /* Lower Section Responsiveness */
    .dark-section {
        padding: 60px 0;
    }

    .capacity-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .logos-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 60px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 24px;
    }
}

/* Animations */
@keyframes blockRevealUp {
    0% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    50% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    50.1% {
        transform-origin: top;
    }

    100% {
        transform: scaleY(0);
        transform-origin: top;
    }
}

@keyframes blockRevealDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes textReveal {
    100% {
        color: #0f172a;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Customer Reviews Section */
.reviews-section {
    background-color: var(--dark-bg);
    /* Match main theme light background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.review-card {
    background-color: var(--card-bg);
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    color: var(--primary-orange);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.review-card .stars {
    color: #facc15;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Big Footer */
.big-footer {
    background-color: #f8fafc;
    color: var(--text-gray);
    padding: 80px 0 30px;
    border-top: 1px solid #e2e8f0;
}

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

.footer-col h4 {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list li i {
    color: var(--primary-accent);
    width: 20px;
    margin-top: 4px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-desc {
    line-height: 1.6;
    max-width: 300px;
}

.footer-address {
    line-height: 1.6;
}

.btn-nav {
    background-color: transparent;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    padding: 8px 16px;
    font-size: 0.9rem;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
}

.btn-nav:hover {
    background-color: var(--primary-orange);
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

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

.social-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--primary-orange);
}

/* Responsive Footer & Reviews */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   Product Showcase Section (Horizontal Left-Right 3D Coverflow Deck)
   ========================================================================== */
.product-showcase-section {
    padding: 60px 0 70px 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.deck-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deck-counter-badge {
    background: #0f172a;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.swipe-deck-container {
    max-width: 1240px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.swipe-deck-stack {
    width: 100%;
    height: 480px;
    position: relative;
    user-select: none;
    touch-action: none;
    display: flex;
    justify-content: center;
}

.swipe-card {
    position: absolute;
    top: 0;
    width: 330px;
    height: 460px;
    will-change: transform, opacity;
    cursor: grab;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.swipe-card:active {
    cursor: grabbing;
}

.swipe-card .mockup-product-card {
    height: 100%;
    background: #ffffff;
    border: 2.5px solid #575757;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Top Image Container (Filled to edges of card) */
.mockup-card-img-box {
    width: 100%;
    height: 350px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.mockup-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    pointer-events: none;
}

/* Bottom Container with Rounded Top Separator */
.mockup-card-bottom {
    background: #ffffff;
    border-top: 2.5px solid #575757;
    border-radius: 24px 24px 0 0;
    margin-top: -20px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.mockup-product-info {
    flex: 1;
    min-width: 0;
}

.mockup-product-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 3px;
}

/* WhatsApp Icon Button */
.mockup-wa-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 2px solid #575757;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.mockup-wa-btn:hover {
    background: #1eb957;
    color: #ffffff;
}

/* Deck Controls */
.deck-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
    width: 100%;
    max-width: 360px;
}

.deck-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #575757;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.deck-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: scale(1.06);
}

.deck-wa-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    border: 2px solid #575757;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    flex: 1;
}

.deck-wa-order-btn:hover {
    background: #1eb957;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .swipe-deck-container {
        max-width: 100%;
    }

    .swipe-deck-stack {
        height: 440px;
    }

    .swipe-card {
        width: 280px;
        height: 420px;
    }

    .mockup-card-img-box {
        height: 310px;
    }

    .showcase-heading {
        font-size: 1.5rem;
    }
}