/* ============================================ */
/* ANSTECHNOLOGY – PREMIUM UNIQUE DESIGN SYSTEM  */
/* ไม่เหมือน AI ทั่วไป – ดีไซน์เฉพาะตัว           */
/* ============================================ */

/* ============================================ */
/* GOOGLE FONTS */
/* ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@100..900&display=swap');

/* ============================================ */
/* DESIGN TOKENS – Unique Teal + Amber palette  */
/* ============================================ */
:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-darker: #115e59;
    --primary-light: #5eead4;
    --primary-subtle: rgba(13, 148, 136, 0.08);
    --accent: #d97706;
    --accent-dark: #b45309;
    --accent-light: #fbbf24;
    --accent-subtle: rgba(217, 119, 6, 0.08);
    --secondary: #64748b;
    --success: #10b981;
    --info: #06b6d4;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --darker: #0f172a;
    --light: #f1f5f9;
    --surface: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #115e59 100%);
    --gradient-2: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
    --gradient-3: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --gradient-4: linear-gradient(135deg, #0d9488 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0d9488 100%);
    --gradient-hero-alt: linear-gradient(135deg, #0f172a 0%, #115e59 60%, #0d9488 100%);
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-teal: 0 8px 25px rgba(13, 148, 136, 0.25);
    --shadow-amber: 0 8px 25px rgba(217, 119, 6, 0.25);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-lao: 'Noto Sans Lao', 'Phetsarath OT', sans-serif;
}

/* ============================================ */
/* RESET & BASE */
/* ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-lao);
    color: #334155;
    overflow-x: hidden;
    padding-top: 76px;
    background: var(--surface);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* ============================================ */
/* TYPOGRAPHY */
/* ============================================ */
/* CUSTOM SCROLLBAR */
/* ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ============================================ */
/* TYPOGRAPHY */
/* ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

.display-1, .display-2, .display-3, .display-4 {
    letter-spacing: -0.02em;
}

.section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 10px;
    border-radius: 2px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.15;
}

.section-desc {
    font-size: 18px;
    color: var(--secondary);
    max-width: 650px;
    margin: 0 auto;
}

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }

/* ============================================ */
/* PRELOADER */
/* ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 60px;
    color: var(--primary-light);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 5px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 15px auto 0;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
    border-radius: 10px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================ */
/* SCROLL PROGRESS BAR */
/* ============================================ */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--accent));
    z-index: 99999;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 12px rgba(13, 148, 136, 0.4);
}

/* ============================================ */
/* NAVBAR – Distinctive glass design */
/* ============================================ */
.navbar {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(13, 42, 46, 0.95) 55%, rgba(13, 148, 136, 0.18) 100%);
    padding: 18px 0;
    transition: var(--transition);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(94, 234, 212, 0.18);
    box-shadow: 0 4px 24px -8px rgba(13, 148, 136, 0.25);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 23, 42, 0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 20px;
    letter-spacing: 1.5px;
    color: #fff !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    color: var(--primary-light);
    font-size: 28px;
}

/* Site logo image in navbar - beautiful display */
.navbar-brand .site-logo-img {
    max-height: 62px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(13, 148, 136, 0.3));
}

.navbar-brand:hover .site-logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 16px rgba(13, 148, 136, 0.6));
}

.navbar-brand span {
    background: linear-gradient(90deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    margin: 0 4px;
    padding: 10px 16px !important;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 14px;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    background: rgba(94, 234, 212, 0.08);
}

/* Utility group */
.nav-sep {
    border-left: 1px solid rgba(255,255,255,0.12);
    margin-left: 10px !important;
    padding-left: 14px !important;
}

/* Keep all navbar items perfectly aligned & evenly spaced */
.navbar-nav {
    align-items: center;
}
.navbar-nav > .nav-item {
    display: flex;
    align-items: center;
}
/* Even horizontal rhythm between every item */
.navbar-nav > .nav-item > .nav-link,
.navbar-nav > .nav-item > .nav-cta {
    margin: 0 3px;
}

.nav-cur-symbol {
    margin-left: 7px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* ICON UTILITY CLUSTER – Beautiful cohesive group */
/* ============================================ */

/* Each icon item in the utility cluster */
.nav-icon {
    display: flex;
    align-items: center;
    position: relative;
}

/* First icon (Cart) – starts the group with a subtle border separation */
.nav-icon-start {
    border-left: 1px solid rgba(255,255,255,0.1);
    margin-left: 12px !important;
    padding-left: 10px !important;
}

/* Even spacing BETWEEN icon items */
.nav-icon + .nav-icon {
    margin-left: 2px !important;
}

/* Consistent gap for pill buttons inside icon items */
.nav-icon #cartToggle,
.nav-icon #searchToggle,
.nav-icon #currencyDropdown,
.nav-icon #langDropdown {
    margin: 0 2px;
}

/* Make currency label compact on medium screens so all items fit */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-cur-symbol {
        font-size: 10px;
        margin-left: 4px;
    }
    #currencyDropdown i {
        margin-right: 0;
    }
}

