/* ============================================================
   Vedic Vistas Global - Main Stylesheet
   Colors: Navy #1B2A4A | Forest Green #2D5016 | Gold #C9A84C
   ============================================================ */

:root {
    --navy: #1B2A4A;
    --navy-light: #243660;
    --navy-dark: #111D33;
    --forest: #2D5016;
    --forest-light: #3a6820;
    --gold: #C9A84C;
    --gold-light: #dfc07a;
    --gold-dark: #a8872e;
    --light-bg: #F8F6F0;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a6a;
    --shadow-sm: 0 2px 12px rgba(27, 42, 74, 0.08);
    --shadow-md: 0 8px 32px rgba(27, 42, 74, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-h: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
}

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

a:hover {
    color: var(--gold-dark);
}

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

/* ============================================================
   Utility Classes
   ============================================================ */
.text-gold {
    color: var(--gold) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.text-forest {
    color: var(--forest) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-forest {
    background-color: var(--forest) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-light-cream {
    background-color: var(--light-bg) !important;
}

.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-header .section-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 560px;
}

.section-header.center {
    text-align: center;
}

.section-header.center p {
    margin: 0 auto;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 16px 0;
}

.center .divider-gold {
    margin: 16px auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, #8a6e24 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-navy:hover {
    background: transparent;
    color: var(--navy);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}

/* ============================================================
   Container - 1260px desktop max-width
   ============================================================ */
@media (min-width: 992px) {
    .container {
        max-width: 1260px;
    }
}

/* ============================================================
   Top Bar
   ============================================================ */
.topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.topbar a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.topbar a:hover {
    color: var(--gold);
}

.topbar a i {
    margin-right: 4px;
}

.whatsapp-topbar {
    background: #25D366;
    color: white !important;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.whatsapp-topbar:hover {
    background: #20b758 !important;
    color: white !important;
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar-main {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 0;
    min-height: var(--navbar-h);
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    overflow: visible;
}

.navbar-main.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(201, 168, 76, 0.2);
}

.navbar-main .navbar-brand {
    padding: 10px 0;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-dark {
    display: none;
}

.navbar-main .nav-link {
    color: var(--navy);
    font-weight: 500;
    font-size: 14.5px;
    padding: 14px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar-main .dropdown-toggle.no-caret::after {
    display: none;
}

.navbar-main .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 0;
    border-top: 3px solid var(--gold);
}

.navbar-main .dropdown-item {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--navy);
    transition: var(--transition);
}

.navbar-main .dropdown-item:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-dark);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B2A4A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    min-height: calc(100vh - var(--navbar-h));
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--forest) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.18;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(27, 42, 74, 0.85) 0%,
            rgba(45, 80, 22, 0.85) 40%,
            rgba(45, 80, 22, 0.95) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 1) 1px, transparent 0);
    background-size: 40px 40px;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-size: clamp(30px, 4.5vw, 54px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 6px;
}

.hero h1 .highlight {
    color: var(--gold);
    font-style: italic;
    position: relative;
}

.hero-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(14px, 1.5vw, 18px);
    margin-bottom: 10px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    max-width: 520px;
    margin-bottom: 20px;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

@media (max-width: 575.98px) {
    .hero-btns {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .hero-btns .btn {
        flex: 1;
        font-size: 13px;
        padding: 10px 10px;
        white-space: nowrap;
    }
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .num {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

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

.hero-slider-inner {
    height: 330px;
}

@media (max-width: 991.98px) {
    .hero-slider-inner {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .hero-slider-inner {
        height: 200px;
    }
}

.hero-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(17, 29, 51, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(201, 168, 76, 0.35);
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-badge-body {
    display: flex;
    flex-direction: column;
}

.hero-img-badge .badge-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    display: block;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

.hero-img-badge .badge-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-top: 2px;
}

/* Hero Slider - Zoom Animation */
.hero-zoom-img {
    animation: heroImgZoom 8s ease-in-out forwards;
    transform-origin: center center;
}

.carousel-item.active .hero-zoom-img {
    animation: heroImgZoom 8s ease-in-out forwards;
}

@keyframes heroImgZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.10);
    }
}

/* Hero Slider - Prev/Next Arrow Buttons */
.hero-slider-prev,
.hero-slider-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    opacity: 1;
}

