:root {
    --lotus-navy: #0A2342;
    --lotus-navy-dark: #061528;
    --lotus-gold: #C5A059;
    --lotus-gold-light: #E8C872;
    --lotus-gold-dark: #A8863D;
    --lotus-cream: #FDF8EE;
    --lotus-white: #FFFFFF;
    --lotus-gray-100: #F5F5F5;
    --lotus-gray-200: #E8E8E8;
    --lotus-gray-600: #666666;
    --lotus-gray-800: #333333;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(10, 35, 66, 0.08);
    --shadow-hover: 0 8px 32px rgba(10, 35, 66, 0.15);
    --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--lotus-gray-800);
    background: var(--lotus-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--lotus-navy);
    font-weight: 700;
}

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

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

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

.section-padding { padding: 80px 0; }

.section-bg-cream { background: var(--lotus-cream); }

.section-bg-navy {
    background: var(--lotus-navy);
    color: var(--lotus-white);
}

.section-bg-navy h1,
.section-bg-navy h2,
.section-bg-navy h3,
.section-bg-navy h4 { color: var(--lotus-white); }

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lotus-gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--lotus-gray-600);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-bg-navy .section-subtitle { color: rgba(255,255,255,0.75); }

/* Sticky top bar + header wrapper */
.site-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--lotus-gold-dark), var(--lotus-gold));
    color: var(--lotus-navy-dark);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a { color: var(--lotus-navy-dark); font-weight: 500; }
.top-bar a:hover { color: var(--lotus-white); }

/* Header */
.site-header {
    position: relative;
    width: 100%;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 35, 66, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.site-header.transparent:not(.scrolled) {
    background: transparent;
}

/* Non-home pages: solid header background */
.site-header:not(.transparent) {
    background: var(--lotus-navy);
}

.navbar-brand img { height: 50px; width: auto; transition: height var(--transition); }
.site-header.scrolled .navbar-brand img { height: 42px; }

.navbar-dark .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition);
}

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

.navbar-dark .dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.navbar-dark .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.navbar-dark .dropdown-item:hover {
    background: var(--lotus-cream);
    color: var(--lotus-navy);
}

.btn-gold {
    background: linear-gradient(135deg, var(--lotus-gold), var(--lotus-gold-light));
    color: var(--lotus-navy-dark);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
    color: var(--lotus-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.4);
}

.btn-navy {
    background: var(--lotus-navy);
    color: var(--lotus-white);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
}

.btn-navy:hover {
    background: var(--lotus-navy-dark);
    color: var(--lotus-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-gold {
    border: 2px solid var(--lotus-gold);
    color: var(--lotus-gold);
    background: transparent;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all var(--transition);
}

.btn-outline-gold:hover {
    background: var(--lotus-gold);
    color: var(--lotus-navy-dark);
}

.btn-outline-white {
    border: 2px solid var(--lotus-white);
    color: var(--lotus-white);
    background: transparent;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.btn-outline-white:hover {
    background: var(--lotus-white);
    color: var(--lotus-navy);
}

/* Hero — Premium */
.hero-premium {
    position: relative;
    margin-top: calc(-1 * var(--site-top-height, 120px));
    min-height: calc(100vh - var(--site-top-height, 120px));
    overflow: hidden;
}

.hero-premium .hero-swiper {
    min-height: calc(100vh - var(--site-top-height, 120px));
}

.hero-premium .swiper-slide {
    position: relative;
    min-height: calc(100vh - var(--site-top-height, 120px));
    display: flex;
    align-items: center;
}

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

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

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 28, 53, 0.92) 0%, rgba(15, 28, 53, 0.75) 45%, rgba(15, 28, 53, 0.45) 100%);
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    padding: calc(80px + var(--site-top-height, 120px)) 0 120px;
    color: var(--lotus-white);
}

