@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   GLOBAL DESIGN TOKENS — BLUE + WHITE
   ========================================================================== */
:root {
    --primary: #0B3D91;
    --primary-dark: #072C6B;
    --secondary: #1A73E8;
    --secondary-hover: #1558B8;
    --accent-soft: #EAF2FB;
    --bg: #FFFFFF;
    --bg-alt: #F4F8FD;
    --text: #0F172A;
    --text-muted: #475569;
    --border: #D7E4F4;
    --white: #FFFFFF;

    --navy-deep: #FFFFFF;
    --navy-blue: #F4F8FD;
    --navy-light: #EAF2FB;
    --gold-main: #1A73E8;
    --gold-light: #5BA3F5;
    --gold-dark: #0B3D91;
    --deep-red: #0B3D91;
    --royal-orange: #1A73E8;

    --light-bg: #FFFFFF;
    --light-bg-sec: #F4F8FD;
    --text-dark: #0F172A;
    --text-muted-dark: #475569;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius: 14px;
    --container: 1180px;
    --transition: all 0.3s ease;

    --glow-gold: 0 10px 28px rgba(26, 115, 232, 0.18);
    --glow-orange: 0 10px 28px rgba(26, 115, 232, 0.16);
    --glow-red: 0 10px 28px rgba(11, 61, 145, 0.16);
    --shadow-premium: 0 14px 32px rgba(11, 61, 145, 0.08);
    --shadow-light: 0 8px 24px rgba(11, 61, 145, 0.06);
    --shadow-card: 0 8px 24px rgba(11, 61, 145, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    line-height: 1.7;
}

::selection {
    background-color: var(--gold-main);
    color: #ffffff;
}

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

li {
    list-style-type: none !important;
}

/* Animations */
@keyframes floatBalloon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes chakraRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {

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

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

@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(26, 115, 232, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(26, 115, 232, 0.8);
    }
}

/* ==========================================================================
   VISUAL PATTERNS & IDENTITIES
   ========================================================================== */
.pattern-dots-dark {
    background-image: radial-gradient(rgba(26, 115, 232, 0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.pattern-dots-light {
    background-image: radial-gradient(rgba(26, 115, 232, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.pattern-diagonal-dark {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 10px, rgba(234, 242, 251, 0.55) 10px, rgba(234, 242, 251, 0.55) 20px);
}

.pattern-diagonal-light {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 10px, rgba(234, 242, 251, 0.55) 10px, rgba(234, 242, 251, 0.55) 20px);
}

.pattern-geometric-light {
    background-image:
        linear-gradient(30deg, #EAF2FB 12%, transparent 12.5%, transparent 87%, #EAF2FB 87.5%, #EAF2FB),
        linear-gradient(150deg, #EAF2FB 12%, transparent 12.5%, transparent 87%, #EAF2FB 87.5%, #EAF2FB),
        linear-gradient(30deg, #EAF2FB 12%, transparent 12.5%, transparent 87%, #EAF2FB 87.5%, #EAF2FB),
        linear-gradient(150deg, #EAF2FB 12%, transparent 12.5%, transparent 87%, #EAF2FB 87.5%, #EAF2FB);
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px;
    background-color: var(--light-bg);
}

/* ==========================================================================
   SECTION CONTRAST THEMES
   ========================================================================== */
/* DARK THEMED SECTION */
.section-dark {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.section-dark .heading2 {
    color: var(--text-dark);
}

.section-dark .text-muted {
    color: var(--text-muted-dark) !important;
}

/* LIGHT THEMED SECTION */
.section-light {
    background-color: var(--light-bg-sec);
    color: var(--text-dark);
}

.section-light .heading2 {
    color: var(--text-dark);
}

.section-light .text-muted {
    color: var(--text-muted-dark) !important;
}

/* RED FESTIVE SECTION */
.section-festive-red {
    background: var(--primary);
    color: #ffffff;
    border-top: none;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.section-festive-red::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -80px;
    right: -60px;
}

.hero-btn-primary.text-dark {
    color: #ffffff !important;
}

.section-festive-red .heading2 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-festive-red .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ORANGE FESTIVE SECTION */
.section-festive-orange {
    background: linear-gradient(135deg, var(--royal-orange) 0%, var(--gold-main) 60%, var(--gold-light) 100%);
    color: #ffffff;
    border-top: 2px solid var(--gold-main);
    border-bottom: 2px solid var(--gold-main);
}

.section-festive-orange .heading2 {
    color: #ffffff;
}

.section-festive-orange .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.heading1,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.heading1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--royal-orange) 60%, var(--gold-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading2 {
    font-size: 2.25rem;
    color: var(--text-dark);
}

.heading3 {
    font-size: 1.8rem;
    color: var(--royal-orange);
}

.heading4 {
    font-size: 1.45rem;
}

.heading5 {
    font-size: 1.25rem;
}

.heading6 {
    font-size: 1rem;
}

.pad {
    padding: 100px 0;
    position: relative;
}

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

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

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

.line-gold {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-main), var(--gold-light));
    border-radius: 2px;
    margin: 15px auto 25px auto;
}

.hero-badge,
.premium-badge {
    background: rgba(26, 115, 232, 0.06);
    color: var(--royal-orange);
    border: 1px solid rgba(26, 115, 232, 0.15);
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 12px;
    padding: 6px 18px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-dark .premium-badge {
    color: var(--royal-orange);
    border-color: rgba(26, 115, 232, 0.15);
}

.section-festive-red .premium-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.section-festive-orange .premium-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   NAVIGATION BAR (GLASS STYLES)
   ========================================================================== */
.marqueebg {
    background: linear-gradient(90deg, var(--deep-red), var(--royal-orange));
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(26, 115, 232, 0.15);
}

.marqueebg a {
    color: #ffffff !important;
}

.custom-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, transform 0.3s ease;
}

.custom-header.scrolled {
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.08);
    border-bottom-color: rgba(26, 115, 232, 0.12);
}

.custom-header.header-hidden {
    transform: translateY(-110%);
}

.custom-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container);
    width: 92%;
    margin: 0 auto;
}

.custom-logo {
    max-height: 75px;
    width: auto;
    transition: var(--transition);
}

.custom-header.scrolled .custom-logo {
    max-height: 60px;
}

.custom-nav-list {
    display: flex;
    gap: 26px;
    align-items: center;
}

.custom-nav-item {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17.5px;
    text-transform: none;
    letter-spacing: 0.2px;
}

.custom-nav-item a {
    color: var(--text-dark) !important;
    padding: 8px 0;
    display: inline-block;
}

.custom-nav-item a:hover {
    color: var(--royal-orange) !important;
}

.custom-nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-nav-item:hover::after,
.custom-nav-item.active::after {
    width: 100%;
}

.custom-nav-item.active a {
    color: var(--royal-orange) !important;
}

.custom-cta-btn {
    background: var(--secondary);
    color: #ffffff !important;
    border: none;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.22);
    transition: var(--transition);
    display: inline-block;
}

.custom-cta-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 61, 145, 0.25);
    color: #ffffff !important;
}

.custom-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10002;
}

.custom-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Mobile Slide-in Drawer */
.custom-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #FFFFFF;
    z-index: 10001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--gold-main);
}