/* Subtle ambient glow behind the icon cluster – modern touch */
.nav-icon-start::before {
    content: '';
    position: absolute;
    left: 6px;
    right: -4px;
    top: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, rgba(94, 234, 212, 0.03) 0%, rgba(13, 148, 136, 0.04) 50%, transparent 100%);
    border-radius: 40px;
    pointer-events: none;
    z-index: -1;
}

/* ============================================ */
/* NAVBAR – Premium glass refinements */
/* ============================================ */

/* Glow effect on the navbar bottom border – animated */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.3), rgba(217, 119, 6, 0.2), transparent);
    animation: navbarGlow 4s ease-in-out infinite alternate;
}

@keyframes navbarGlow {
    0% { opacity: 0.4; transform: scaleX(0.95); }
    100% { opacity: 1; transform: scaleX(1); }
}

/* Active link gets a beautiful gradient indicator */
.nav-link.active {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%) !important;
    border: 1px solid rgba(94, 234, 212, 0.1);
    color: #fff !important;
    position: relative;
}

/* Login CTA on hover – stronger pull */
.nav-cta:hover {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(217, 119, 6, 0.1)) !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.2);
}

/* ============================================ */
/* NAVBAR – keep EVERY item visible (wrap, never hide via scroll) */
/* ============================================ */
@media (min-width: 992px) {
    #navbarNav {
        flex-wrap: wrap;
    }
    #navbarNav .navbar-nav {
        flex-wrap: wrap;
        flex-shrink: 1;
        justify-content: flex-end;
        row-gap: 2px;
    }
    #navbarNav .navbar-nav > .nav-item {
        flex-shrink: 0;
    }
    /* Utility cluster stays readable & always visible */
    .nav-search .search-dropdown {
        min-width: 260px;
    }
}

/* Navbar expanded – more spacious on all large screens */
@media (min-width: 992px) and (max-width: 1150px) {
    .nav-link {
        font-size: 12px;
        padding: 7px 12px !important;
        margin: 0 3px;
    }
    .navbar-brand {
        font-size: 16px;
    }
    .navbar-brand .site-logo-img {
        max-height: 44px;
    }
    /* tighten icon-only utility buttons */
    #cartToggle, #searchToggle,
    #currencyDropdown,
    #langDropdown {
        padding: 6px 10px !important;
        margin: 0 3px;
        min-width: 36px;
    }
}

@media (min-width: 1151px) and (max-width: 1399px) {
    .nav-link {
        font-size: 13px;
        padding: 8px 14px !important;
        margin: 0 4px;
    }
}

/* On very wide screens, add extra horizontal breathing room */
@media (min-width: 1400px) {
    .nav-link {
        margin: 0 6px;
        padding: 10px 18px !important;
        font-size: 15px;
    }
    #cartToggle, #searchToggle,
    #currencyDropdown,
    #langDropdown {
        min-width: 46px;
        padding: 8px 14px !important;
        margin: 0 4px;
    }
}

/* Unified utility icon buttons (cart, search, currency, language) */
#cartToggle,
#searchToggle,
#currencyDropdown,
#langDropdown {
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    margin: 0 3px;
    padding: 6px 12px !important;
    transition: var(--transition);
    color: rgba(255,255,255,0.78) !important;
    font-size: 13px;
    line-height: 1;
}

#cartToggle:hover,
#searchToggle:hover,
#currencyDropdown:hover,
#langDropdown:hover {
    background: rgba(94, 234, 212, 0.12);
    border-color: rgba(94, 234, 212, 0.35);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Active state for utility buttons */
#cartToggle.active,
#currencyDropdown.active {
    background: rgba(94, 234, 212, 0.12);
    border-color: rgba(94, 234, 212, 0.35);
    color: #fff !important;
}