.hero-content h1 {
    color: var(--lotus-white);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(197, 160, 89, 0.18);
    color: var(--lotus-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.hero-visual {
    position: relative;
    min-height: 380px;
}

.hero-visual-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.hero-visual-card img {
    width: 100%;
    display: block;
}

.hero-visual-card-main {
    position: relative;
    z-index: 2;
}

.hero-visual-card-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 45%;
    z-index: 3;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-stat-pill {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--lotus-gold);
    color: var(--lotus-navy-dark);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
    z-index: 4;
    animation: heroFloat 5s ease-in-out infinite reverse;
}

.hero-stat-pill strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.hero-stat-pill span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-floating-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    border-top: 3px solid var(--lotus-gold);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
}

.hero-stat-item {
    flex: 1;
    text-align: center;
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(15, 28, 53, 0.08);
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--lotus-navy);
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--lotus-gray-600);
    margin-top: 0.25rem;
}

.hero-pagination {
    bottom: 90px !important;
}

.hero-premium .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.hero-premium .swiper-pagination-bullet-active {
    background: var(--lotus-gold);
    width: 28px;
    border-radius: 5px;
}

.hero-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-premium .swiper-slide-active .hero-animate,
.hero-premium .swiper-slide-active .hero-animate-delay-2,
.hero-premium .swiper-slide-active .hero-animate-delay-3 {
    opacity: 1;
    transform: translateY(0);
}

.hero-animate-delay-2 { transition-delay: 0.15s; }
.hero-animate-delay-3 { transition-delay: 0.3s; }

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

/* Legacy hero aliases */
.hero-section {
    min-height: calc(100vh - var(--site-top-height, 120px));
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--lotus-navy) 0%, var(--lotus-navy-dark) 100%);
    color: var(--lotus-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * var(--site-top-height, 120px));
    padding-top: calc(60px + var(--site-top-height, 120px));
}

.hero-section h1 {
    color: var(--lotus-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.hero-section .lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; }

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-image-wrap img { width: 100%; display: block; }

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    background: linear-gradient(120deg, var(--lotus-navy-dark) 0%, var(--lotus-navy) 55%, #123156 100%);
    color: var(--lotus-white);
    padding: 64px 0 72px;
    text-align: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--site-top-height, 120px));
    padding-top: calc(64px + var(--site-top-height, 120px));
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 180%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lotus-gold), transparent);
}

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

.page-hero .eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--lotus-gold-light);
}

.page-hero h1 {
    color: var(--lotus-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0;
    line-height: 1.15;
}

.page-hero h1::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    margin: 1rem auto 0;
    background: var(--lotus-gold);
    border-radius: 3px;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition);
    font-weight: 500;
}

.breadcrumb-nav a:hover { color: var(--lotus-gold); }

.breadcrumb-nav span[aria-current="page"] {
    color: var(--lotus-gold-light);
    font-weight: 600;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
}

/* Feature Box */
.feature-box {
    background: var(--lotus-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197,160,89,0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lotus-gold), var(--lotus-gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--lotus-navy-dark);
    margin-bottom: 1.25rem;
}

/* Category Card */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    display: block;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.category-card:hover img { transform: scale(1.05); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,35,66,0.9) 0%, rgba(10,35,66,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--lotus-white);
}

.category-card-overlay h3 {
    color: var(--lotus-white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.category-card-overlay .explore-link {
    color: var(--lotus-gold-light);
    font-size: 0.875rem;
    font-weight: 600;
}

.category-card-large { height: 580px; }

@media (max-width: 991px) {
    .category-card-large { height: 280px; }
}

/* Product Card */
.product-card {
    background: var(--lotus-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--lotus-gold);
    color: var(--lotus-navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.product-card-body p {
    font-size: 0.875rem;
    color: var(--lotus-gray-600);
    flex: 1;
}

.product-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

.product-meta span {
    font-size: 0.75rem;
    background: var(--lotus-cream);
    color: var(--lotus-navy);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 500;
}

/* Stats Counter */
.stat-item { text-align: center; padding: 1.5rem; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--lotus-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lotus-gold), var(--lotus-gold-light));
    color: var(--lotus-navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Certification Badge */
.cert-badge {
    background: var(--lotus-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    height: 100%;
}

.cert-badge:hover { transform: translateY(-4px); }

.cert-badge img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
    /* background: linear-gradient(135deg, var(--lotus-navy), var(--lotus-navy-dark)); */
    background: var(--lotus-navy);
    border-radius: var(--radius);
    padding: 3rem;
    color: var(--lotus-white);
    position: relative;
    overflow: hidden;
}

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

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    border: 1px solid var(--lotus-gray-200);
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--lotus-gold);
    box-shadow: 0 0 0 0.2rem rgba(197,160,89,0.25);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 350px;
}

.map-container iframe { width: 100%; height: 350px; border: 0; }

/* Footer */
.site-footer {
    background: var(--lotus-navy);
    color: rgba(255, 255, 255, 0.78);
    position: relative;
    padding-top: 0;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--lotus-gold), var(--lotus-gold-light), var(--lotus-gold));
}

