:root {
    --primary-green: #156733;
    --secondary-green: #2d5a27;
    --accent-green: #156733;
    --dark-green: #1a3317;
    --white: #ffffff;
    --off-white: #f8faf7;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'AdorshoLipi', 'Inter', 'Outfit', sans-serif !important;
}

body {
    background-color: var(--off-white);
    color: var(--dark-green);
    overflow-x: hidden;
    padding-top: 80px;
    /* Space for fixed header */
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-green);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('../tablet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: activeSlide 2s infinite ease-in-out;
}

@keyframes activeSlide {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(4px); }
}

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

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.05);
    padding: 5px;
    border-radius: 20px;
}

.lang-btn {
    padding: 5px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: var(--dark-green);
}

.lang-btn.active {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-green);
}

/* Language Visibility */
[data-lang="en"] {
    display: none;
}

body.lang-en [data-lang="bn"] {
    display: none;
}

body.lang-en [data-lang="en"] {
    display: block;
}

body.lang-en .lang-btn[onclick*="en"] {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-green);
}

body.lang-en .lang-btn[onclick*="bn"] {
    background: transparent;
    box-shadow: none;
    color: var(--dark-green);
}

.scan-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.scan-icon:hover {
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1050;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.active {
    right: 0;
}

.sidebar a {
    text-decoration: none;
    color: var(--dark-green);
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sidebar a.active {
    color: var(--primary-green);
}

.sidebar a.active::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../tablet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: sideActiveBounce 2s infinite ease-in-out;
}

@keyframes sideActiveBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1040;
    display: none;
}

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

/* Hero Section Adjustments */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-green);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.05s ease;
    /* Minimalist, almost instant */
}

.hero-video.active {
    opacity: 1;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--off-white), transparent);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    gap: 20px;
    /* Reduced gap */
    text-align: center;
}