.hero-slider-prev {
    left: 14px;
}

.hero-slider-next {
    right: 14px;
}

.hero-slider-prev i,
.hero-slider-next i {
    font-size: 18px;
    color: #fff;
    line-height: 1;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounceDown 2s infinite;
}

.hero-scroll i {
    font-size: 20px;
}

@keyframes bounceDown {

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

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

/* ============================================================
   Full-Width VV Image Slider
   ============================================================ */
.vv-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: var(--navy-dark);
}

.vv-slider-track {
    position: absolute;
    inset: 0;
}

.vv-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.vv-slide.active {
    opacity: 1;
}

.vv-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: vvZoom 9s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes vvZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.vv-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(17, 29, 51, 0.82) 0%,
            rgba(17, 29, 51, 0.55) 50%,
            rgba(17, 29, 51, 0.25) 100%);
}

.vv-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 700px;
}

.vv-slide-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.45);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.vv-slide.active .vv-slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.vv-slide-content h2 {
    color: var(--white);
    font-size: clamp(26px, 3.5vw, 46px);
    line-height: 1.2;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.vv-slide.active .vv-slide-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.vv-slide-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    max-width: 480px;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.vv-slide.active .vv-slide-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation dots */
.vv-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.vv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vv-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 32px;
    border-radius: 5px;
}

/* Prev / Next arrows */
.vv-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.vv-prev {
    left: 20px;
}

.vv-next {
    right: 20px;
}

.vv-slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}

/* ============================================================
   Product Image Ticker / Marquee Slider
   ============================================================ */
.img-ticker-wrap {
    background: var(--navy-dark);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
}

/* Left fade edges */
.img-ticker-wrap::before,
.img-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.img-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-dark) 0%, transparent 100%);
}

.img-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-dark) 0%, transparent 100%);
}

.img-ticker-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    display: none;
    /* shown only as a design accent */
}

.img-ticker {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.img-ticker-track {
    display: flex;
    gap: 16px;
    animation: imgTickerScroll 36s linear infinite;
    width: max-content;
    will-change: transform;
}

/* Pause on hover */
.img-ticker-wrap:hover .img-ticker-track {
    animation-play-state: paused;
}

@keyframes imgTickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.img-ticker-item {
    position: relative;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.img-ticker-item:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.img-ticker-item img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.img-ticker-item:hover img {
    transform: scale(1.08);
}

.img-ticker-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 29, 51, 0.92) 0%, transparent 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 18px 12px 10px;
    transform: translateY(4px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.img-ticker-item:hover .img-ticker-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Wave Divider */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* ============================================================
   About Section
   ============================================================ */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.about-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(17, 29, 51, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.35);
    z-index: 2;
    min-width: 100px;
}

.about-badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 16px;
    color: var(--gold);
}

.about-badge .num {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.1;
}

.about-badge .lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    display: block;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

/* ============================================================
   Product Category Cards - v2 (white card)
   ============================================================ */
.cat-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(27, 42, 74, 0.08);
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
    border: 1px solid rgba(27, 42, 74, 0.07);
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.16);
    border-color: rgba(201, 168, 76, 0.3);
}

/* Image wrapper */
.cat-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.cat-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

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

/* Number badge - top-right on image */
.cat-card-num {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(17, 29, 51, 0.72);
    backdrop-filter: blur(6px);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    pointer-events: none;
}

/* Icon badge - bottom-left on image */
.cat-card-icon {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.45);
    transition: transform 0.35s ease, background 0.35s ease;
}

.cat-card:hover .cat-card-icon {
    transform: scale(1.12) rotate(-5deg);
    background: var(--gold-dark);
}

/* Content area */
.cat-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    transition: border-color 0.38s ease;
}

.cat-card:hover .cat-card-body {
    border-top-color: var(--gold);
}

.cat-card h5 {
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.cat-card:hover h5 {
    color: var(--gold-dark);
}

.cat-card p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.cat-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.cat-card:hover .cat-card-link {
    gap: 10px;
    color: var(--gold);
}

/* Bottom gold bar */
.cat-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.42s ease;
}

.cat-card:hover .cat-card-bar {
    transform: scaleX(1);
}