.custom-mobile-drawer.open {
    right: 0;
}

.custom-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.custom-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.drawer-logo {
    max-height: 68px;
    width: auto;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--royal-orange);
    cursor: pointer;
}

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

.drawer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-nav-item {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.drawer-nav-item a {
    color: var(--text-dark) !important;
}

.drawer-nav-item.active a {
    color: var(--royal-orange) !important;
}

.drawer-contact-info {
    border-top: 1px solid rgba(26, 115, 232, 0.1);
}

/* ==========================================================================
   CAROUSEL & HERO BANNER (PREMIUM LUXURY)
   ========================================================================== */
.carousel-top-banner {
    position: relative;
    border-bottom: 2px solid var(--gold-main);
    box-shadow: var(--glow-gold);
    overflow: hidden;
}

.carousel-top-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* background: linear-gradient(to top, var(--navy-deep), transparent); */
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    z-index: 5;
    padding: 90px 0;
    background: radial-gradient(circle at 15% 25%, rgba(26, 115, 232, 0.05), transparent 45%),
                radial-gradient(circle at 85% 75%, rgba(26, 115, 232, 0.1), transparent 45%),
                linear-gradient(135deg, #FFFFFF 0%, #F4F8FD 50%, #EAF2FB 100%);
    border-bottom: 2px solid rgba(26, 115, 232, 0.3);
    color: var(--text-dark);
}

.hero-content-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--royal-orange) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(11, 61, 145, 0.15));
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted-dark);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-features {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-feature-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.check-icon {
    background: linear-gradient(135deg, var(--royal-orange), var(--gold-main));
    color: #ffffff;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn-primary {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    letter-spacing: 0.2px;
    background: var(--secondary);
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.25);
    transition: var(--transition);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 61, 145, 0.28);
}

.hero-btn-secondary {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    letter-spacing: 0.2px;
    background: #ffffff;
    color: var(--primary) !important;
    border: 1.5px solid var(--secondary);
    transition: var(--transition);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-secondary:hover {
    background: rgba(26, 115, 232, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.15);
}

/* Glassmorphic 3D Card Showcase */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 0.35);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(11, 61, 145, 0.15), 0 0 40px rgba(26, 115, 232, 0.2);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    max-width: 100%;
}