.footer-main {
    padding: 4rem 0 2.5rem;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo {
    height: 52px;
    width: auto;
    display: block;
    /* filter: brightness(0) invert(1); */
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-heading {
    color: var(--lotus-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

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

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.15);
    color: var(--lotus-gold);
    border-radius: 8px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

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

.footer-social {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--lotus-gold);
    color: var(--lotus-navy-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--lotus-gold);
}

/* Contact Page */
.page-hero-contact .page-hero-lead {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 1rem auto 0;
    font-size: 1.05rem;
}

.contact-info-panel,
.contact-form-panel {
    background: var(--lotus-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(15, 28, 53, 0.06);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.12);
    color: var(--lotus-gold);
    border-radius: 10px;
    font-size: 1rem;
}

.contact-info-list strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lotus-navy);
    margin-bottom: 0.25rem;
}

.contact-info-list p {
    margin: 0;
    color: var(--lotus-gray-600);
    font-size: 0.95rem;
}

.contact-info-list a {
    color: var(--lotus-gray-800);
    text-decoration: none;
}

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

.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-map-wrap {
    margin-top: 4rem;
}

.contact-map-header {
    margin-bottom: 1rem;
}

.contact-map-wrap .map-container iframe {
    height: 400px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
}

/* Product Detail */
.product-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.product-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover { border-color: var(--lotus-gold); }

.spec-table { width: 100%; }

.spec-table tr { border-bottom: 1px solid var(--lotus-gray-200); }

.spec-table td {
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--lotus-navy);
    width: 40%;
}

/* Gallery Grid */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* FAQ Accordion override */
.accordion-button:not(.collapsed) {
    background: var(--lotus-cream);
    color: var(--lotus-navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(197,160,89,0.25);
}

.trust-stat {
    text-align: center;
    padding: 1rem;
}

.trust-stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--lotus-gold);
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.9rem;
    color: var(--lotus-gray-600);
    margin-top: 0.5rem;
}

/* Lotus Swiper — shared styles */
.lotus-swiper {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.lotus-swiper .swiper-slide {
    height: auto;
}

.lotus-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.lotus-swiper:not(.swiper-initialized) .swiper-pagination {
    display: none;
}

.swiper-pagination-bullet-active { background: var(--lotus-gold); }

/* Shared category & catalogue swipers */
.featured-products-swiper,
.categories-swiper,
.certifications-swiper,
.gallery-swiper,
.testimonials-swiper,
.export-network-swiper {
    min-height: 280px;
}

.featured-products-swiper:not(.swiper-initialized) .swiper-wrapper,
.categories-swiper:not(.swiper-initialized) .swiper-wrapper,
.certifications-swiper:not(.swiper-initialized) .swiper-wrapper,
.gallery-swiper:not(.swiper-initialized) .swiper-wrapper,
.testimonials-swiper:not(.swiper-initialized) .swiper-wrapper,
.export-network-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--lotus-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-stars {
    color: var(--lotus-gold);
    font-size: 0.9rem;
}

.testimonial-quote p {
    font-size: 0.95rem;
    color: var(--lotus-gray-800);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lotus-navy), var(--lotus-navy-dark));
    color: var(--lotus-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Scroll reveal — content always visible; subtle motion on enter */
.scroll-reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(16px);
    transition: transform 0.65s ease, opacity 0.65s ease;
}

