/* ===================================
   OMTA-GAMT Custom Styles
   =================================== */

/* ---- Product Image Gallery ---- */
.product-thumb { transition: border-color 0.2s, opacity 0.2s; opacity: 0.7; }
.product-thumb:hover { opacity: 1; border-color: var(--primary-light) !important; }
.active-thumb { opacity: 1 !important; border-color: var(--primary) !important; }
.product-main-img { transition: background 0.3s; }

/* ---- Workshop Cards Swiper ---- */
.omta-workshops-swiper {
    padding-bottom: 55px !important;
    padding-left: 4px;
    padding-right: 4px;
    overflow: visible;
}

.workshop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s, box-shadow 0.35s;
    height: 100%;
}

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

.workshop-img-wrap {
    position: relative;
    overflow: hidden;
}

.workshop-img-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-img-wrap img {
    transform: scale(1.06);
}

.workshop-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(13,124,102,0.4);
}

.workshop-body {
    padding: 1.5rem;
}

.workshop-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.workshop-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.workshop-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.workshop-meta span { display: flex; align-items: center; gap: 0.3rem; }
.workshop-meta i { color: var(--primary); }

/* Workshop nav buttons */
.workshops-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-calc(50% + 27px));
    z-index: 10;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--secondary);
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.workshops-swiper-prev { left: -22px; }
.workshops-swiper-next { right: -22px; }

.workshops-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.workshops-swiper-pagination {
    bottom: 0 !important;
}

.workshops-swiper-pagination .swiper-pagination-bullet {
    background: var(--border);
    opacity: 1;
    width: 9px;
    height: 9px;
    transition: all 0.3s;
}

.workshops-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 26px;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .workshops-swiper-prev,
    .workshops-swiper-next { display: none; }
}

/* ---- Hero Swiper Slider ---- */
.omta-hero-swiper {
    width: 100%;
    height: 600px;
    position: relative;
}

.omta-hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(9, 35, 60, 0.82) 0%,
        rgba(13, 124, 102, 0.55) 60%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 0 0 80px;
    max-width: 700px;
    color: #fff;
}

.slide-badge {
    display: inline-block;
    background: rgba(232, 160, 32, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.slide-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
    max-width: 520px;
}

.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Arrows */
.hero-swiper-prev,
.hero-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    font-size: 1.1rem;
}

.hero-swiper-prev { left: 25px; }
.hero-swiper-next { right: 25px; }

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* Pagination dots */
.hero-swiper-pagination {
    position: absolute;
    bottom: 28px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Slide-in animation */
.swiper-slide-active .slide-badge,
.swiper-slide-active .slide-content h1,
.swiper-slide-active .slide-content p,
.swiper-slide-active .slide-btns {
    animation: slideUp 0.7s ease both;
}

.swiper-slide-active .slide-badge  { animation-delay: 0.1s; }
.swiper-slide-active .slide-content h1 { animation-delay: 0.25s; }
.swiper-slide-active .slide-content p  { animation-delay: 0.4s; }
.swiper-slide-active .slide-btns       { animation-delay: 0.55s; }

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

@media (max-width: 991px) {
    .omta-hero-swiper { height: 500px; }
    .slide-content { padding: 0 50px 0 40px; }
    .slide-content h1 { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .omta-hero-swiper { height: 480px; }
    .slide-content { padding: 0 20px; max-width: 100%; }
    .slide-content h1 { font-size: 1.65rem; }
    .slide-content p  { font-size: 0.95rem; }
    .hero-swiper-prev, .hero-swiper-next { width: 38px; height: 38px; font-size: 0.9rem; }
    .hero-swiper-prev { left: 10px; }
    .hero-swiper-next { right: 10px; }
}

:root {
    --primary: #0d7c66;
    --primary-dark: #095e4e;
    --primary-light: #13a88a;
    --secondary: #1a3c5e;
    --accent: #e8a020;
    --accent-light: #f5c842;
    --light-bg: #f4faf8;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --white: #ffffff;
    --border: #dee2e6;
    --gradient: linear-gradient(135deg, #0d7c66 0%, #1a3c5e 100%);
    --gradient-accent: linear-gradient(135deg, #e8a020 0%, #f5c842 100%);
    --shadow: 0 4px 20px rgba(13,124,102,0.12);
    --shadow-lg: 0 8px 40px rgba(13,124,102,0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a { text-decoration: none; color: var(--primary); transition: all 0.3s; }
a:hover { color: var(--primary-dark); }

/* ---- Navbar ---- */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand img { height: 55px; }

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--secondary) !important;
    padding: 1.1rem 0.85rem !important;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    text-transform: uppercase;
}

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

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 240px;
}

.navbar-nav .dropdown-item {
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 8px;
    color: var(--secondary);
    transition: all 0.2s;
}

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

.topbar {
    background: var(--gradient);
    color: var(--white);
    font-size: 0.82rem;
    padding: 6px 0;
}

.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: var(--white); }

/* ---- Buttons ---- */
.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    padding: 0.65rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(13,124,102,0.35);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #095e4e 0%, #122d47 100%);
    box-shadow: 0 6px 20px rgba(13,124,102,0.5);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    padding: 0.65rem 2rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(232,160,32,0.35);
    transition: all 0.3s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(232,160,32,0.5);
    color: var(--text-dark);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 0.65rem 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

/* ---- Hero Section ---- */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

/* ---- Section Styles ---- */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ---- Cards ---- */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.35s;
    overflow: hidden;
}

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

.card-img-top { height: 220px; object-fit: cover; }

.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s;
    background: var(--white);
    height: 100%;
}

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