.hero-image-wrapper:hover {
    transform: translateY(-8px) rotate(-1deg) scale(1.02);
    box-shadow: 0 35px 60px -10px rgba(11, 61, 145, 0.25), 0 0 50px rgba(26, 115, 232, 0.35);
}

.hero-img {
    animation: floatBalloon 6s ease-in-out infinite;
    max-height: 440px;
    position: relative;
    z-index: 2;
    border-radius: 18px;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Elegant Text Overlay over Banner Card */
.hero-img-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(7, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(26, 115, 232, 0.3);
    border-radius: 16px;
    padding: 20px;
    z-index: 3;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.5s ease, background 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-image-wrapper:hover .hero-img-overlay {
    transform: translateY(-5px);
    background: rgba(7, 0, 0, 0.85);
    border-color: var(--gold-main);
}

.overlay-brand-badge {
    background: rgba(255, 255, 255, 0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 10px auto;
    border: 2px solid var(--gold-main);
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.4);
}

.overlay-logo {
    max-height: 35px;
    max-width: 35px;
    object-fit: contain;
}

.overlay-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #FFFFFF, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overlay-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold-main);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.overlay-features-badge {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.overlay-features-badge span {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(26, 115, 232, 0.15);
    border: 1px solid rgba(26, 115, 232, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.overlay-features-badge span i {
    color: var(--gold-light);
}

.glow-effect {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: twinkle 5s ease-in-out infinite;
    pointer-events: none;
}

.hero-decorations .hero-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.decor-sparkle-1 {
    top: 15%;
    left: 8%;
    animation: twinkle 3s infinite;
    font-size: 24px;
    color: var(--gold-light);
}

.decor-sparkle-2 {
    bottom: 20%;
    left: 5%;
    animation: twinkle 4s infinite 1s;
    font-size: 18px;
    color: var(--royal-orange);
}

.decor-sparkle-3 {
    top: 10%;
    right: 45%;
    animation: twinkle 2.5s infinite 0.5s;
    font-size: 20px;
    color: var(--gold-light);
}

.decor-wheel {
    bottom: 15%;
    right: 8%;
    animation: chakraRotate 12s linear infinite;
    font-size: 32px;
    color: rgba(26, 115, 232, 0.35);
}

/* ==========================================================================
   MILESTONES & COUNTERS (LIGHT CUSTOM THEMING)
   ========================================================================== */
.speciality {
    position: relative;
}

.count-box-premium {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-light);
}

.section-dark .count-box-premium {
    background: #ffffff;
    border-color: rgba(26, 115, 232, 0.2);
    box-shadow: var(--shadow-light);
}

.count-box-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-red), var(--royal-orange), var(--gold-main));
    opacity: 0;
    transition: var(--transition);
}

.count-box-premium:hover {
    transform: translateY(-8px);
    border-color: var(--royal-orange);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.08);
}

.section-dark .count-box-premium:hover {
    box-shadow: var(--glow-orange);
}

.count-box-premium:hover::before {
    opacity: 1;
}

.count-box-premium i {
    font-size: 2.25rem;
    color: var(--royal-orange);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.section-dark .count-box-premium i {
    color: var(--royal-orange);
}

.count-box-premium:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--deep-red);
}

.counttext {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--text-dark), var(--royal-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-dark .counttext {
    background: linear-gradient(135deg, var(--text-dark), var(--royal-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bannerhead {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--royal-orange);
}

/* ==========================================================================
   CARDS (LIGHT / DARK SENSITIVE)
   ========================================================================== */
.premium-product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Default Dark Cards inside Section Dark */
.section-dark .premium-product-card {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.section-dark .premium-product-card:hover {
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.08);
}

/* Light Cards inside Section Light */
.section-light .premium-product-card {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.section-light .premium-product-card:hover {
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.08);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--royal-orange) 0%, var(--deep-red) 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 30px;
    z-index: 3;
}

.card-img-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background-color: rgba(2, 6, 23, 0.02);
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 61, 145, 0.9) 0%, rgba(26, 115, 232, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.premium-product-card:hover .card-overlay {
    opacity: 1;
}

.overlay-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--royal-orange), var(--deep-red));
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    transform: translateY(15px);
    transition: var(--transition);
}