.scroll-reveal.is-revealed {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        transform: none;
        transition: none;
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Industry Card */
.industry-card {
    background: var(--lotus-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform var(--transition);
}

.industry-card:hover { transform: translateY(-4px); }

.industry-icon {
    font-size: 2.5rem;
    color: var(--lotus-gold);
    margin-bottom: 1rem;
}

/* Alert */
.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: var(--radius);
}

/* Responsive */
@media (max-width: 767px) {
    .section-padding { padding: 50px 0; }
    .hero-premium .hero-slide-inner {
        padding: calc(60px + var(--site-top-height, 70px)) 0 100px;
    }
    .hero-premium .hero-swiper,
    .hero-premium .swiper-slide {
        min-height: auto;
    }
    .hero-floating-stats {
        flex-wrap: wrap;
    }
    .hero-stat-item {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(15, 28, 53, 0.08);
    }
    .hero-pagination {
        bottom: 70px !important;
    }
    .hero-section {
        min-height: auto;
        margin-top: calc(-1 * var(--site-top-height, 70px));
        padding-top: calc(40px + var(--site-top-height, 70px));
        padding-bottom: 40px;
    }
    .page-hero {
        padding-top: calc(40px + var(--site-top-height, 70px));
        padding-bottom: 48px;
        margin-top: calc(-1 * var(--site-top-height, 70px));
    }
    .breadcrumb-nav {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
    }
    .footer-main { padding: 3rem 0 2rem; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
    .contact-info-panel,
    .contact-form-panel {
        padding: 1.5rem;
    }
    .top-bar { display: none; }
    .cta-banner { padding: 2rem; }
    .featured-products-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: 1fr;
    }
    .testimonials-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ==========================================================================
   QUOTE REQUEST MODAL & PREMIUM CATEGORIES CUSTOM STYLES
   ========================================================================== */

/* Quote Modal Gradient & Content */
.quote-modal-content {
    background: linear-gradient(135deg, #0A2342 0%, #1e3c72 50%, #2a5298 100%);
    border: none;
    border-radius: 20px;
    color: var(--lotus-white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.quote-modal-content .modal-header .btn-close {
    opacity: 0.8;
    transition: opacity var(--transition);
}

.quote-modal-content .modal-header .btn-close:hover {
    opacity: 1;
}

/* Modal Inputs Styling */
.quote-modal-input {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    color: #333333 !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: border-color var(--transition), box-shadow var(--transition) !important;
}

.quote-modal-input:focus {
    border-color: var(--lotus-gold) !important;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.25) !important;
}

textarea.quote-modal-input {
    resize: none;
}

.quote-modal-input::placeholder {
    color: #999999 !important;
    font-weight: 400;
}

/* Invalid Feedback */
.quote-feedback {
    color: #ff8b8b !important;
    font-size: 0.825rem;
    margin-top: 0.35rem;
    font-weight: 500;
    text-align: left;
}

/* Transmit Button */
.quote-modal-btn {
    background: linear-gradient(135deg, var(--lotus-gold), var(--lotus-gold-light)) !important;
    color: var(--lotus-navy-dark) !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: none !important;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.quote-modal-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--lotus-gold-dark), var(--lotus-gold)) !important;
    color: var(--lotus-navy-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.quote-modal-btn:active:not(:disabled) {
    transform: translateY(0);
}

.quote-modal-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Curated Categories Grid */
.curated-categories-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 24px;
}

.curated-category-item {
    height: 100%;
}

.curated-category-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.curated-category-item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.curated-category-item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.curated-category-item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.curated-category-item-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Category Card Refinements */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px; /* Default fallback height for list and slider */
    width: 100%;
    display: block;
    box-shadow: var(--shadow);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: var(--lotus-navy);
}

.curated-categories-grid .category-card {
    height: 100%; /* In grid, fill 100% of the grid cell height */
}

.category-card-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 35, 66, 0.15);
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 35, 66, 0) 40%, rgba(10, 35, 66, 0.85) 100%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--lotus-white);
    transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(180deg, rgba(10, 35, 66, 0) 30%, rgba(10, 35, 66, 0.95) 100%);
}

.category-card-info {
    text-align: left;
    flex: 1;
    padding-right: 15px;
}

.category-card-info h3 {
    color: var(--lotus-white) !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
}

.category-card-large .category-card-info h3 {
    font-size: 1.55rem;
}