.hero-text {
    flex: 1;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 5;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-title small {
    display: block;
    font-size: 0.55em;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.5px;
}

.animate-shine {
    background: linear-gradient(110deg, #fff 40%, #e8f5e9 50%, #fff 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3.5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    margin: 5px 0 20px 0;
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    padding: 10px 25px;
    background: transparent !important;
    border: 2px solid var(--primary-green);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.secondary-button {
    /* Identical to cta-button now */
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-swipe 3s infinite;
}

@keyframes shine-swipe {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(21, 103, 51, 0.4);
    background: rgba(21, 103, 51, 0.1) !important;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hero-product {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.product-3d-wrapper {
    position: relative;
    width: 350px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: ew-resize;
}

.product-3d-wrapper img {
    position: absolute;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.1s ease;
    pointer-events: none;
    user-select: none;
}

.product-3d-wrapper img.active {
    opacity: 1;
}

/* Features Section */
.features {
    padding: 100px 5%;
    background: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    padding: 80px 5%;
    background: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.feature-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.feature-content {
    padding: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin: 0;
    font-weight: 600;
}
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.6;
    color: #555;
}

/* Benefits Section (Glassmorphism) */
.benefits {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
    margin-bottom: 12px;
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.benefit-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-item h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--white);
    font-weight: 700;
    text-align: right;
    flex: 1;
}

.benefit-divider {
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
    text-align: left !important;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cap Verification Section */
.cap-verification {
    padding: 60px 5%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* Verification Slider Styles */
.cap-image-container {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.verification-slider-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.verification-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--off-white);
}

.v-slide {
    display: none;
    padding: 20px;
    animation: fadeIn 0.5s ease-in-out;
}

.v-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.rotating-item {
    width: 100%;
    max-width: 240px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    animation: slowRotate 15s linear infinite;
}

.glowing-item {
    width: 100%;
    max-width: 240px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.slide-caption {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Controls */
.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--dark-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.slider-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.slider-btn.prev { left: -60px; }
.slider-btn.next { right: -60px; }

/* Thumbnails */
.slider-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.thumb-box {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.thumb-box.active {
    border-color: var(--accent-green);
    transform: scale(1.1);
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .slider-btn.prev { left: -10px; }
    .slider-btn.next { right: -10px; }
    .thumb-box {
        width: 50px;
        height: 50px;
    }
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
        align-items: center; /* Back to center */
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 10px;
        justify-content: center; /* Back to center */
        padding-top: 0;
    }

    .hero-text {
        padding: 20px;
        width: 100%;
        margin: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    .hero-title {
        font-size: 1.4rem; /* Even smaller */
        margin-bottom: 5px;
    }

    .hero-subtitle {
        font-size: 0.85rem; /* Even smaller */
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .hero-divider {
        width: 30px;
        margin: 2px 0 10px 0;
    }

    .hero-product {
        margin-bottom: 20px;
    }

    .product-3d-wrapper {
        width: 250px;
        height: 350px;
    }

    .product-3d-wrapper img {
        max-width: 80%;
    }

    .logo {
        height: 40px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .cap-verification {
        padding: 40px 5%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-img-wrapper {
        height: 160px;
    }

    .feature-content {
        padding: 12px;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }
}

/* Footer */
.main-footer {
    background-color: var(--off-white);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark-green);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--primary-green);
    position: relative;
    font-weight: 700;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: var(--dark-green);
    transition: all 0.3s ease;
    opacity: 0.7;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary-green);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    color: var(--dark-green);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    color: var(--dark-green);
    opacity: 0.8;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-contact-info li {
    margin-bottom: 12px;
}

.footer-contact-info a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    opacity: 1 !important;
}

@media (max-width: 992px) {
    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 5% 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .footer-brand .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a:hover {
        padding-left: 0;
    }
}
/* --- Reduced Text & Button Sizes --- */
body { font-size: 0.85rem !important; }
.hero-title { font-size: 1.8rem !important; }
.hero-subtitle { font-size: 0.9rem !important; }
.section-title h2 { font-size: 1.4rem !important; }
.cta-button { padding: 10px 25px !important; font-size: 0.8rem !important; border-radius: 20px !important; }
.order-btn-nav {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 6px 15px !important;
    font-size: 0.75rem !important;
    border-radius: 15px !important;
}
.footer-links h4 { font-size: 1rem !important; }
.footer-links ul li a { font-size: 0.8rem !important; }
.footer-bottom { font-size: 0.7rem !important; }

/* --- Order Popup Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.order-modal {
    background: white;
    width: 90%;
    max-width: 420px;
    border-radius: 30px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .order-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.modal-close:hover { background: #e0e0e0; color: #333; }

.modal-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.order-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.order-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.1);
}

.option-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.option-info {
    text-align: left;
    flex: 1;
}

.option-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.option-value {
    display: block;
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
}

.opt-whatsapp { border-left: 5px solid #25d366; }
.opt-whatsapp .option-icon { background: #e8faf0; color: #25d366; }

.opt-mobile { border-left: 5px solid #3498db; }
.opt-mobile .option-icon { background: #ebf5fb; color: #3498db; }

.opt-facebook { border-left: 5px solid #1877f2; }
.opt-facebook .option-icon { background: #e7f0ff; color: #1877f2; }

.fb-subtitle { font-size: 0.7rem; opacity: 0.8; font-weight: 400; }

/* Authentic Source Section */
.authentic-source {
    padding: 80px 5%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.auth-content {
    flex: 1;
    max-width: 600px;
}

.auth-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(21, 103, 51, 0.1);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-content h2 {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.auth-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.auth-contact-box {
    background: var(--off-white);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    text-align: left;
}

.auth-contact-box h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.auth-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
}

.auth-fb-container {
    flex: 1;
    max-width: 450px;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .authentic-source {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }
    .auth-fb-container {
        width: 100%;
        max-width: 500px;
    }
    .auth-content h2 {
        font-size: 1.8rem;
    }
}