/* Account pill */
.nav-cta {
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 30px;
    padding: 6px 16px !important;
    transition: var(--transition);
    color: var(--primary-light) !important;
}

.nav-cta:hover {
    background: rgba(94, 234, 212, 0.12) !important;
    border-color: var(--primary-light) !important;
    color: #fff !important;
}

/* Wishlist badge */
.nav-link .badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    vertical-align: top;
    margin-left: 2px;
}

/* ============================================ */
/* HERO SECTION – Premium animated gradient */
/* ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13, 148, 136, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(217, 119, 6, 0.08) 0%, transparent 50%);
    animation: heroAmbient 8s ease-in-out infinite alternate;
}

@keyframes heroAmbient {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Animated mesh grid overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(94, 234, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 234, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    color: var(--primary-light);
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(94, 234, 212, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 25px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 38px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

.hero-btn-primary {
    background: var(--gradient-1);
    color: #fff !important;
    border: none;
}

.hero-btn-outline {
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff !important;
    border-radius: var(--radius-full);
    padding: 16px 38px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.hero-shape {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary-dark), var(--primary), var(--accent), var(--primary-dark));
    animation: heroRotate 10s linear infinite;
    opacity: 0.6;
    filter: blur(20px);
}

@keyframes heroRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-icon {
    position: absolute;
    font-size: 100px;
    color: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-icon:nth-child(2) {
    font-size: 60px;
    top: 20%;
    right: 10%;
    animation-delay: -2s;
    animation-duration: 8s;
}

.hero-icon:nth-child(3) {
    font-size: 40px;
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
    animation-duration: 7s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================ */
/* STATS SECTION – Clean modern cards */
/* ============================================ */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: -1px;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.stat-item {
    text-align: center;
    padding: 35px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 1;
    width: 60px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.1);
}

.stat-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.1;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================ */
/* ABOUT PREVIEW */
/* ============================================ */
.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-image-box {
    width: 450px;
    height: 450px;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-box-lg {
    width: 500px;
    height: 500px;
}

.about-image-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
    animation: rotate 20s linear infinite;
}

.about-image-box::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: calc(var(--radius-lg) - 6px);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-icon-big {
    font-size: 120px;
    color: rgba(255,255,255,0.2);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-3);
    color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-amber);
    z-index: 2;
}

.exp-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.exp-text {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}

.about-text {
    font-size: 17px;
    color: var(--secondary);
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
    background: var(--primary-subtle);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
}

.about-feature i {
    color: var(--primary);
    font-size: 16px;
}

/* ============================================ */
/* SERVICES – Premium cards with icon tray */
/* ============================================ */
.services-section {
    background: var(--light);
}

.service-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-detailed {
    text-align: left;
    padding: 45px 32px;
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--primary-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card-detailed .service-icon {
    margin: 0 0 22px;
}

.service-card:hover .service-icon {
    background: var(--gradient-1);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-teal);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--secondary);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary);
    margin-right: 10px;
    width: 18px;
}

.services-description {
    font-size: 17px;
    color: var(--secondary);
    line-height: 1.8;
}

.services-description ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.services-description ul li {
    background: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.services-description ul li:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-xs);
}

/* ============================================ */
/* PRODUCTS – Distinctive card design */
/* ============================================ */
.products-section {
    background: var(--surface);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-lg .product-info {
    padding: 25px;
}

.product-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-3);
    color: #fff;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.3);
}

.product-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Wishlist Button */
.product-wishlist,
.product-detail-wishlist {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    backdrop-filter: blur(4px);
}

.product-wishlist:hover,
.product-detail-wishlist:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

.product-wishlist.active,
.product-detail-wishlist.active {
    background: #ef4444;
    color: #fff;
}