.premium-product-card:hover .overlay-btn {
    transform: translateY(0);
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-light .card-title {
    color: var(--text-dark);
    font-weight: 700;
}

.section-dark .card-title {
    color: var(--text-dark);
    font-weight: 700;
}

.card-desc {
    font-size: 14px;
}

.section-light .card-desc {
    color: var(--text-muted-dark);
}

.section-dark .card-desc {
    color: var(--text-muted-dark);
}

.card-footer-info {
    border-top: 1px solid rgba(26, 115, 232, 0.15);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-indicator {
    font-size: 11px;
    font-weight: 700;
    color: var(--royal-orange);
    background: rgba(26, 115, 232, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.section-dark .price-indicator {
    color: var(--royal-orange);
    background: rgba(26, 115, 232, 0.06);
}

.safety-badge {
    font-size: 13px;
    font-weight: 600;
    color: #27ae60;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   WHY CHOOSE US & CREATIVE ICONS
   ========================================================================== */
.iconr i {
    color: #ffffff;
    font-size: 28px;
    background: linear-gradient(135deg, var(--royal-orange), var(--deep-red));
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.section-dark .iconr i {
    box-shadow: var(--shadow-light);
}

.iconr:hover i {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 25px rgba(26, 115, 232, 0.4);
}

/* ==========================================================================
   GLASS CARDS (LIGHT & DARK VERSION)
   ========================================================================== */
.premium-glass-card {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

/* Dark Glass Card */
.section-dark .premium-glass-card {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.section-dark .premium-glass-card:hover {
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.08);
    background: #ffffff;
}

/* Light Glass Card */
.section-light .premium-glass-card {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.section-light .premium-glass-card:hover {
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.08);
}

.iconr-glowing {
    width: 64px;
    height: 64px;
    background: rgba(26, 115, 232, 0.06);
    border: 1px solid rgba(26, 115, 232, 0.15);
    color: var(--royal-orange);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.section-dark .iconr-glowing {
    background: rgba(26, 115, 232, 0.06);
    border-color: rgba(26, 115, 232, 0.15);
    color: var(--royal-orange);
}

.premium-glass-card:hover .iconr-glowing {
    background: linear-gradient(135deg, var(--royal-orange), var(--deep-red));
    color: #ffffff;
    box-shadow: var(--glow-orange);
    transform: scale(1.1);
}

/* ==========================================================================
   TIMELINE (LIGHT & DARK ALIGNED)
   ========================================================================== */
.timeline-premium {
    position: relative;
    padding: 40px 0;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--deep-red), var(--royal-orange), var(--gold-main));
    transform: translateX(-50%);
}

.timeline-item-premium {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item-premium:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item-premium:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-badge-premium {
    position: absolute;
    top: 24px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 3px solid var(--royal-orange);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.section-dark .timeline-badge-premium {
    background: #ffffff;
    border-color: var(--royal-orange);
    box-shadow: var(--glow-orange);
}

.timeline-item-premium:nth-child(odd) .timeline-badge-premium {
    right: -8px;
}

.timeline-item-premium:nth-child(even) .timeline-badge-premium {
    left: -8px;
}

.timeline-item-premium:hover .timeline-badge-premium {
    transform: scale(1.3);
    border-color: var(--deep-red);
    box-shadow: var(--glow-red);
}

.timeline-panel-premium {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.section-dark .timeline-panel-premium {
    background: #ffffff;
    border-color: rgba(26, 115, 232, 0.2);
    box-shadow: var(--shadow-light);
}

.timeline-panel-premium:hover {
    transform: translateY(-5px);
    border-color: var(--royal-orange);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.08);
}

.section-dark .timeline-panel-premium:hover {
    box-shadow: var(--glow-orange);
}

@media (max-width: 767.98px) {
    .timeline-premium::before {
        left: 20px;
    }

    .timeline-item-premium {
        width: 100%;
        text-align: left !important;
        padding-left: 40px !important;
        padding-right: 0 !important;
    }

    .timeline-item-premium:nth-child(even) {
        left: 0;
    }

    .timeline-badge-premium {
        left: 12px !important;
    }
}

/* ==========================================================================
   SAFETY TIP CARDS (NEON GLOW CARDS)
   ========================================================================== */
.docard-premium,
.dontcard-premium {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.section-dark .docard-premium,
.section-dark .dontcard-premium {
    box-shadow: var(--shadow-light);
}

.docard-premium {
    background: #ffffff;
    border: 1px solid rgba(76, 209, 55, 0.35);
}

.section-dark .docard-premium {
    background: #ffffff;
    border-color: rgba(76, 209, 55, 0.2);
}

.dontcard-premium {
    background: #ffffff;
    border: 1px solid rgba(232, 65, 24, 0.35);
}

.section-dark .dontcard-premium {
    background: #ffffff;
    border-color: rgba(232, 65, 24, 0.2);
}

.docard-premium:hover {
    transform: translateY(-8px);
    border-color: #2ecc71;
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.12);
}

.dontcard-premium:hover {
    transform: translateY(-8px);
    border-color: #e74c3c;
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.12);
}

.docard-heading-premium,
.dontcard-heading-premium {
    padding: 22px;
    text-align: center;
    color: #ffffff;
}

.docard-heading-premium {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.dontcard-heading-premium {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.docard-heading-premium h3,
.dontcard-heading-premium h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Emergency contact table styling */
.table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.section-dark .table-premium {
    border-color: rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.table-premium thead th {
    background: var(--navy-blue);
    /* #F4F8FD */
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(26, 115, 232, 0.25);
}

.section-dark .table-premium thead th {
    border-bottom-color: rgba(26, 115, 232, 0.25);
}

.table-premium tbody td {
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(26, 115, 232, 0.15);
    font-size: 14px;
    color: var(--text-dark);
    vertical-align: middle;
}

.section-dark .table-premium tbody td {
    background: #ffffff;
    border-bottom-color: rgba(26, 115, 232, 0.15);
    color: var(--text-dark);
}

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

.table-premium tbody tr:nth-child(even) td {
    background: var(--light-bg-sec);
}

.section-dark .table-premium tbody tr:nth-child(even) td {
    background: var(--light-bg-sec);
}

.table-premium tbody tr:hover td {
    background: rgba(26, 115, 232, 0.02);
}

/* ==========================================================================
   CONTACT PAGE CARDS & INPUTS
   ========================================================================== */
.contact-card-premium {
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.section-light .contact-card-premium {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.section-dark .contact-card-premium {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: var(--shadow-light);
}

.section-light .contact-card-premium:hover {
    border-color: var(--gold-main);
    box-shadow: 0 12px 25px rgba(26, 115, 232, 0.08);
}

.section-dark .contact-card-premium:hover {
    border-color: var(--gold-main);
    box-shadow: 0 12px 25px rgba(26, 115, 232, 0.08);
}

.contact-card-premium .icon-wrapper {
    background: rgba(26, 115, 232, 0.06);
    color: var(--royal-orange);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(26, 115, 232, 0.15);
}

.section-dark .contact-card-premium .icon-wrapper {
    background: rgba(26, 115, 232, 0.06);
    color: var(--royal-orange);
    border-color: rgba(26, 115, 232, 0.15);
}

.contact-card-premium:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--royal-orange), var(--deep-red));
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--glow-orange);
}

.form-control-premium {
    background: rgba(2, 6, 23, 0.02);
    border: 1px solid rgba(26, 115, 232, 0.3);
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    width: 100%;
}

.section-dark .form-control-premium {
    background: rgba(2, 6, 23, 0.02);
    border-color: rgba(26, 115, 232, 0.3);
    color: var(--text-dark);
}

.form-control-premium::placeholder {
    color: #94a3b8;
}

.form-control-premium:focus {
    background: #ffffff;
    border-color: var(--royal-orange);
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.15);
    outline: none;
}

.section-dark .form-control-premium:focus {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.15);
}

/* Success Modal Overlay */
.success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-box {
    background: var(--navy-blue);
    border: 2px solid var(--gold-main);
    border-radius: 24px;
    padding: 45px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: var(--glow-gold);
    animation: floatBalloon 4s ease-in-out infinite;
}

/* ==========================================================================
   PAGE BANNER (PREMIUM SPLASH BANNER)
   ========================================================================== */
.page-banner-premium {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(26, 115, 232, 0.05) 0%, transparent 80%),
        linear-gradient(180deg, #FFFFFF 0%, var(--navy-blue) 100%);
    padding: 100px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(26, 115, 232, 0.15);
}

.page-banner-premium h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--royal-orange) 60%, var(--gold-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.page-banner-premium p {
    font-size: 16px;
    color: var(--text-muted-dark);
    max-width: 600px;
    margin: 15px auto 0 auto;
}

/* ==========================================================================
   FOOTER & BOTTOM UTILITIES
   ========================================================================== */
.custom-footer {
    background: linear-gradient(180deg, #0B3D91 0%, #072C6B 100%);
    color: #D6E4F7;
    padding: 80px 0 40px 0;
    position: relative;
    border-top: 2px solid var(--gold-main);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.custom-footer a {
    color: #D6E4F7 !important;
}

.custom-footer a:hover {
    color: var(--gold-main) !important;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-main);
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-main);
}

.footer-desc {
    font-size: 14px;
    color: #D6E4F7;
    margin-top: 20px;
    margin-bottom: 25px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li {
    font-size: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #D6E4F7;
}

.footer-contact-item i {
    color: var(--gold-main);
    font-size: 16px;
    margin-top: 3px;
}

.footer-divider {
    border-top: 1px solid rgba(26, 115, 232, 0.1);
    margin: 40px 0 25px 0;
}

.footer-bottom-text {
    font-size: 12px;
    color: #D6E4F7;
    margin-bottom: 15px;
}

.footer-copyright-bar {
    font-size: 13px;
    color: #D6E4F7;
}

.footer-copyright-bar a {
    color: var(--gold-main) !important;
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--gold-main) !important;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 155px;
    right: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-orange), var(--deep-red));
    color: #ffffff !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--glow-orange);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(26, 115, 232, 0.8);
}

.fixed {
    position: fixed !important;
    z-index: 1040 !important;
}

.point {
    bottom: 20px;
    left: 20px;
}

.point1 {
    bottom: 85px;
    left: 20px;
}

.point2 {
    bottom: 20px;
    right: 20px;
}

.priceicn {
    width: 54px;
    height: 54px;
    transition: var(--transition);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.priceicn2 {
    width: 110px;
    height: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.priceicn:hover,
.priceicn2:hover {
    transform: scale(1.1) rotate(4deg);
}

/* ==========================================================================
   RESPONSIVENESS & ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991.98px) {
    .custom-logo {
        max-height: 62px;
    }

    .custom-nav-menu {
        display: none;
    }

    .custom-menu-toggle {
        display: flex;
    }

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

    .hero-img {
        max-height: 380px;
        margin-top: 40px;
    }

    .pad {
        padding: 60px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .custom-nav-list {
        gap: 16px;
    }

    .custom-nav-item {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .custom-logo {
        max-height: 54px;
    }

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

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-img {
        max-height: 280px;
    }

    .heading1 {
        font-size: 2.25rem;
    }

    .heading2 {
        font-size: 1.8rem;
    }

    .heading3 {
        font-size: 1.5rem;
    }

    .page-banner-premium h1 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   COMBO BOX SPECIAL OFFER CARDS
   ========================================================================== */
.combo-box-card {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.25);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.combo-box-card:hover {
    transform: translateY(-8px);
    border-color: var(--royal-orange);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.08);
}

.combo-box-card.featured {
    border-color: var(--gold-main);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.15);
}

.combo-box-card.featured::after {
    content: "POPULAR";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--royal-orange), var(--deep-red));
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 30px;
    letter-spacing: 1px;
    z-index: 2;
}

.combo-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--royal-orange);
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 10px;
}