/* ============================================================
   Stats / Why Choose Us
   ============================================================ */
.stats-section {
    background: transparent;
    position: relative;
    overflow: visible;
}

.stats-section .container {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding: 64px 56px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    margin: 0 auto 20px;
}

.stat-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ============================================================
   Why Choose Us Cards
   ============================================================ */
.why-card {
    padding: 21px 21px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-card-inner .why-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.why-card-inner h5 {
    margin-bottom: 0;
}

.why-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 20px;
}

.why-icon.navy {
    background: rgba(27, 42, 74, 0.08);
    color: var(--navy);
}

.why-icon.gold {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-dark);
}

.why-icon.forest {
    background: rgba(45, 80, 22, 0.08);
    color: var(--forest);
}

.why-card h5 {
    font-size: 15px;
    margin-bottom: 10px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   Certifications
   ============================================================ */
.cert-section {
    background: var(--light-bg);
}

.cert-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.1);
    height: 100%;
}

.cert-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.cert-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.2);
}

.cert-card h5 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 6px;
}

.cert-card .cert-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

/* ============================================================
   Global Presence
   ============================================================ */
.global-section {
    background: transparent;
    position: relative;
    overflow: visible;
}

.global-section .container {
    background: linear-gradient(135deg, var(--forest) 0%, var(--navy) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding: 64px 56px;
}

.global-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/map-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    border-radius: var(--radius-lg);
}

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

.region-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
}

.region-pill:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
}

.region-pill i {
    color: var(--gold);
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.6), rgba(27, 42, 74, 0.3));
}

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

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
}

/* ============================================================
   Blog Cards
   ============================================================ */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

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

.blog-card-meta {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 10px;
    display: flex;
    gap: 16px;
}

.blog-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.blog-card:hover h5 {
    color: var(--gold-dark);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-medium);
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
}

.blog-read-more:hover {
    color: var(--navy);
    gap: 10px;
}

/* ============================================================
   Contact Strip
   ============================================================ */
.contact-strip {
    background: var(--navy);
    padding: 50px 0;
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.contact-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-strip-item h6 {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-strip-item a,
.contact-strip-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 0;
}

.contact-strip-item a:hover {
    color: var(--gold);
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
    background-image: linear-gradient(rgba(27, 42, 74, 0.75), rgba(27, 42, 74, 0.85)), var(--hero-bg, url('../images/hero-bg.jpg'));
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.page-hero h1 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 52px);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-custom a {
    color: var(--gold);
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Product Cards
   ============================================================ */
.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.3);
}

