
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors */
    --primary: #1b8b5a;
    --primary-dark: #14714a;
    --primary-light: #e8f5ee;
    --primary-gradient: linear-gradient(135deg, #1b8b5a 0%, #2ecc71 100%);

    /* Accent Colors */
    --accent-orange: #f7941d;
    --accent-orange-light: #fff4e5;
    --accent-teal: #00a99d;
    --accent-teal-light: #e0f7f5;
    --accent-blue: #2b6cb0;
    --accent-blue-light: #e8f0fe;
    --accent-purple: #7c3aed;
    --accent-purple-light: #f3e8ff;
    --accent-rose: #e91e63;
    --accent-amber: #f59e0b;

    /* Neutrals */
    --dark: #1a1a2e;
    --dark-700: #2d2d44;
    --gray-800: #333;
    --gray-700: #4a4a4a;
    --gray-600: #666;
    --gray-500: #888;
    --gray-400: #aaa;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 80px;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 8px 24px rgba(27, 139, 90, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.multiply{
    mix-blend-mode: multiply;
  filter: contrast(1.2); /* Adjust value to sharpen edges */
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--gray-300);
    font-size: 0.8rem;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.top-bar-text {
    font-size: 0.8rem;
}

.top-bar-link {
    color: var(--gray-300);
    margin: 0 6px;
    font-size: 0.8rem;
}

.top-bar-link:hover {
    color: var(--white);
}

.top-bar-divider {
    color: var(--gray-600);
    margin: 0 4px;
}

/* ===== NAVBAR ===== */
#main-navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    z-index: 1050;
    transition: var(--transition-base);
}

#main-navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-bar .input-group {
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.search-bar .input-group:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 139, 90, 0.1);
}

.search-bar .input-group-text {
    background: transparent;
    border: none;
    color: var(--gray-500);
    padding-left: 18px;
}

.search-bar .form-control {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    padding: 10px 8px;
}

.search-bar .form-control:focus {
    box-shadow: none;
}

.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0 var(--radius-full) var(--radius-full) 0 !important;
    transition: var(--transition-base);
}