.combo-box-card:hover .combo-icon-wrapper i {
    transform: scale(1.15);
    color: var(--deep-red);
}

.combo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.combo-desc {
    font-size: 13px;
    line-height: 1.6;
    margin: 12px 0 24px 0;
    color: var(--text-muted-dark);
}

.combo-badge-price {
    font-size: 10px;
    font-weight: 700;
    color: var(--royal-orange);
    background: rgba(26, 115, 232, 0.06);
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    align-self: center;
}

.combo-box-card.featured .combo-badge-price {
    color: var(--gold-dark);
    background: rgba(26, 115, 232, 0.12);
}

/* ==========================================================================
   CELEBRATION AND SAFETY SECTION
   ========================================================================== */
.celebration-img-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.celebration-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(26, 115, 232, 0.08);
}

.celebration-img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.celebration-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(26, 115, 232, 0.15);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.celebration-list-item:hover {
    transform: translateX(8px);
    border-color: var(--royal-orange);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.08);
}

.celebration-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.06);
    color: var(--royal-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.celebration-list-item:hover .celebration-icon {
    background: var(--royal-orange);
    color: #ffffff;
    transform: scale(1.1);
}

.celebration-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.celebration-content p {
    font-size: 13px;
    color: var(--text-muted-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   2026 BLUE + WHITE SYSTEM ADDITIONS
   ========================================================================== */
.site-section {
    padding: 88px 0;
    position: relative;
}

.site-section.tight {
    padding: 64px 0;
}

.container {
    max-width: var(--container);
}

.eyebrow {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 12px;
    padding: 6px 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker {
    margin-bottom: 10px;
}

.section-lead {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 640px;
}

.section-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.35rem;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 8px 0 14px;
}

.line-gold {
    width: 56px;
    height: 3px;
    background: var(--secondary);
    border-radius: 99px;
    margin: 12px auto 22px auto;
}

.line-gold.ml-0 {
    margin-left: 0;
}

.premium-badge,
.hero-badge {
    background: var(--accent-soft);
    color: var(--primary);
    border: 1px solid var(--border);
}

.custom-nav-item {
    text-transform: none;
    letter-spacing: 0.2px;
    font-size: 17.5px;
    font-weight: 600;
}

.custom-nav-item::after {
    height: 2px;
    background: var(--secondary);
    border-radius: 99px;
}

.custom-nav-list .pricelist_pdf {
    background: transparent;
    color: var(--primary) !important;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
}

.custom-nav-list .pricelist_pdf:hover,
.drawer-nav-item .pricelist_pdf:hover {
    background: var(--accent-soft);
    color: var(--primary) !important;
}

.drawer-logo {
    max-height: 68px;
}

.drawer-nav-item {
    text-transform: none;
}

/* Home hero */
.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(26, 115, 232, 0.12), transparent 42%),
        radial-gradient(circle at 88% 12%, rgba(11, 61, 145, 0.08), transparent 40%),
        linear-gradient(180deg, #FFFFFF 0%, #F4F8FD 100%);
    padding: 72px 0 64px;
}

.home-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(26, 115, 232, 0.12);
    border-radius: 48px;
    right: -120px;
    bottom: -140px;
    transform: rotate(18deg);
    pointer-events: none;
}

.home-hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--text);
    margin: 14px 0 18px;
}