.product-card-img-wrap {
    overflow: hidden;
    height: 200px;
    position: relative;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--forest);
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 50px;
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-cat {
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card h5 {
    font-size: 17px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 13px;
    color: var(--text-medium);
    flex: 1;
    margin-bottom: 12px;
}

.product-forms {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.form-tag {
    font-size: 11px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.btn-enquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.btn-enquire:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* ============================================================
   Forms
   ============================================================ */
.form-control,
.form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    outline: none;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--gold);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

/* ============================================================
   Footer
   ============================================================ */
.footer-main {
    background: var(--navy-dark);
    padding: 80px 0 40px;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 4px;
}

.footer-tagline {
    font-style: italic;
    color: var(--gold);
    font-size: 15px;
    margin: 12px 0 10px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

.cert-badge {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 50px;
}

.cert-badge i {
    margin-right: 4px;
}

.footer-heading {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a,
.footer-contact li span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact li a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: #111d33;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-credit a {
    color: var(--gold-light);
    opacity: 0.75;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--gold);
    opacity: 1;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ============================================================
   WhatsApp Float Button
   ============================================================ */
.whatsapp-float {
    display: none;
}

.whatsapp-float:hover {
    background: #20b758;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 40px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7);
    }
}

/* Vertical Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 16px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.social-sidebar.visible {
    opacity: 1;
    pointer-events: all;
}

.social-sidebar-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.social-sidebar-link:hover {
    color: white;
    transform: scale(1.12) translateX(3px);
}

.social-sidebar-link.linkedin  { background: #0A66C2; }
.social-sidebar-link.facebook  { background: #1877F2; }
.social-sidebar-link.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-sidebar-link.whatsapp  { background: #25D366; }

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

#backToTop:hover {
    background: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

#backToTop.visible {
    display: flex;
}

/* ============================================================
   Scroll Animation Base States
   ============================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 {
    transition-delay: 0.1s !important;
}

.stagger-2 {
    transition-delay: 0.2s !important;
}

.stagger-3 {
    transition-delay: 0.3s !important;
}

.stagger-4 {
    transition-delay: 0.4s !important;
}

.stagger-5 {
    transition-delay: 0.5s !important;
}

.stagger-6 {
    transition-delay: 0.6s !important;
}

/* ============================================================
   Admin Panel Styles - Professional UI
   ============================================================ */

/* --- Base --- */
.admin-body {
    background: #f4f6fb;
    font-family: 'Inter', 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    overflow-x: hidden;
}

.admin-body * {
    box-sizing: border-box;
}

/* --- Sidebar --- */
.admin-sidebar {
    width: 268px;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #0f1e3d 0%, #1b2a4a 60%, #162240 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(15, 30, 61, 0.18);
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* Logo area */
.admin-sidebar-logo {
    padding: 14px 20px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.admin-logo-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.admin-logo-box img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px;
}

.admin-logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.admin-logo-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.admin-logo-sub {
    color: rgba(201, 168, 76, 0.85);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Nav */
.admin-nav {
    padding: 8px 0 4px;
    flex: 1;
    overflow-y: visible;
}

.admin-nav-section {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.22);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 8px 22px 4px;
    margin-top: 2px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7px 14px 7px 16px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.18s ease;
    margin: 1px 10px;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
}

.admin-nav-link .nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.18s ease;
}

.admin-nav-link .nav-label {
    flex: 1;
}

.admin-nav-link .nav-badge {
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    line-height: 1.6;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.admin-nav-link:hover .nav-icon {
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold-light);
}

.admin-nav-link.active {
    background: rgba(201, 168, 76, 0.14);
    color: #f0d060;
}

.admin-nav-link.active .nav-icon {
    background: rgba(201, 168, 76, 0.22);
    color: #f0d060;
}

.admin-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: var(--gold);
    border-radius: 0 3px 3px 0;
}

/* Sidebar footer */
.admin-sidebar-footer {
    padding: 8px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-sidebar-footer .admin-nav-link {
    margin: 1px 0;
}

/* --- Content Wrapper --- */
.admin-content {
    margin-left: 268px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Topbar --- */
.admin-topbar {
    background: #fff;
    padding: 0 28px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8ecf4;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(15, 30, 61, 0.06);
}

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-topbar-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f1e3d;
    margin: 0;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.admin-user-name {
    font-size: 13px;
    font-weight: 600;
    color: #0f1e3d;
}

.admin-user-role {
    font-size: 11px;
    color: #94a3b8;
}

.admin-topbar-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
}

.admin-topbar-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.05);
}

.admin-topbar-btn.danger {
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.admin-topbar-btn.danger:hover {
    background: rgba(220, 53, 69, 0.06);
    border-color: #dc3545;
}

#sidebarToggle {
    background: none;
    border: none;
    padding: 6px;
    border-radius: 8px;
    color: #475569;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

#sidebarToggle:hover {
    background: #f1f5f9;
}

/* --- Main Content --- */
.admin-main {
    padding: 28px;
    flex: 1;
}

/* --- Stat Cards --- */
.admin-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 1px 4px rgba(15, 30, 61, 0.07), 0 4px 16px rgba(15, 30, 61, 0.04);
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #eef0f6;
    transition: all 0.18s ease;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.admin-stat-card:hover {
    box-shadow: 0 6px 24px rgba(15, 30, 61, 0.13);
    transform: translateY(-3px);
    border-color: #c9a84c55;
    background: #fffdf7;
    color: inherit;
    text-decoration: none;
}

.admin-stat-card:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(15, 30, 61, 0.10);
}

.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.admin-stat-icon.gold {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.16) 0%, rgba(201, 168, 76, 0.06) 100%);
    color: #b8860b;
}

.admin-stat-icon.navy {
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.10) 0%, rgba(27, 42, 74, 0.04) 100%);
    color: var(--navy);
}

.admin-stat-icon.forest {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.10) 0%, rgba(45, 80, 22, 0.04) 100%);
    color: #2d5016;
}