.product-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 1.2rem;
}

.product-card h5 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.product-icon-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.35s;
    height: 100%;
    border-top: 4px solid var(--primary);
}

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

.product-icon-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--primary);
}

/* ---- Feature Boxes ---- */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

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

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--gradient);
    color: var(--white);
    padding: 3rem 0;
}

.stat-item { text-align: center; }
.stat-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.4rem;
}

/* ---- Course Page ---- */
.course-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0 60px;
}

.pricing-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-card .pricing-header {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-card .pricing-body { padding: 2rem; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.price-row:last-child { border-bottom: none; }
.price-row .amount { font-weight: 700; color: var(--primary); }

.checklist li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.checklist li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Specification Table ---- */
.spec-table td { padding: 0.7rem 1rem; vertical-align: middle; }
.spec-table td:first-child { font-weight: 600; color: var(--secondary); background: var(--light-bg); width: 40%; }
.spec-table tr:hover td { background: rgba(13,124,102,0.04); }

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--gradient);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-banner h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }

/* ---- Page Banner ---- */
.page-banner {
    background: var(--gradient);
    color: var(--white);
    padding: 70px 0 50px;
    text-align: center;
}

.page-banner h1 { font-size: 2.4rem; font-weight: 800; }
.page-banner .breadcrumb { justify-content: center; background: none; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---- Download Card ---- */
.download-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.download-card .file-icon {
    width: 55px;
    height: 55px;
    background: #fff0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #e53e3e;
    flex-shrink: 0;
}

/* ---- Contact ---- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover { color: var(--primary-light); }

.footer-logo img { height: 50px; filter: brightness(0) invert(1); }

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 1.2rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.social-links a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8) !important;
    font-size: 1rem;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* ---- Membership Card ---- */
.membership-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.membership-card .mem-header {
    background: var(--gradient);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.membership-card .mem-header .price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.membership-card .mem-body { padding: 2rem; }

.benefit-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    font-size: 0.95rem;
}

.benefit-item:last-child { border-bottom: none; }
.benefit-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ---- Accessories — Product Sections ---- */
.acc-product-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.acc-product-section.acc-alt {
    background: var(--light-bg);
}
.acc-product-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.acc-product-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}
.acc-product-body { padding-left: 0; }
.acc-img-wrap {
    background: #f4faf8;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    overflow: hidden;
}
.acc-img-wrap img { max-height: 150px; object-fit: contain; }
.acc-price-block { margin-top: 1rem; }
.price-badge-lg {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

/* ---- Accessories — Small Cards ---- */
.acc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 0;
    transition: all 0.3s;
    position: relative;
}
.acc-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.acc-card-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.acc-card h6 { color: var(--secondary); font-weight: 700; margin-bottom: 0.5rem; }
.acc-card .price-badge,
.price-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.65);
    color: var(--white);
}

/* ---- Utility ---- */
.bg-light-green { background: var(--light-bg); }
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.rounded-xl { border-radius: var(--radius-lg); }
.shadow-custom { box-shadow: var(--shadow); }

.tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0.2rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}

.divider.center { margin: 1rem auto 1.5rem; }

img.lazy { opacity: 0; transition: opacity 0.4s; }
img.lazy.loaded { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .navbar-nav .nav-link { padding: 0.6rem 1rem !important; }
}

@media (max-width: 767px) {
    .hero { padding: 70px 0 50px; }
    .hero h1 { font-size: 1.7rem; }
    .stats-bar .stat-item { margin-bottom: 1.5rem; }
    .cta-banner h2 { font-size: 1.7rem; }
}