.product-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.category-card .explore-link {
    color: var(--lotus-gold-light) !important;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(4px);
    white-space: nowrap;
}

.category-card:hover .explore-link {
    opacity: 1;
    transform: translateX(0);
}

/* Swiper custom height constraint to prevent slider layout shifts */
.categories-swiper .swiper-slide {
    height: auto;
}

.categories-swiper .category-card {
    height: 280px;
}

/* Premium Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 35, 66, 0.06);
    box-shadow: 0 4px 24px rgba(10, 35, 66, 0.03);
    transition: all 0.3s ease;
}

.site-header .nav-link {
    color: var(--lotus-navy) !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem !important;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--lotus-gold) !important;
    background: rgba(197, 160, 89, 0.08);
}

.site-header .dropdown-toggle::after {
    display: none;
}

.site-header .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(10, 35, 66, 0.08) !important;
}

.site-header .dropdown-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lotus-navy);
    border-radius: 6px;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}

.site-header .dropdown-item:hover {
    background: rgba(197, 160, 89, 0.1) !important;
    color: var(--lotus-navy) !important;
    padding-left: 1.25rem !important;
}

.header-search-bar input {
    background: rgba(10, 35, 66, 0.04);
    border: 1px solid rgba(10, 35, 66, 0.08);
    color: var(--lotus-navy);
    width: 200px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.header-search-bar input:focus {
    background: #ffffff;
    width: 240px;
    border-color: var(--lotus-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.header-search-bar .btn-link {
    color: var(--lotus-navy) !important;
    opacity: 0.6;
}

.header-search-bar .btn-link:hover {
    opacity: 1;
}

/* Redesigned Premium Swiper Hero Section - Full Page Background & Logo Card */
.hero-swiper-section {
    height: 100vh; /* Fill the viewport completely */
    min-height: 700px;
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

/* Slow Ken Burns style zoom for active background */
.swiper-slide-active .hero-slide-bg {
    transform: scale(1.06);
}

/* Reduced opacity light overlay on the left to fade cover image for text visibility */
.hero-slide-overlay {
    background: linear-gradient(90deg, rgba(252, 250, 246, 0.85) 0%, rgba(252, 250, 246, 0.6) 50%, rgba(252, 250, 246, 0.1) 100%);
    z-index: 2;
}

.hero-slide-row {
    padding-top: 100px; /* Accounts for the capsule navbar */
}

/* Eyebrow badge tag */
.hero-swiper-section .hero-badge-pill {
    background: rgba(10, 35, 66, 0.08) !important;
    border: 1px solid rgba(197, 160, 89, 0.4) !important;
    color: var(--lotus-gold-dark) !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
}

/* Heading & Typography */
.hero-swiper-section .hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.8vw, 4rem);
    line-height: 1.15;
    color: var(--lotus-navy);
    font-weight: 800;
    max-width: 550px;
}

.hero-swiper-section .hero-lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--lotus-gray-600);
    max-width: 500px;
}

/* Floating Logo Card - same hover effects */
.hero-image-wrapper {
    position: relative;
    z-index: 5;
    animation: floatImageCard 6s ease-in-out infinite;
}

/* Gold rotating background wireframe and radial glow */
.hero-image-bg-accent {
    width: 460px;
    height: 460px;
    border: 2px dashed rgba(197, 160, 89, 0.22);
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: rotateSlow 25s linear infinite;
}

/* The card contains ONLY the logo and transitions beautifully on hover */
.hero-logo-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    width: 320px;
    height: 320px;
    border: 3px solid #ffffff;
    outline: 1px solid rgba(197, 160, 89, 0.35); /* Elegant gold card frame */
    box-shadow: 0 20px 45px rgba(10, 35, 66, 0.12) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease, outline-color 0.4s ease;
}

.hero-logo-card:hover {
    transform: scale(1.05) rotate(1.5deg);
    box-shadow: 0 25px 55px rgba(197, 160, 89, 0.2) !important;
    outline-color: var(--lotus-gold);
}

.hero-logo-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Navigation arrows styling for light backgrounds */
.hero-swiper-prev,
.hero-swiper-next {
    color: var(--lotus-navy) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    border: 1px solid rgba(10, 35, 66, 0.1);
    transition: all 0.3s ease !important;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(10, 35, 66, 0.05);
}

