/* ============================================
   ANNU HEALTH HUB — Premium Wellness Design System
   ============================================ */

/* --- Design Tokens --- */
:root {
    --bg-color: #FAF8F5;
    --card-bg: #FFFFFF;
    --primary-green: #6B8F71;
    --primary-green-dark: #4a6e50;
    --secondary-green: #A8C3A0;
    --accent-gold: #C9A96E;
    --accent-rose: #D4A0A0;
    --text-dark: #2F2F2F;
    --text-light: #888888;
    --text-medium: #555555;
    --border-light: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 8px 32px rgba(107, 143, 113, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

p { color: var(--text-medium); }

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

::selection {
    background-color: var(--secondary-green);
    color: white;
}

/* --- Utility Classes --- */
.text-primary-green { color: var(--primary-green) !important; }
.bg-success-custom { background-color: var(--primary-green) !important; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(107, 143, 113, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(107, 143, 113, 0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}
.animate-fade-left { animation: fadeInLeft 0.8s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.8s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }

/* Stagger children */
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* =============================
   NAVBAR
   ============================= */
.navbar-premium {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    transition: var(--transition-smooth);
}
.navbar-premium.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-sm);
}
.navbar-premium .navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-green) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-premium .navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}
.navbar-premium .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-medium) !important;
    padding: 8px 18px !important;
    border-radius: 8px;
    position: relative;
    transition: var(--transition-smooth);
}
.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    color: var(--primary-green) !important;
    background: rgba(107, 143, 113, 0.08);
}
.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
    transition: transform 0.3s ease;
}
.navbar-premium .nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

/* Cart Badge */
.cart-badge {
    position: relative;
    padding: 8px 12px !important;
}
.cart-badge .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.65rem;
    padding: 3px 6px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)) !important;
    border: 2px solid white;
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================
   BUTTONS
   ============================= */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(107, 143, 113, 0.25);
}
.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.btn-primary-custom:hover::before { left: 100%; }

.btn-outline-custom {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: var(--radius-sm);
    padding: 10px 26px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}
.btn-outline-custom:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

/* =============================
   HERO SECTION
   ============================= */
.hero-premium {
    position: relative;
    background: linear-gradient(135deg, #3d6b44 0%, var(--primary-green) 40%, var(--secondary-green) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 195, 160, 0.3) 0%, transparent 70%);
    animation: blob 8s ease-in-out infinite;
    pointer-events: none;
}
.hero-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: blob 10s ease-in-out infinite reverse;
    pointer-events: none;
}
.hero-premium .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}
.hero-premium .hero-badge .dot {
    width: 8px; height: 8px;
    background: #7dde8a;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}
.hero-premium h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-premium h1 span {
    background: linear-gradient(90deg, #d4f5d4, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-premium .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 520px;
    animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-premium .hero-cta {
    animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-premium .hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-premium .hero-stats .stat-item {
    text-align: left;
}
.hero-premium .hero-stats .stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.hero-premium .hero-stats .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-image-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s 0.3s ease both;
}
.hero-image-wrapper img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    max-height: 480px;
}
.hero-image-wrapper .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
    z-index: 2;
}
.hero-image-wrapper .floating-card.card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}
.hero-image-wrapper .floating-card.card-2 {
    bottom: 15%;
    left: -10px;
    animation-delay: 1.5s;
}
.floating-card .fc-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* =============================
   SECTION HEADERS
   ============================= */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(107, 143, 113, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* Legacy section-title */
.section-title {
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 2px;
}

/* =============================
   CARDS — Premium Style
   ============================= */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Course / Product Cards */
.course-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: var(--transition-smooth);
    position: relative;
}
.course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}
.course-card:hover::before { transform: scaleX(1); }
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.course-card .card-img-top-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #eef4ef, #f5f9f5);
}
.course-card .card-img-top-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.course-card:hover .card-img-top-wrap img {
    transform: scale(1.08);
}
.course-card .card-img-top-wrap .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.course-card:hover .card-img-top-wrap .card-overlay { opacity: 1; }
.course-card .card-img-top-wrap .price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1;
}
.course-card .card-body-custom {
    padding: 22px;
}
.course-card .card-body-custom .card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(107, 143, 113, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.course-card .card-body-custom h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.course-card .card-body-custom .card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.course-card .card-footer-custom {
    padding: 0 22px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.course-card .card-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}
.course-card .card-price .original {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 6px;
    font-weight: 400;
}
.course-card .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--primary-green);
    transition: var(--transition-smooth);
}
.course-card .card-btn:hover {
    background: var(--primary-green);
    color: white;
}