.admin-stat-icon.red {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.12) 0%, rgba(220, 53, 69, 0.04) 100%);
    color: #c82333;
}

.admin-stat-icon.purple {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.10) 0%, rgba(102, 51, 153, 0.04) 100%);
    color: #663399;
}

.admin-stat-num {
    font-size: 30px;
    font-weight: 800;
    color: #0f1e3d;
    line-height: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.admin-stat-label {
    font-size: 12.5px;
    color: #64748b;
    margin-top: 5px;
    font-weight: 500;
}

.admin-stat-trend {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* --- Cards --- */
.admin-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(15, 30, 61, 0.06), 0 4px 16px rgba(15, 30, 61, 0.03);
    border: 1px solid #eef0f6;
    overflow: hidden;
}

.admin-card-header {
    padding: 16px 22px;
    border-bottom: 1px solid #f0f3fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafbff;
}

.admin-card-header h5 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 700;
    color: #0f1e3d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-card-header h5 .card-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-dark);
    flex-shrink: 0;
}

.admin-card-body {
    padding: 22px;
}

/* --- Tables --- */
.admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.admin-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.admin-table thead tr {
    background: #f8faff;
}

.admin-table th {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    padding: 11px 16px;
    border-bottom: 1px solid #eef0f6;
    white-space: nowrap;
}

.admin-table td {
    padding: 13px 16px;
    font-size: 13.5px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f4fb;
    color: #334155;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover td {
    background: #f8fbff;
}

/* --- Action Buttons (table) --- */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    font-size: 13px;
    transition: all 0.15s;
    text-decoration: none;
    cursor: pointer;
    background: none;
}

.btn-action.edit {
    border-color: rgba(201, 168, 76, 0.35);
    color: #b8860b;
    background: rgba(201, 168, 76, 0.07);
}

.btn-action.edit:hover {
    background: rgba(201, 168, 76, 0.18);
    border-color: var(--gold);
    color: var(--gold-dark);
}

.btn-action.view {
    border-color: rgba(27, 42, 74, 0.18);
    color: var(--navy);
    background: rgba(27, 42, 74, 0.05);
}

.btn-action.view:hover {
    background: rgba(27, 42, 74, 0.12);
    border-color: var(--navy);
}

.btn-action.delete {
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    background: rgba(220, 53, 69, 0.06);
}

.btn-action.delete:hover {
    background: rgba(220, 53, 69, 0.14);
    border-color: #dc3545;
}

.btn-action.success {
    border-color: rgba(25, 135, 84, 0.2);
    color: #198754;
    background: rgba(25, 135, 84, 0.06);
}

.btn-action.success:hover {
    background: rgba(25, 135, 84, 0.14);
    border-color: #198754;
}

.btn-action.whatsapp {
    border-color: rgba(37, 211, 102, 0.25);
    color: #25D366;
    background: rgba(37, 211, 102, 0.07);
}

.btn-action.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
}

/* --- Badges --- */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.badge-new {
    background: rgba(220, 53, 69, 0.1);
    color: #c82333;
    border: 1px solid rgba(220, 53, 69, 0.18);
}

.badge-read {
    background: rgba(25, 135, 84, 0.08);
    color: #146c43;
    border: 1px solid rgba(25, 135, 84, 0.18);
}

.badge-featured {
    background: rgba(201, 168, 76, 0.12);
    color: #8a6a00;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.badge-active {
    background: rgba(25, 135, 84, 0.08);
    color: #146c43;
    border: 1px solid rgba(25, 135, 84, 0.18);
}

.badge-hidden {
    background: rgba(108, 117, 125, 0.08);
    color: #495057;
    border: 1px solid rgba(108, 117, 125, 0.18);
}

.badge-category {
    background: rgba(27, 42, 74, 0.07);
    color: var(--navy);
    border: 1px solid rgba(27, 42, 74, 0.12);
}

/* --- Forms (admin) --- */
.admin-body .form-control,
.admin-body .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    padding: 9px 13px;
    font-size: 13.5px;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-shadow: none;
}

.admin-body .form-control:focus,
.admin-body .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    outline: none;
}

.admin-body .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
    letter-spacing: 0.1px;
}