.btn-search:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Navbar Actions */
.navbar-actions {
    gap: 4px;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

.nav-action-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-action-btn i {
    font-size: 1.2rem;
}

.badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 16px !important;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link.active {
    font-weight: 600;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Mobile Search */
.mobile-search-bar {
    display: none;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.mobile-search-bar.active {
    display: block;
}

.mobile-search-bar .input-group {
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--gray-100);
}

.mobile-search-bar .input-group-text {
    background: transparent;
    border: none;
}

.mobile-search-bar .form-control {
    border: none;
    background: transparent;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #fef9e7 0%, #f0faf4 30%, #e8f8f0 60%, #fef9e7 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-green);
    transition: var(--transition-base);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 139, 90, 0.4);
    color: var(--white);
}

.btn-hero-outline {
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Hero Image */
.hero-image-col {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image {
    max-height: 520px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    animation: fadeIn 1s ease 1s both;
}

.floating-card i {
    font-size: 1.2rem;
}

.card-top {
    top: 15%;
    right: 5%;
    animation: floatCard 4s ease-in-out infinite;
}

.card-bottom {
    bottom: 20%;
    left: 5%;
    animation: floatCard 4s ease-in-out 2s infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 139, 90, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    padding: 40px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-blue-light);
    color: var(--accent-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-icon.icon-orange {
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}

.feature-icon.icon-green {
    background: var(--primary-light);
    color: var(--primary);
}

.feature-icon.icon-purple {
    background: var(--accent-purple-light);
    color: var(--accent-purple);
}

.feature-info h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--dark);
}

.feature-info p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ===== SECTION COMMON ===== */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.section-title .emoji {
    font-family: var(--font-primary);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.bg-light-custom {
    background: var(--gray-50);
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-block {
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    min-width: 58px;
}

.time-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.time-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.time-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 16px;
    position: relative;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card:hover .btn-add-cart {
    opacity: 1;
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-sale {
    background: var(--accent-rose);
    color: var(--white);
}

.badge-new {
    background: var(--primary);
    color: var(--white);
}

.badge-hot {
    background: var(--accent-orange);
    color: var(--white);
}

.badge-best {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-fast);
}

.product-wishlist:hover {
    color: var(--accent-rose);
    box-shadow: var(--shadow-md);
}

.product-wishlist.active {
    color: var(--accent-rose);
    background: #fce4ec;
}

.product-image {
    text-align: center;
    padding: 20px 10px;
    flex-shrink: 0;
}

.product-image img {
    /* height: 140px; */
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.product-rating i {
    color: var(--accent-amber);
    font-size: 0.75rem;
}

.product-rating span {
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-left: 4px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.original-price {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.82rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-detail {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px;
    margin-bottom:12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.82rem;
    transform: translateY(8px);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-detail:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== PROMOTIONAL BANNERS ===== */
.promo-section {
    padding: 0 0 var(--section-padding);
}

.promo-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Large promo */
.promo-card-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    min-height: 280px;
}

.promo-content {
    flex: 1;
    z-index: 2;
}

.promo-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.promo-card-large h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-card-large p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 280px;
}

.promo-image-side {
    flex-shrink: 0;
    z-index: 2;
}

.promo-image-side img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    transition: var(--transition-base);
}

.promo-card:hover .promo-image-side img {
    transform: scale(1.05) rotate(-2deg);
}

.btn-promo {
    background: var(--white);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.btn-promo:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateX(4px);
}

.btn-promo-light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-base);
}

.btn-promo-light:hover {
    background: var(--white);
    color: var(--dark);
}

/* Small promo */
.promo-card-small {
    padding: 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.promo-discount {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    margin-bottom: 12px;
    width: fit-content;
}

.promo-card-small h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.promo-card-small p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.promo-sm-img {
    position: absolute;
    bottom: -10px;
    right: -10px;
    height: 140px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: var(--transition-base);
}

.promo-card-small:hover .promo-sm-img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Promo Colors */
.promo-green {
    background: linear-gradient(135deg, #1b8b5a 0%, #0a6b41 100%);
}

.promo-teal {
    background: linear-gradient(135deg, #00a99d 0%, #00897b 100%);
}

.promo-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.promo-mint {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.promo-blue {
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4e8c 100%);
}

.promo-rose {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

/* ===== FILTER TABS ===== */
.section-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--primary-light);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.featured-testimonial {
    background: var(--primary);
    border-color: var(--primary);
}

.featured-testimonial::before {
    color: rgba(255, 255, 255, 0.15);
}

.featured-testimonial .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.featured-testimonial .author-name {
    color: var(--white);
}

.featured-testimonial .author-title {
    color: rgba(255, 255, 255, 0.7);
}

.featured-testimonial .testimonial-stars i {
    color: var(--accent-amber);
}

.testimonial-stars {
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: var(--accent-amber);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 0 0 var(--section-padding);
}

.cta-card {
    background: linear-gradient(135deg, #ff6b35 0%, #f7941d 50%, #ffb347 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.cta-text h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-highlight {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 24px;
}

.btn-cta {
    background: var(--white);
    color: var(--accent-orange);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-base);
}

.btn-cta:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-images {
    display: flex;
    align-items: center;
    gap: -20px;
    position: relative;
}

.cta-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    transition: var(--transition-base);
}

.cta-img-1 {
    transform: rotate(-8deg) translateX(20px);
    z-index: 1;
}

.cta-img-2 {
    transform: scale(1.1);
    z-index: 2;
}

.cta-img-3 {
    transform: rotate(8deg) translateX(-20px);
    z-index: 1;
}

.cta-card:hover .cta-img-1 {
    transform: rotate(-12deg) translateX(10px) scale(1.05);
}

.cta-card:hover .cta-img-2 {
    transform: scale(1.15);
}

.cta-card:hover .cta-img-3 {
    transform: rotate(12deg) translateX(-10px) scale(1.05);
}

/* ===== BLOG SECTION ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-img-inner {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: var(--transition-base);
}

.blog-card:hover .blog-img-inner {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.blog-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 0 0 var(--section-padding);
}

.newsletter-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2b6cb0 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.newsletter-title span {
    color: var(--accent-amber);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .input-group {
    background: var(--white);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.newsletter-form .input-group-text {
    background: transparent;
    border: none;
    color: var(--gray-500);
    padding-left: 20px;
}

.newsletter-form .form-control {
    border: none;
    padding: 16px 12px;
    font-size: 0.95rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.btn-newsletter {
    background: var(--primary);
    color: var(--white);
    padding: 0 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition-base);
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .brand-icon {
    background: var(--primary-gradient);
}

.footer-logo .brand-text {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

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

.footer-contact li {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 3px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 20px;
}

.footer-bottom {
   
    align-items: center;
    padding-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.payment-methods {
    display: flex;
    gap: 16px;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--gray-500);
    transition: var(--transition-fast);
}

.payment-methods i:hover {
    color: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-green);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TOAST NOTIFICATION ===== */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
}

.custom-toast {
    background: var(--dark);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateX(-120%);
    transition: var(--transition-base);
}

.custom-toast.show {
    transform: translateX(0);
}

.custom-toast i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-col {
        margin-top: 40px;
    }

    .hero-image {
        max-height: 380px;
    }

    .floating-card {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-images {
        margin-top: 24px;
    }

    .cta-img {
        height: 100px;
    }

    .newsletter-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        text-align: center;
        padding: 12px 28px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .promo-card-large {
        flex-direction: column;
        padding: 30px;
        min-height: auto;
    }

    .promo-image-side img {
        height: 140px;
        margin-top: 16px;
    }

    .promo-card-small {
        min-height: 200px;
        padding: 24px;
    }

    .promo-card-small h4 {
        font-size: 1.1rem;
    }

    .countdown-timer {
        gap: 4px;
    }

    .time-block {
        padding: 6px 10px;
        min-width: 48px;
    }

    .time-number {
        font-size: 1.1rem;
    }

    .newsletter-card {
        padding: 32px 20px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    .product-image img {
        height: 100px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }

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

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .cta-images {
        display: none;
    }

    .blog-image {
        height: 180px;
    }

    .promo-sm-img {
        height: 100px;
    }
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== PARTNERS SCROLL ===== */
.partners-section {
    padding: 40px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}
.partners-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.partners-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}
.partners-track:hover {
    animation-play-state: paused;
}
.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0 40px;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}
.partner-logo i {
    font-size: 2rem;
}
.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    color: var(--primary);
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== ABOUT US ===== */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--primary-light);
    padding: 20px;
}
.about-image {
    border-radius: var(--radius-md);
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}
.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--primary);
}
.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-700);
}