/* =============================
   CATEGORY CHIPS
   ============================= */
.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--text-dark);
}
.category-chip:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-green);
    color: var(--primary-green);
}
.category-chip .chip-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(107,143,113,0.1), rgba(168,195,160,0.15));
    color: var(--primary-green);
    transition: var(--transition-smooth);
}
.category-chip:hover .chip-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    transform: scale(1.1);
}
.category-chip .chip-label {
    font-weight: 600;
    font-size: 0.85rem;
}

/* =============================
   FEATURES / WHY CHOOSE US
   ============================= */
.feature-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
    transition: var(--transition-smooth);
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}
.feature-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* =============================
   ABOUT SECTION
   ============================= */
.about-section {
    position: relative;
    overflow: hidden;
}
.about-section .about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-section .about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section .about-img-wrap .about-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonial-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(107, 143, 113, 0.12);
    line-height: 1;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-card .stars {
    color: #f5b342;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}
.testimonial-card .author-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.testimonial-card .author-role {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* =============================
   CTA BANNER
   ============================= */
.cta-banner {
    background: linear-gradient(135deg, #3d6b44 0%, var(--primary-green) 50%, var(--secondary-green) 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
    color: white;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: blob 8s ease-in-out infinite;
}
.cta-banner h2 { color: white; font-size: 2rem; }
.cta-banner p { color: rgba(255,255,255,0.8); }

/* =============================
   FOOTER
   ============================= */
.footer-premium {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.footer-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--accent-gold));
}
.footer-premium h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-premium .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-premium .footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}
.footer-premium .footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 320px;
}
.footer-premium .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-premium .footer-links li { margin-bottom: 10px; }
.footer-premium .footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-premium .footer-links a:hover {
    color: var(--secondary-green);
    transform: translateX(4px);
}
.footer-premium .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-premium .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition-smooth);
}
.footer-premium .footer-social a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}
.footer-premium .newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-premium .newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: none;
    padding: 14px 18px;
    color: white;
    font-size: 0.9rem;
    outline: none;
}
.footer-premium .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
}
.footer-premium .newsletter-form button {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border: none;
    padding: 14px 22px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.footer-premium .newsletter-form button:hover {
    opacity: 0.9;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* =============================
   FORMS
   ============================= */
.form-control {
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    border: 1.5px solid #e8e8e8;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    background: #fcfcfc;
}
.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(107, 143, 113, 0.1);
    background: white;
}

/* =============================
   PRICE
   ============================= */
.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.3rem;
}

/* =============================
   PRODUCT IMAGE WRAP (legacy)
   ============================= */
.product-img-wrap {
    background: linear-gradient(135deg, #eef4ef, #f5f9f5);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .product-img-wrap img {
    transform: scale(1.05);
}

/* =============================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 991px) {
    .hero-premium { padding: 80px 0 60px; min-height: auto; }
    .hero-premium h1 { font-size: 2.2rem; }
    .hero-premium .hero-stats { gap: 20px; flex-wrap: wrap; }
    .cta-banner { padding: 40px 24px; }
    .section-header h2 { font-size: 1.8rem; }
}
@media (max-width: 767px) {
    .hero-premium h1 { font-size: 1.8rem; }
    .hero-image-wrapper { margin-top: 40px; }
    .hero-image-wrapper .floating-card { display: none; }
    .hero-premium .hero-stats .stat-number { font-size: 1.4rem; }
    .footer-premium { padding-top: 50px; }
    .cta-banner { border-radius: var(--radius-md); padding: 30px 20px; }
    .cta-banner h2 { font-size: 1.4rem; }
}

/* =============================
   SCROLLBAR
   ============================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
    border-radius: 4px;
}

/* =============================
   PAGE LOADER
   ============================= */
.page-loader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.page-loader .loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================
   ORIMII-INSPIRED: MARQUEE TICKER
   ============================= */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    background: var(--text-dark);
    color: rgba(255,255,255,0.85);
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
}
.marquee-strip .marquee-inner {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}
.marquee-strip .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    flex-shrink: 0;
}
.marquee-strip .marquee-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary-green);
    flex-shrink: 0;
}