.admin-body textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* --- Quick Action Cards --- */
.admin-quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid #e8ecf4;
    background: #fff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.15s;
}

.admin-quick-action:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
    color: var(--navy);
    transform: translateX(3px);
}

.admin-quick-action .qa-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.admin-quick-action .qa-arrow {
    margin-left: auto;
    color: #cbd5e1;
    font-size: 13px;
    transition: all 0.15s;
}

.admin-quick-action:hover .qa-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* --- Page header bar --- */
.admin-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-page-header-left h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f1e3d;
}

.admin-page-header-left p {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: #94a3b8;
}

/* --- Alerts --- */
.alert-custom {
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success-custom {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error-custom {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

/* --- Sidebar overlay (mobile) --- */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 199;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
    .section-pad {
        padding: 64px 0;
    }

    .stats-section .container {
        padding: 44px 24px;
    }

    .global-section .container {
        padding: 44px 24px;
    }

    .hero {
        min-height: calc(100vh - var(--navbar-h));
    }

    .hero-img-badge {
        display: none;
    }

    .about-img-secondary {
        display: none;
    }

    .about-badge {
        display: none;
    }

    /* ---- Admin Responsive ---- */
    .admin-sidebar {
        transform: translateX(-100%);
        z-index: 300;
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
    }

    #sidebarToggle {
        display: flex !important;
    }

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

    .admin-topbar {
        padding: 0 16px;
        height: 56px;
    }

    .admin-topbar-title {
        font-size: 15px;
    }

    .admin-main {
        padding: 16px;
    }

    /* Tables - horizontal scroll */
    .admin-card>div[style*="overflow-x"] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 560px;
    }

    /* Stat cards - 2 per row */
    .admin-stat-card {
        padding: 16px;
        gap: 12px;
    }

    .admin-stat-num {
        font-size: 24px;
    }

    .admin-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    /* Page header stack */
    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Quick action arrows hidden on mobile */
    .admin-quick-action .qa-arrow {
        display: none;
    }

    /* Form full width */
    .admin-card-body .row .col-md-6,
    .admin-card-body .row .col-md-4,
    .admin-card-body .row .col-md-8 {
        width: 100%;
    }

    .global-section .col-lg-6:last-child {
        margin-top: 40px;
    }

    /* Mobile navbar - allow height to expand when menu opens */
    .navbar-main {
        min-height: var(--navbar-h);
        height: auto;
        padding: 0;
    }

    .navbar-main .navbar-brand {
        padding: 12px 0;
    }

    .navbar-main .navbar-collapse {
        background: var(--navy);
        border-top: 2px solid var(--gold);
        padding: 8px 0 16px;
        margin-top: 0;
        box-shadow: 0 8px 24px rgba(27, 42, 74, 0.25);
    }

    .navbar-main .nav-link {
        padding: 10px 20px !important;
        border-radius: 8px;
        margin: 2px 8px;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .navbar-main .nav-link:hover,
    .navbar-main .nav-link.active {
        color: var(--gold) !important;
        background: rgba(255, 255, 255, 0.08);
    }

    .navbar-main .nav-link::after {
        display: none;
    }

    .navbar-main .dropdown-menu {
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--gold);
        border-radius: 0 8px 8px 0;
        margin-left: 20px;
        padding: 4px 0;
        background: rgba(255, 255, 255, 0.06);
    }

    .navbar-main .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .navbar-main .dropdown-item:hover {
        background: rgba(201, 168, 76, 0.15) !important;
        color: var(--gold) !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B2A4A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-main .ms-lg-3 {
        margin: 8px 20px 4px !important;
    }

    .navbar-main .ms-lg-3 .btn {
        width: 100%;
    }

    .logo-img {
        height: 48px;
    }
}

@media (max-width: 767.98px) {
    .vv-slider {
        height: 300px;
    }

    .vv-slide-content {
        padding: 0 28px;
    }

    .vv-slider-arrow {
        display: none;
    }

    .topbar {
        display: none !important;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat .num {
        font-size: 20px;
    }

    .stat-num {
        font-size: 36px;
    }

    .contact-strip-item+.contact-strip-item {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 20px;
        margin-top: 20px;
    }

    .whatsapp-float {
        display: none;
    }

    .social-sidebar {
        left: 8px;
        gap: 6px;
    }

    .social-sidebar-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 6px;
    }

    #backToTop {
        width: 30px;
        height: 30px;
        font-size: 13px;
        bottom: 20px;
        right: 16px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 24px;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .admin-main {
        padding: 14px;
    }

    .admin-card-body {
        padding: 14px;
    }

    /* Leads table - hide less important cols */
    .admin-table th:nth-child(4),
    .admin-table td:nth-child(4),
    .admin-table th:nth-child(5),
    .admin-table td:nth-child(5) {
        display: none;
    }

    /* Topbar - hide user name text, keep avatar */
    .admin-user-name,
    .admin-user-role {
        display: none !important;
    }

    .admin-topbar-right {
        gap: 8px;
    }

    /* Stat cards - force 2 cols */
    .col-xl-2 {
        width: 50% !important;
    }
}

@media (max-width: 362px) {
    .logo-img {
        height: 38px;
    }

    .navbar-main .navbar-brand {
        padding: 8px 0;
    }

    .navbar-main .container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-toggler {
        flex-shrink: 0;
    }
}

/* ============================================================
   Testimonial Cards
   ============================================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-quote {
    font-size: 52px;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

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

.testimonial-stars i {
    font-size: 13px;
    color: var(--gold);
}

.testimonial-stars i.empty {
    color: var(--gray-200);
}

.testimonial-text {
    font-size: 14.5px;
    color: var(--text-medium);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
    padding-top: 18px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--forest) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.testimonial-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 14.5px;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-medium);
}

/* ============================================================
   Page Loader
   ============================================================ */
#pageLoader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pageLoader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(201, 168, 76, 0.15);
    border-top-color: var(--gold);
    border-right-color: var(--gold-light);
    animation: loaderSpin 0.9s linear infinite;
}

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