.product-detail-wishlist {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-price .original-price {
    font-size: 16px;
    color: var(--secondary);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

.product-desc {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-actions {
    margin-top: auto;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.product-rating .stars {
    color: var(--accent);
    font-size: 14px;
}

.product-rating .stars i {
    margin-right: 1px;
}

.product-rating .count {
    font-size: 13px;
    color: var(--secondary);
}

/* Stock badge */
.stock-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: var(--radius-full);
}

.stock-badge.in-stock {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.stock-badge.low-stock {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.stock-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Category filter pills */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.category-filter .btn {
    border-radius: var(--radius-full) !important;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
}

.category-filter .btn-outline-primary {
    border-color: rgba(13, 148, 136, 0.2);
    color: var(--secondary);
}

.category-filter .btn-outline-primary:hover,
.category-filter .btn-outline-primary.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
}

/* Search form */
.search-form .input-group {
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.search-form .form-control {
    border: 2px solid #e2e8f0;
    border-right: none;
    padding: 14px 22px;
    font-size: 16px;
    font-family: var(--font-lao);
}

.search-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.search-form .btn {
    border-radius: 0;
    padding: 14px 25px;
    font-weight: 600;
}

.search-form .btn-primary {
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    background: var(--gradient-1);
    border: none;
}

/* Sort dropdown */
.sort-form .form-select {
    border-radius: var(--radius-full);
    border: 2px solid #e2e8f0;
    padding: 10px 20px;
    font-family: var(--font-lao);
    font-size: 14px;
    cursor: pointer;
}

.sort-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* ============================================ */
/* PAGE HERO – Inner page banner */
/* ============================================ */
.page-hero {
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero-alt);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.15), transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(217, 119, 6, 0.08), transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(94, 234, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 234, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero .breadcrumb-item a:hover {
    color: var(--primary-light);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.4);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
}

/* ============================================ */
/* ============================================ */
/* MISSION & VALUES – Redesigned */
/* ============================================ */
.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.mission-card p {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.8;
}

/* Team */
.team-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-img i {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* Values */
.values-section {
    background: var(--light);
}

.value-card {
    background: #fff;
    padding: 30px 15px;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.value-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
    background: var(--gradient-1);
    color: #fff;
}

.value-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.value-card:hover i {
    color: #fff;
}

.value-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

/* ============================================ */
/* CALL TO ACTION */
/* ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--light);
}

.cta-wrapper {
    background: var(--gradient-1);
    padding: 80px 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1), transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(217, 119, 6, 0.1), transparent 50%);
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    padding: 16px 38px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.cta-btn-primary {
    background: #fff;
    color: var(--primary-dark) !important;
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: var(--primary-light);
    color: var(--darker) !important;
}

.cta-btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff !important;
    border-radius: var(--radius-full);
    padding: 16px 38px;
    font-weight: 600;
    font-size: 16px;
    background: rgba(255,255,255,0.05);
}

.cta-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-3px);
}

/* ============================================ */
/* CONTACT PAGE – Refined */
/* ============================================ */
.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background: var(--gradient-1);
    color: #fff;
    transform: scale(1.05);
}

.contact-info-item h6 {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-info-item p,
.contact-info-item a,
.contact-info-item span {
    font-size: 15px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form .form-control {
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid #e2e8f0;
    font-family: var(--font-lao);
    transition: var(--transition);
    font-size: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-social .social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--primary-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-teal);
}

/* ============================================ */
/* FOOTER – Rich dark design */
/* ============================================ */
.footer {
    background: var(--darker);
    color: rgba(255,255,255,0.6);
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--primary-light);
    font-size: 28px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.55);
}

.footer-widget h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-links i {
    font-size: 10px;
    color: var(--primary);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    color: rgba(255,255,255,0.55);
}

.contact-info i {
    color: var(--primary-light);
    margin-top: 4px;
    width: 18px;
    text-align: center;
}

.contact-info a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-light);
}

.footer .social-links {
    display: flex;
    gap: 10px;
}

.footer .social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer .social-link:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 22px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================ */
/* FLOATING CONTACT BUTTONS – Refined */
/* ============================================ */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: var(--shadow-xl);
}

.float-line {
    background: #06C755;
}

.float-phone {
    background: var(--gradient-1);
}

.float-email {
    background: var(--gradient-3);
}

.float-top {
    background: var(--darker);
    border: 1px solid rgba(255,255,255,0.1);
}

.float-top:hover {
    background: var(--dark);
    transform: scale(1.1) translateY(-3px);
}