/* =============================
   ORIMII-INSPIRED: FULL-WIDTH HERO IMAGE
   ============================= */
.hero-fullwidth {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-fullwidth .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-fullwidth .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}
.hero-fullwidth .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.hero-fullwidth .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}
.hero-fullwidth .hero-content h1 {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.hero-fullwidth .hero-content p, .hero-fullwidth .hero-content .section-badge {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* =============================
   ORIMII-INSPIRED: SPLIT TEXT REVEAL
   ============================= */
.text-reveal {
    overflow: hidden;
    display: inline-block;
}
.text-reveal .text-reveal-inner {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-reveal.visible .text-reveal-inner {
    transform: translateY(0);
}

/* Staggered text reveal */
.text-reveal-group .text-reveal:nth-child(1) .text-reveal-inner { transition-delay: 0s; }
.text-reveal-group .text-reveal:nth-child(2) .text-reveal-inner { transition-delay: 0.1s; }
.text-reveal-group .text-reveal:nth-child(3) .text-reveal-inner { transition-delay: 0.2s; }

/* =============================
   ORIMII-INSPIRED: PARALLAX SECTIONS
   ============================= */
.parallax-section {
    position: relative;
    overflow: hidden;
}
.parallax-section .parallax-bg {
    position: absolute;
    inset: -20% 0;
    z-index: 0;
    will-change: transform;
}
.parallax-section .parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.parallax-section .parallax-content {
    position: relative;
    z-index: 1;
}

/* =============================
   ORIMII-INSPIRED: IMAGE REVEAL ON SCROLL
   ============================= */
.img-reveal {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.img-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-color);
    transform-origin: right;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}
.img-reveal.visible::after {
    transform: scaleX(0);
}
.img-reveal img {
    transform: scale(1.2);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-reveal.visible img {
    transform: scale(1);
}

/* =============================
   ORIMII-INSPIRED: HORIZONTAL SCROLL GALLERY
   ============================= */
.scroll-gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0;
}
.scroll-gallery::-webkit-scrollbar { display: none; }
.scroll-gallery .gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}
.scroll-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.scroll-gallery .gallery-item:hover img {
    transform: scale(1.08);
}
.scroll-gallery .gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    color: white;
}

/* =============================
   ORIMII-INSPIRED: COUNTER / STATS ANIMATION
   ============================= */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.stats-strip .stat-box {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}
.stats-strip .stat-box:last-child { border-right: none; }
.stats-strip .stat-box:hover {
    background: rgba(107, 143, 113, 0.04);
}
.stats-strip .stat-box .stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 6px;
}
.stats-strip .stat-box .stat-lbl {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* =============================
   ORIMII-INSPIRED: BEFORE/AFTER BADGE
   ============================= */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}
.trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}
.trust-badges .trust-badge i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 143, 113, 0.08);
    color: var(--primary-green);
    font-size: 1rem;
}

/* =============================
   ORIMII-INSPIRED: VIDEO SECTION
   ============================= */
.video-showcase {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}
.video-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.video-showcase:hover img {
    transform: scale(1.05);
}
.video-showcase .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.8rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: var(--transition-bounce);
    z-index: 2;
}
.video-showcase:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}
.video-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    transition: background 0.4s ease;
}
.video-showcase:hover::after {
    background: rgba(0,0,0,0.25);
}

/* =============================
   ENHANCED REVEAL DELAYS
   ============================= */
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }

/* Horizontal reveal */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* =============================
   RESPONSIVE — ORIMII ADDITIONS
   ============================= */
@media (max-width: 991px) {
    .hero-fullwidth { height: 70vh; min-height: 450px; }
    .hero-fullwidth .hero-content h1 { font-size: 2.2rem; }
    .stats-strip { flex-wrap: wrap; }
    .stats-strip .stat-box { flex: 0 0 50%; border-bottom: 1px solid var(--border-light); }
    .stats-strip .stat-box .stat-num { font-size: 2rem; }
}
@media (max-width: 767px) {
    .hero-fullwidth { height: 60vh; min-height: 380px; }
    .hero-fullwidth .hero-content h1 { font-size: 1.7rem; }
    .marquee-strip { font-size: 0.72rem; letter-spacing: 1px; padding: 8px 0; }
    .scroll-gallery .gallery-item { flex: 0 0 240px; }
    .stats-strip .stat-box .stat-num { font-size: 1.6rem; }
}