.loader-logo {
    width: 90px;
    height: auto;
    object-fit: contain;
    animation: loaderPulse 1.6s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

/* ============================================================
   Skeleton / Lazy Load Image Shimmer
   ============================================================ */

/* All lazy images start invisible and fade in when loaded */
img.lazy {
    opacity: 0;
    transition: opacity 0.45s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Skeleton shimmer wrapper - place around any img that lazy-loads */
.img-skeleton {
    position: relative;
    overflow: hidden;
    background: #e8eaf0;
}

.img-skeleton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.img-skeleton.skeleton-done::before {
    display: none;
}

@keyframes skeletonShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Skeleton placeholder for content cards (text lines) */
.skeleton-line {
    height: 14px;
    border-radius: 6px;
    background: #e4e7ec;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.skeleton-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.skeleton-line.w-75 {
    width: 75%;
}

.skeleton-line.w-50 {
    width: 50%;
}

/* ============================================================
   Print / Misc
   ============================================================ */
@media print {

    .topbar,
    .navbar-main,
    .whatsapp-float,
    .social-sidebar,
    .footer {
        display: none !important;
    }
}

/* ============================================================
   Toast Notifications
   ============================================================ */
.vv-toast-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.vv-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    min-width: 280px;
    max-width: 380px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    pointer-events: all;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: vvToastIn 0.3s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.vv-toast.vv-toast-hiding {
    animation: vvToastOut 0.22s ease both;
}

.vv-toast-success {
    color: #166534;
    border-left: 4px solid #16a34a;
}

.vv-toast-error {
    color: #9f1239;
    border-left: 4px solid #dc2626;
}

.vv-toast-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.vv-toast-success .vv-toast-icon {
    color: #16a34a;
}

.vv-toast-error .vv-toast-icon {
    color: #dc2626;
}

.vv-toast-body {
    flex: 1;
}

.vv-toast-close {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #94a3b8;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-start;
    line-height: 1;
}

.vv-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform-origin: left;
    animation: vvToastProg 4.2s linear both;
}

.vv-toast-success .vv-toast-progress {
    background: #16a34a;
}

.vv-toast-error .vv-toast-progress {
    background: #dc2626;
}

@keyframes vvToastIn {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes vvToastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes vvToastProg {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* Field validation errors */
.vv-field-error {
    font-size: 12.5px;
    color: #dc2626;
    margin-top: 4px;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08) !important;
}