.float-btn::after {
    content: attr(title);
    position: absolute;
    right: 68px;
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

.float-btn:hover::after {
    opacity: 1;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ============================================ */
/* BUTTONS – Premium */
/* ============================================ */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 10px 24px;
    transition: var(--transition);
    font-family: var(--font-lao);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
    color: #fff;
}

.btn-secondary {
    background: var(--secondary);
    border: none;
}

.btn-success {
    background: var(--success);
    border: none;
}

.btn-danger {
    background: var(--danger);
    border: none;
}

.btn-warning {
    background: var(--warning);
    border: none;
    color: #fff;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-teal);
}

.btn-accent {
    background: var(--gradient-3);
    border: none;
    color: #fff;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-amber);
    color: #fff;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

.btn-rounded {
    border-radius: var(--radius-full);
}

/* ============================================ */
/* ALERTS */
/* ============================================ */
.alert {
    border-radius: var(--radius-md);
    border: none;
    padding: 15px 20px;
    font-size: 14px;
}

.alert-primary {
    background: var(--primary-subtle);
    color: var(--primary-darker);
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    color: #065f46;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    color: #92400e;
}

.alert-info {
    background: rgba(6, 182, 212, 0.08);
    color: #155e75;
}

/* ============================================ */
/* TESTIMONIALS – Premium cards */
/* ============================================ */
.testimonials-section {
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: var(--primary-subtle);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.1);
}

.testimonial-stars {
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #e2e8f0;
    font-size: 18px;
}

.testimonial-stars i.active {
    color: var(--accent);
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--secondary);
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary-subtle);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.testimonial-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--primary);
}

/* ============================================ */
/* NEWS CARDS – Refined */
/* ============================================ */
.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.12);
}

.news-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-img img {
    transform: scale(1.08);
}

.news-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--secondary);
}

.news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-1);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-xs);
}

.news-info {
    padding: 22px;
}

.news-date {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--darker);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-info h5 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.news-info h5 a:hover {
    color: var(--primary);
}

.news-info p {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* News Detail */
.news-detail {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.news-detail-img img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.news-detail-content {
    font-size: 16px;
    line-height: 2;
    color: var(--dark);
}

.news-detail-content p {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .news-detail {
        padding: 20px;
    }
    .news-img {
        height: 160px;
    }
}

/* ============================================ */
/* FAQ ACCORDION – Premium */
/* ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.08);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-teal);
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--secondary);
}

/* Team Social */
.team-social a {
    font-size: 18px;
    transition: var(--transition);
    display: inline-block;
}

.team-social a:hover {
    transform: translateY(-2px);
}

/* ============================================ */
/* PAGINATION – Refined */
/* ============================================ */
.pagination {
    gap: 6px;
}

.pagination .page-link {
    border: none;
    padding: 10px 18px;
    font-size: 15px;
    border-radius: var(--radius-sm) !important;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid transparent;
}

.pagination .page-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.pagination .page-item.disabled .page-link {
    background: var(--light);
    color: #94a3b8;
    border-color: transparent;
}

/* ============================================ */
/* HERO SLIDER (Swiper) – Premium Teal */
/* ============================================ */
.hero-slider-section {
    padding: 0 !important;
    min-height: 100vh !important;
    overflow: hidden;
    background: var(--darker);
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--darker);
    z-index: 0;
    transition: transform 8s ease-out, opacity 1s ease;
}

.hero-swiper .swiper-slide-active .hero-slide-bg {
    animation: heroBgZoom 10s ease-out both;
}

@keyframes heroBgZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(13,148,136,0.75) 50%, rgba(15,23,42,0.92) 100%);
    z-index: 1;
}

.hero-swiper .swiper-slide .container {
    position: relative;
    z-index: 2;
}

.hero-swiper .hero-content {
    padding: 20px;
}

.hero-swiper .hero-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
    background: rgba(217, 119, 6, 0.08);
}

.hero-swiper .hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.hero-swiper .hero-desc {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-swiper .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-swiper .hero-btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--gradient-1);
    color: #fff;
    border: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(13, 148, 136, 0.3);
}

.hero-swiper .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.45);
    color: #fff;
}

.hero-swiper .hero-btn-outline {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.hero-swiper .hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-light);
    color: var(--accent-light);
    transform: translateY(-3px);
}

/* Swiper pagination */
.hero-swiper .swiper-pagination {
    bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.6);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 40px;
    border-radius: 10px;
    border-color: #fff;
}

/* Hero slider navigation arrows */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: all 0.3s ease;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: 700;
}

/* Hero slide counter */
.hero-slide-counter {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--font-lao);
}
.hero-slide-current {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}
.hero-slide-separator {
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    margin: 0 4px;
}
.hero-slide-total {
    font-size: 18px;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .hero-slide-counter {
        bottom: 80px;
        right: 20px;
    }
    .hero-slide-current { font-size: 22px; }
    .hero-slide-separator,
    .hero-slide-total { font-size: 14px; }
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }
}

/* Slide content animations on active */
@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