.hero-swiper-prev {
    left: 24px !important;
}

.hero-swiper-next {
    right: 24px !important;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
    background: var(--lotus-navy) !important;
    color: var(--lotus-white) !important;
    border-color: var(--lotus-navy) !important;
    box-shadow: 0 6px 18px rgba(10, 35, 66, 0.15);
}

.hero-swiper-prev::after,
.hero-swiper-next::after {
    font-size: 1.15rem !important;
    font-weight: bold;
}

/* Bullet Pagination styling for light backgrounds */
.hero-swiper-pagination {
    bottom: 25px !important;
    z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    background: var(--lotus-navy) !important;
    opacity: 0.25;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--lotus-gold) !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

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

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .hero-swiper-section {
        height: auto;
        min-height: 0;
        padding-top: 1rem;
    }
    .hero-slide {
        min-height: 0;
    }
    .hero-slide-row {
        padding-top: 7.5rem;
        padding-bottom: 3.5rem;
        align-items: flex-start !important;
    }
    .hero-text-col {
        padding-top: 0.5rem;
    }
    /* Vertical overlay so stacked text stays readable over the image */
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(252, 250, 246, 0.72) 0%, rgba(252, 250, 246, 0.9) 45%, rgba(252, 250, 246, 0.96) 100%);
    }
    .hero-swiper-section .hero-headline {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
        max-width: 100%;
    }
    .hero-swiper-section .hero-lead-text {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
    }
    .hero-image-col {
        margin-bottom: 0.5rem;
    }
    .hero-logo-card {
        width: 200px;
        height: 200px;
        padding: 1.25rem;
        margin: 0 auto;
    }
    .hero-image-bg-accent {
        width: 240px;
        height: 240px;
    }
    .hero-swiper-prev,
    .hero-swiper-next {
        display: none !important;
    }
    .hero-swiper-pagination {
        bottom: 14px !important;
    }
}

@media (max-width: 575px) {
    .hero-slide-row {
        padding-top: 8.5rem;
        padding-bottom: 3rem;
    }
    .hero-text-col {
        padding-top: 0.75rem;
    }
    .hero-logo-card {
        width: 160px;
        height: 160px;
        padding: 1rem;
        border-radius: 14px;
    }
    .hero-image-bg-accent {
        width: 190px;
        height: 190px;
    }
    .hero-swiper-section .hero-badge-pill {
        font-size: 0.72rem;
        padding: 0.4rem 0.9rem;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        bottom: 16px;
        right: 16px;
    }
}

/* Floating Capsule Navbar Overrides */
.site-top {
    position: static !important;
}

.site-header {
    position: sticky !important;
    top: 20px !important;
    margin: 20px auto -80px !important; /* Pulls content up so header floats over it */
    width: 92% !important;
    max-width: 1200px !important;
    z-index: 1030 !important;
    background: rgba(255, 255, 255, 0.7) !important; /* Frosted translucent white */
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(197, 160, 89, 0.25) !important; /* Light gold border for premium contrast */
    border-radius: 50px !important; /* Pill capsule shape */
    padding: 6px 20px !important;
    box-shadow: 0 12px 40px rgba(10, 35, 66, 0.08) !important; /* Stronger shadow */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Nav Links inside Capsule */
.site-header .nav-link {
    color: var(--lotus-navy) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 0.45rem 1rem !important;
    border-radius: 30px !important; /* Rounded pill nav links */
    transition: all 0.25s ease !important;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--lotus-gold) !important;
    background: rgba(197, 160, 89, 0.08) !important;
}

/* Dropdown styling updates for capsule navbar */
.site-header .dropdown-menu {
    border-radius: 16px !important;
    margin-top: 10px !important;
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
}

/* Dark Navy Premium Get Quote Button inside Capsule */
.site-header .btn-gold {
    background: var(--lotus-navy) !important;
    color: var(--lotus-white) !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 30px !important; /* Pill shaped button */
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    transform: none !important;
}

.site-header .btn-gold:hover {
    background: var(--lotus-gold) !important;
    color: var(--lotus-navy-dark) !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25) !important;
}