.home-hero-title span {
    color: var(--secondary);
}

.home-hero-copy {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 28px;
}

.hero-visual-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    padding: 18px;
    position: relative;
}

.hero-visual-panel img {
    width: 100%;
    border-radius: 16px;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.hero-stat-chip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-light);
    border-radius: 14px;
    padding: 12px 14px;
}

.hero-stat-chip.left {
    left: -18px;
    bottom: 28px;
}

.hero-stat-chip.right {
    right: -12px;
    top: 28px;
}

.hero-stat-chip strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 18px;
}

.hero-stat-chip span {
    font-size: 12px;
    color: var(--text-muted);
}

.trust-strip {
    background: #fff;
    margin-top: -36px;
    position: relative;
    z-index: 3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-card,
.info-card,
.value-card,
.step-card,
.faq-item,
.contact-quick-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover,
.info-card:hover,
.value-card:hover,
.step-card:hover,
.contact-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(26, 115, 232, 0.28);
}

.trust-card {
    padding: 28px 22px;
    text-align: left;
}

.icon-tile {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.trust-card h3,
.value-card h3,
.info-card h3,
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.trust-card p,
.value-card p,
.info-card p,
.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.page-banner-premium {
    background:
        radial-gradient(circle at 80% 20%, rgba(26, 115, 232, 0.1), transparent 42%),
        linear-gradient(180deg, #FFFFFF 0%, #F4F8FD 100%);
    padding: 72px 0 48px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.page-banner-premium .container {
    text-align: left;
}

.page-banner-premium h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: none;
    -webkit-text-fill-color: inherit;
    color: var(--text);
    filter: none;
}

.page-crumb {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.page-crumb a {
    color: var(--secondary);
}

.stats-band {
    background: var(--primary);
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.stats-band .stat-num,
.stats-band h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.stats-band p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    font-size: 14px;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item .faq-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 18px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item .faq-btn i {
    color: var(--secondary);
    transition: transform 0.2s ease;
}

.faq-item .faq-btn[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-item .faq-body {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 15px;
}

.step-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    padding: 28px 22px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
    font-family: var(--font-heading);
}

.numbered-tip {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-card);
}

.numbered-tip .n {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

.safety-notice {
    background: #F8FBFF;
    border: 1px solid #C9DDF5;
    border-left: 4px solid var(--secondary);
    border-radius: 14px;
    padding: 22px 24px;
}

.safety-notice h3 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.map-frame {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.form-control-premium:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12);
}

.success-overlay {
    background: rgba(15, 23, 42, 0.45);
}

.success-box {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    animation: none;
}

.quick-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-cta-row a {
    min-height: 48px;
}

.custom-footer {
    border-top: none;
    box-shadow: none;
}

.custom-footer .img-fluid {
    max-height: 72px !important;
    background: #fff;
    border-radius: 12px;
    padding: 6px 10px;
}

.footer-section-title {
    color: #fff;
}

.footer-section-title::after {
    background: #7EB6F6;
}

.carousel-top-banner {
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .trust-grid,
    .step-row {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stat-chip {
        display: none;
    }

    .site-section {
        padding: 64px 0;
    }

    .page-banner-premium {
        text-align: left;
        padding: 48px 0 36px;
    }
}

@media (max-width: 575.98px) {
    .trust-grid,
    .step-row {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 48px 0 40px;
    }

    .hero-cta-group .hero-btn-primary,
    .hero-cta-group .hero-btn-secondary {
        width: 100%;
    }
}

/* ==========================================================================
   HOMEPAGE REDESIGN — NEW MODERN SECTIONS
   ========================================================================== */

/* Promo Dhamaka Banner */
.promo-dhamaka-banner {
    background: linear-gradient(135deg, #0B3D91 0%, #1A73E8 60%, #3B82F6 100%);
    border-radius: 20px;
    padding: 44px 36px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(11, 61, 145, 0.22);
}

.promo-dhamaka-banner::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-dhamaka-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-dhamaka-badge {
    background: #FFD700;
    color: #0B3D91;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    margin-bottom: 16px;
}

.promo-dhamaka-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 14px;
}

.promo-dhamaka-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.promo-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-festive-white {
    background: #ffffff;
    color: #0B3D91 !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-festive-white:hover {
    background: #FFD700;
    color: #0B3D91 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
}

.btn-festive-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-festive-outline:hover {
    background: #ffffff;
    color: #0B3D91 !important;
    transform: translateY(-2px);
}

.btn-festive-whatsapp {
    background: #25D366;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-festive-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    color: #ffffff !important;
}

/* Category Grid */
.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card-modern {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(26, 115, 232, 0.3);
}

.category-img-wrapper {
    position: relative;
    height: 200px;
    background: #F4F8FD;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.category-img-wrapper img {
    max-height: 160px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.category-badge-chip {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #0B3D91;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(11, 61, 145, 0.2);
}

.category-badge-chip.hot {
    background: #E53E3E;
}

.category-badge-chip.green {
    background: #059669;
}

.category-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.category-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.category-action-link {
    color: var(--secondary);
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.category-card-modern:hover .category-action-link {
    color: var(--primary);
    transform: translateX(4px);
}

/* 4-Step Process */
.process-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px 22px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
}

.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(26, 115, 232, 0.35);
}

.step-indicator {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 14px rgba(26, 115, 232, 0.25);
}

.process-step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.process-step-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}

/* Combo Packs Grid */
.combo-packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.combo-pack-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition);
}

.combo-pack-card.popular {
    border: 2px solid var(--secondary);
    box-shadow: 0 12px 28px rgba(26, 115, 232, 0.16);
}

.combo-pack-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.combo-featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF6B00, #FFA500);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.35);
    white-space: nowrap;
}