.hero-swiper .swiper-slide-active .hero-subtitle {
    animation: heroFadeInDown 0.6s ease-out both;
}
.hero-swiper .swiper-slide-active .hero-title {
    animation: heroFadeInUp 0.7s ease-out 0.15s both;
}
.hero-swiper .swiper-slide-active .hero-desc {
    animation: heroFadeInUp 0.7s ease-out 0.3s both;
}
.hero-swiper .swiper-slide-active .hero-buttons {
    animation: heroFadeInUp 0.7s ease-out 0.45s both;
}

/* Responsive for hero slider */
@media (max-width: 991px) {
    .hero-swiper { height: 85vh; min-height: 500px; }
    .hero-swiper .hero-title { font-size: 40px; }
    .hero-swiper .hero-desc { font-size: 17px; }
}

@media (max-width: 767px) {
    .hero-swiper { height: 80vh; min-height: 450px; }
    .hero-swiper .hero-title { font-size: 30px; }
    .hero-swiper .hero-desc { font-size: 16px; }
    .hero-swiper .hero-subtitle { font-size: 14px; padding: 6px 15px; }
    .hero-swiper .hero-btn,
    .hero-swiper .hero-btn-outline { padding: 12px 25px; font-size: 14px; }
}

/* ============================================ */
/* CLIENT LOGOS SECTION – Refined */
/* ============================================ */
.client-logos-section {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.client-logo-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.client-logo-item img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-placeholder span {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
}

/* ============================================ */
/* NEWSLETTER FORM – Premium */
/* ============================================ */
.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form .form-control {
    height: 54px;
    border: none;
    padding: 0 24px;
    font-size: 15px;
    background: var(--white);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn {
    height: 54px;
    padding: 0 32px;
    border-radius: 0 !important;
    font-weight: 600;
    background: var(--gradient-1);
    border: none;
    color: #fff;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--gradient-2);
    box-shadow: var(--shadow-teal);
}

.newsletter-msg {
    font-size: 14px;
    margin-top: 10px;
    min-height: 24px;
}

.newsletter-msg.success {
    color: var(--success);
}

.newsletter-msg.error {
    color: var(--danger);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1199px) {
    .hero-title { font-size: 48px; }
    .about-image-box { width: 380px; height: 380px; }
    .about-image-box-lg { width: 420px; height: 420px; }
}

@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 34px; }
    .hero-title { font-size: 40px; }
    .hero-image { height: 300px; }
    .hero-shape { width: 250px; height: 250px; }
    .about-image-box { width: 320px; height: 320px; }
    .about-image-box-lg { width: 100%; height: 350px; }
    .page-hero-title { font-size: 36px; }
    .cta-title { font-size: 30px; }
}

@media (max-width: 767px) {
    .navbar { padding: 10px 0; }
    body { padding-top: 66px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 28px; }
    .section-heading { margin-bottom: 40px; }
    .hero-section { min-height: 80vh; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 17px; }
    .hero-buttons { flex-direction: column; }
    .hero-btn, .hero-btn-outline { width: 100%; text-align: center; }
    .hero-shape { width: 200px; height: 200px; }
    .hero-icon { font-size: 80px; }
    .about-image-box { width: 280px; height: 280px; }
    .about-image-box-lg { height: 280px; }
    .experience-badge { width: 90px; height: 90px; }
    .exp-number { font-size: 28px; }
    .stat-item { padding: 20px 15px; }
    .stat-number { font-size: 32px; }
    .page-hero-title { font-size: 30px; }
    .page-hero { padding: 100px 0 60px; }
    .cta-wrapper { padding: 50px 20px; }
    .cta-title { font-size: 26px; }
    .contact-form-card { padding: 25px; }
    .contact-info-card { padding: 25px; }
    .footer { padding-top: 50px; }
    .floating-contact { bottom: 20px; right: 20px; }
    .float-btn { width: 45px; height: 45px; font-size: 20px; }
    .float-btn::after { display: none; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 15px; }
    .service-card { padding: 25px 20px; }
    .product-info { padding: 15px; }
    .product-card-lg .product-info { padding: 18px; }
}

/* ============================================ */
/* SCROLL PROGRESS BAR – Teal gradient */
/* ============================================ */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
    z-index: 99999;
    width: 0%;
    transition: width 0.15s ease;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.4);
}