/* Round Hamburger Toggler - Hide on Desktop, Show on Mobile */
.navbar-toggler-round {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: rgba(10, 35, 66, 0.05) !important;
    border: 1px solid rgba(10, 35, 66, 0.08) !important;
    display: none !important; /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    color: var(--lotus-navy) !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.navbar-toggler-round:hover {
    background: var(--lotus-navy) !important;
    color: var(--lotus-white) !important;
}

.navbar-toggler-round i {
    font-size: 1.05rem;
}

/* Adjust search bar spacing inside offcanvas/mobile */
.header-search-bar input {
    font-size: 0.85rem !important;
    padding: 10px 18px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(10, 35, 66, 0.1) !important;
    background: rgba(10, 35, 66, 0.03) !important;
}

/* Hero padding adjustment to compensate for header overlap */
.hero-redesign {
    padding-top: 130px !important;
}

@media (max-width: 991px) {
    .site-header {
        width: 94% !important;
        top: 12px !important;
        margin: 12px auto -50px !important;
        padding: 4px 14px !important;
    }
    .navbar-toggler-round {
        display: inline-flex !important; /* Show on mobile/tablet */
    }
    .hero-redesign {
        padding-top: 140px !important;
    }
}

/* Utilities */
.inset-0 {
    inset: 0;
}

.btn-outline-navy {
    color: var(--lotus-navy);
    border: 2px solid var(--lotus-navy);
    background: transparent;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.btn-outline-navy:hover {
    background: var(--lotus-navy);
    color: var(--lotus-white);
}

/* Global Presence Section */
.global-presence-section {
    position: relative;
    overflow: hidden;
}

.global-presence-intro {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.global-presence-layout {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px) 1fr;
    gap: 2rem;
    align-items: center;
}

.global-presence-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.global-presence-card {
    background: var(--lotus-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197, 160, 89, 0.12);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

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

.global-presence-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--lotus-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.global-presence-map-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-presence-map {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 20px 50px rgba(10, 35, 66, 0.12);
    background: var(--lotus-navy);
}

.global-presence-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.global-presence-map-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(10, 35, 66, 0.2) 0%, rgba(10, 35, 66, 0.65) 100%);
}

.global-presence-map-globe {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.global-presence-pin {
    position: absolute;
    min-width: 36px;
    height: 36px;
    padding: 0 0.4rem;
    border-radius: 50px;
    background: var(--lotus-gold);
    color: var(--lotus-navy-dark);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: heroFloat 4s ease-in-out infinite;
}

.global-presence-pin-me { top: 38%; left: 58%; animation-delay: 0s; }
.global-presence-pin-eu { top: 28%; left: 48%; animation-delay: 0.5s; }
.global-presence-pin-apac { top: 42%; left: 72%; animation-delay: 1s; }
.global-presence-pin-af { top: 58%; left: 52%; animation-delay: 1.5s; }
.global-presence-pin-am { top: 35%; left: 22%; animation-delay: 2s; }

/* Certification Logo Swiper Band */
.cert-logos-band {
    background: linear-gradient(180deg, var(--lotus-white) 0%, #f8f6f2 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 2rem 0;
}

.cert-logos-swiper {
    min-height: 110px;
    overflow: hidden;
}

.cert-logos-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.cert-logo-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: var(--lotus-white);
    border: 1px solid rgba(15, 28, 53, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    min-height: 100px;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cert-logo-slide:hover {
    border-color: rgba(197, 160, 89, 0.45);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.cert-logo-slide img {
    /* max-height: 44px; */
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
}

.cert-logo-name {
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    color: var(--lotus-navy);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

@media (max-width: 991px) {
    .global-presence-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .global-presence-col-left,
    .global-presence-col-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .global-presence-map-wrap {
        order: -1;
    }

    .global-presence-map {
        width: min(100%, 320px);
    }
}

@media (max-width: 575px) {
    .global-presence-col-left,
    .global-presence-col-right {
        grid-template-columns: 1fr;
    }

    .cert-logo-slide {
        max-width: 150px;
        min-height: 90px;
        padding: 0.75rem;
    }
}