.combo-header {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border);
    margin-bottom: 16px;
}

.combo-box-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;
}

.combo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.combo-items-badge {
    background: rgba(26, 115, 232, 0.08);
    color: var(--secondary);
    font-weight: 700;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 50px;
    display: inline-block;
}

.combo-items-list {
    margin-bottom: 20px;
    padding-left: 0;
}

.combo-items-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.combo-items-list li i {
    color: #10B981;
    font-size: 14px;
    flex-shrink: 0;
}

.combo-btn {
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 16px;
    border-radius: 10px;
    display: inline-block;
    transition: var(--transition);
}

.combo-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.28);
    color: #ffffff !important;
}

/* Brand Grid */
.brand-showcase-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.brand-tile {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 22px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 72px;
    transition: var(--transition);
}

.brand-tile img {
    max-height: 44px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(40%);
    transition: var(--transition);
}

.brand-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(26, 115, 232, 0.3);
}

.brand-tile:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Delivery Hubs */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.delivery-hub-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.delivery-state-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.hub-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hub-pill-tag {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
    font-size: 12.5px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-block;
}

/* Payment Section */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.payment-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 26px 22px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}

.payment-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.payment-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.payment-box h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.payment-box p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 26px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(26, 115, 232, 0.3);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 18px;
}

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