/* ============================================ */
/* GRADIENT TEXT ANIMATION – Teal/Amber */
/* ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light), var(--accent-light));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================ */
/* GLASS MORPHISM – Refined */
/* ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

/* ============================================ */
/* NEON GLOW EFFECTS – Teal/Amber */
/* ============================================ */
.neon-glow {
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.25),
                0 0 40px rgba(13, 148, 136, 0.08);
    transition: var(--transition);
}

.neon-glow:hover {
    box-shadow: 0 0 30px rgba(13, 148, 136, 0.4),
                0 0 60px rgba(13, 148, 136, 0.15),
                0 0 80px rgba(13, 148, 136, 0.05);
}

.neon-border {
    position: relative;
    overflow: hidden;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(var(--primary), var(--accent), var(--primary-light), var(--primary));
    border-radius: inherit;
    z-index: -1;
    animation: spinConic 4s linear infinite;
}

@keyframes spinConic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================ */
/* FLOATING SHAPES ANIMATION – Teal/Amber */
/* ============================================ */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: floatShape 20s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: -5%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.floating-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: var(--primary-dark);
    top: 50%;
    left: 80%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.floating-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    background: var(--accent-light);
    top: 20%;
    left: 60%;
    animation-delay: -3s;
    animation-duration: 18s;
}

.floating-shape:nth-child(5) {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    bottom: 30%;
    left: 15%;
    animation-delay: -8s;
    animation-duration: 22s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ============================================ */
/* TYPING ANIMATION – Teal cursor */
/* ============================================ */
.typing-text {
    display: inline;
    border-right: 3px solid var(--primary);
    animation: blink 0.75s step-end infinite;
    padding-right: 3px;
}

@keyframes blink {
    0%, 100% { border-color: var(--primary); }
    50% { border-color: transparent; }
}

/* ============================================ */
/* PARTICLES BACKGROUND – Refined */
/* ============================================ */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: -2s; animation-duration: 18s; width: 5px; height: 5px; }
.particle:nth-child(3) { left: 35%; top: 10%; animation-delay: -4s; animation-duration: 14s; width: 2px; height: 2px; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: -1s; animation-duration: 20s; width: 4px; height: 4px; }
.particle:nth-child(5) { left: 65%; top: 30%; animation-delay: -6s; animation-duration: 16s; width: 3px; height: 3px; }
.particle:nth-child(6) { left: 75%; top: 80%; animation-delay: -3s; animation-duration: 13s; width: 5px; height: 5px; }
.particle:nth-child(7) { left: 85%; top: 15%; animation-delay: -7s; animation-duration: 17s; width: 2px; height: 2px; }
.particle:nth-child(8) { left: 45%; top: 40%; animation-delay: -5s; animation-duration: 15s; width: 4px; height: 4px; }
.particle:nth-child(9) { left: 15%; top: 85%; animation-delay: -9s; animation-duration: 19s; width: 3px; height: 3px; }
.particle:nth-child(10) { left: 90%; top: 50%; animation-delay: -2s; animation-duration: 14s; width: 5px; height: 5px; }
.particle:nth-child(11) { left: 5%; top: 45%; animation-delay: -8s; animation-duration: 16s; width: 3px; height: 3px; }
.particle:nth-child(12) { left: 60%; top: 90%; animation-delay: -4s; animation-duration: 18s; width: 4px; height: 4px; }
.particle:nth-child(13) { left: 30%; top: 5%; animation-delay: -1s; animation-duration: 12s; width: 2px; height: 2px; }
.particle:nth-child(14) { left: 80%; top: 35%; animation-delay: -6s; animation-duration: 20s; width: 5px; height: 5px; }
.particle:nth-child(15) { left: 40%; top: 55%; animation-delay: -3s; animation-duration: 15s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
    25% { transform: translateY(-40px) translateX(20px) scale(1.2); opacity: 0.8; }
    50% { transform: translateY(-80px) translateX(-10px) scale(0.8); opacity: 0.3; }
    75% { transform: translateY(-30px) translateX(30px) scale(1.1); opacity: 0.7; }
    100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
}

/* ============================================ */
/* RIPPLE BUTTON EFFECT – Refined */
/* ============================================ */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ============================================ */
/* SHIMMER BORDER ANIMATION – Refined */
/* ============================================ */
.shimmer-border {
    position: relative;
    overflow: hidden;
}

.shimmer-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.shimmer-border:hover::after {
    left: 100%;
}

/* ============================================ */
/* IMAGE REVEAL ON SCROLL – Refined */
/* ============================================ */
.reveal-img {
    position: relative;
    overflow: hidden;
}

.reveal-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 1;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.reveal-img.revealed::before {
    transform: translateX(100%);
}

/* ============================================ */
/* 3D TILT CARD WRAPPER – Refined */
/* ============================================ */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card-inner {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.tilt-card:hover .tilt-card-inner {
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

/* ============================================ */
/* COUNTER ANIMATION – Refined */
/* ============================================ */
.counter {
    display: inline-block;
}

.counter.animated {
    animation: countUp 2s ease-out;
}

/* ============================================ */
/* BADGE PULSE – Refined */
/* ============================================ */
.badge-pulse {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ============================================ */
/* SMOOTH SCROLLBAR – Teal gradient */
/* ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--darker));
}

/* ============================================ */
/* PRELOADER ENHANCEMENTS – Refined */
/* ============================================ */
.preloader-content .preloader-logo {
    font-size: 42px;
    color: var(--primary-light);
    margin-bottom: 15px;
    animation: preloaderPulse 1s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    margin: 20px auto 0;
    overflow: hidden;
}

.preloader-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: 10px;
    animation: preloaderLoad 1.5s ease-in-out infinite;
}

@keyframes preloaderLoad {
    0% { width: 0%; margin-left: 0; }
    50% { width: 50%; margin-left: 25%; }
    100% { width: 0%; margin-left: 100%; }
}

/* ============================================ */
/* MOBILE BOTTOM NAV – Teal accent */
/* ============================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9998;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 10px;
    padding: 4px 8px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-light);
}

.mobile-nav-item .cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    font-size: 9px;
    padding: 2px 5px;
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 65px;
    }
}


/* ANIMATED BACKGROUND – Teal/Amber */
/* ============================================ */
.animated-bg {
    background: linear-gradient(-45deg, var(--darker), var(--dark), var(--primary), var(--accent));
    background-size: 400% 400%;
    animation: bgMove 15s ease infinite;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================ */
/* HERO SWIPER SLIDE ANIMATIONS */
/* ============================================ */
.hero-swiper .swiper-slide-active .hero-subtitle {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-swiper .swiper-slide-active .hero-title {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-swiper .swiper-slide-active .hero-desc {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-swiper .swiper-slide-active .hero-buttons {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================ */
/* CARD HOVER ENHANCEMENTS – Teal glow */
/* ============================================ */
.service-card, .product-card, .news-card, .testimonial-card, .team-card {
    position: relative;
    z-index: 1;
}

.service-card::before, .product-card::before, .news-card::before, 
.testimonial-card::before, .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.04), rgba(217, 119, 6, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: -1;
}

.service-card:hover::before, .product-card:hover::before, .news-card:hover::before,
.testimonial-card:hover::before, .team-card:hover::before {
    opacity: 1;
}

/* ============================================ */
/* SECTION DIVIDERS – Refined */
/* ============================================ */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    margin: 15px auto;
    transition: width 0.5s ease;
}

.section-divider-left {
    margin: 15px 0;
}

.section:hover .section-divider {
    width: 120px;
}

/* ============================================ */
/* NAVBAR HOVER GLOW – Teal */
/* ============================================ */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    transition: width 0.3s ease;
}

.nav-link {
    position: relative;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* ============================================ */
/* COUNTER STYLING – Refined */
/* ============================================ */
.counter-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.counter-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================ */
/* FLOATING CONTACT PULSE – Refined */
/* ============================================ */
.float-line {
    animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
    0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}

/* ============================================ */
/* NAVBAR SCROLLED EFFECT – Refined */
/* ============================================ */
.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

/* ============================================ */
/* PRODUCT ZOOM EFFECT – Refined */
/* ============================================ */
.product-img {
    position: relative;
    overflow: hidden;
}

.product-img-zoom {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img-zoom {
    transform: scale(1.12);
}

/* ============================================ */
/* BUTTON SHINE EFFECT – Refined */
/* ============================================ */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.btn-shine:hover::before {
    left: 125%;
}

/* ============================================ */
/* RESPONSIVE ENHANCEMENTS – Refined */
/* ============================================ */
@media (max-width: 767px) {
    .hero-swiper .hero-title {
        font-size: 28px;
    }
    .gradient-text {
        font-size: 28px !important;
    }
    .floating-shape {
        opacity: 0.04;
    }
    .particle {
        display: none;
    }

}