.author-avatar-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.author-location {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Safety Do's & Don'ts */
.safety-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.safety-column-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.safety-column-card.dos {
    border-top: 4px solid #10B981;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.safety-column-card.donts {
    border-top: 4px solid #EF4444;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.safety-col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.safety-column-card.dos .safety-col-title {
    color: #065F46;
}

.safety-column-card.donts .safety-col-title {
    color: #991B1B;
}

.safety-points-list {
    padding-left: 0;
    margin: 0;
}

.safety-point-row {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px dashed var(--border);
}

.safety-point-row:last-child {
    border-bottom: none;
}

.safety-point-row i {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.safety-column-card.dos .safety-point-row i {
    color: #10B981;
}

.safety-column-card.donts .safety-point-row i {
    color: #EF4444;
}

/* Media Queries for New Sections */
@media (max-width: 991.98px) {
    .category-showcase-grid,
    .delivery-grid,
    .payment-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step-grid,
    .combo-packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-dhamaka-banner {
        padding: 32px 24px;
    }
}

@media (max-width: 767.98px) {
    .safety-split-grid {
        grid-template-columns: 1fr;
    }

    .promo-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .promo-cta-group a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .category-showcase-grid,
    .delivery-grid,
    .payment-grid,
    .testimonials-grid,
    .process-step-grid,
    .combo-packs-grid {
        grid-template-columns: 1fr;
    }

    .brand-tile {
        min-width: 110px;
        height: 62px;
        padding: 10px 16px;
    }
}