@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@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   GLOBAL RESET & LUXURY DESIGN SYSTEM
   ========================================================================== */
:root {
    --navy-deep: #020617;
    /* Primary dark background */
    --navy-blue: #0b1329;
    /* Secondary dark background */
    --navy-light: #1c2541;
    /* Active dark border/bg */
    --gold-main: #dfb76c;
    /* Metallic gold primary */
    --gold-light: #f3d075;
    /* Glowing gold accent */
    --gold-dark: #8c6221;
    /* Deep dark gold */
    --deep-red: #800f2f;
    /* Luxury Deep Red */
    --royal-orange: #ff7b00;
    /* Royal Orange */

    /* Light Theme Settings */
    --light-bg: #fdfbf7;
    /* Soft luxury cream */
    --light-bg-sec: #f5f2e9;
    /* Secondary cream */
    --text-dark: #0f172a;
    /* Slate 900 */
    --text-muted-dark: #475569;
    /* Slate 600 */

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Glow shadows */
    --glow-gold: 0 0 20px rgba(223, 183, 108, 0.35);
    --glow-orange: 0 0 20px rgba(255, 123, 0, 0.35);
    --glow-red: 0 0 20px rgba(128, 15, 47, 0.35);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 10px 30px rgba(140, 98, 33, 0.06);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--navy-deep);
    color: #f8fafc;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

::selection {
    background-color: var(--gold-main);
    color: var(--navy-deep);
}

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(223, 183, 108, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(223, 183, 108, 0.8);
    }
}

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

.pattern-dots-light {
    background-image: radial-gradient(rgba(140, 98, 33, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.pattern-diagonal-dark {
    background: repeating-linear-gradient(45deg, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.5) 10px, rgba(11, 19, 41, 0.2) 10px, rgba(11, 19, 41, 0.2) 20px);
}

.pattern-diagonal-light {
    background: repeating-linear-gradient(45deg, rgba(253, 251, 247, 0.8), rgba(253, 251, 247, 0.8) 10px, rgba(245, 242, 233, 0.4) 10px, rgba(245, 242, 233, 0.4) 20px);
}

.pattern-geometric-light {
    background-image:
        linear-gradient(30deg, #f5f2e9 12%, transparent 12.5%, transparent 87%, #f5f2e9 87.5%, #f5f2e9),
        linear-gradient(150deg, #f5f2e9 12%, transparent 12.5%, transparent 87%, #f5f2e9 87.5%, #f5f2e9),
        linear-gradient(30deg, #f5f2e9 12%, transparent 12.5%, transparent 87%, #f5f2e9 87.5%, #f5f2e9),
        linear-gradient(150deg, #f5f2e9 12%, transparent 12.5%, transparent 87%, #f5f2e9 87.5%, #f5f2e9);
    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(--navy-deep);
    color: #f1f5f9;
}

.section-dark .heading2 {
    color: #ffffff;
}

.section-dark .text-muted {
    color: #94a3b8 !important;
}

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

.section-light .heading2 {
    color: var(--navy-deep);
}

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

/* RED FESTIVE SECTION */
.section-festive-red {
    background: linear-gradient(135deg, #4d071a 0%, #800f2f 60%, #a4133c 100%);
    color: #ffffff;
    border-top: 2px solid var(--gold-main);
    border-bottom: 2px solid var(--gold-main);
}

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

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

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

.section-festive-orange .heading2 {
    color: var(--navy-deep);
}

.section-festive-orange .text-muted {
    color: rgba(2, 6, 23, 0.85) !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, #ffffff 0%, #dfb76c 60%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading2 {
    font-size: 2.25rem;
}

.heading3 {
    font-size: 1.8rem;
    color: var(--gold-main);
}

.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;
}

.premium-badge {
    background: rgba(223, 183, 108, 0.08);
    color: var(--gold-dark);
    border: 1px solid rgba(223, 183, 108, 0.25);
    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(--gold-light);
    border-color: rgba(223, 183, 108, 0.2);
}

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

.section-festive-orange .premium-badge {
    background: rgba(2, 6, 23, 0.08);
    color: var(--navy-deep);
    border-color: rgba(2, 6, 23, 0.2);
}

/* ==========================================================================
   NAVIGATION BAR (GLASS STYLES)
   ========================================================================== */
.marqueebg {
    background: linear-gradient(90deg, var(--navy-blue), var(--navy-light));
    color: var(--gold-light);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(223, 183, 108, 0.15);
}

.marqueebg a {
    color: var(--gold-light) !important;
}

.custom-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(223, 183, 108, 0.12);
    padding: 18px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.custom-header.scrolled {
    padding: 10px 0;
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid rgba(223, 183, 108, 0.25);
}

.custom-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

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

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

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

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

.custom-nav-item a {
    color: #e2e8f0 !important;
    padding: 8px 0;
    display: inline-block;
}

.custom-nav-item a:hover {
    color: var(--gold-main) !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(--gold-light) !important;
}

.custom-cta-btn {
    background: linear-gradient(135deg, #f3d075 0%, #dfb76c 50%, #8c6221 100%);
    color: var(--navy-deep) !important;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: var(--glow-gold);
    transition: var(--transition);
    display: inline-block;
}

.custom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(223, 183, 108, 0.7);
}

.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(--gold-main);
    transition: var(--transition);
}

/* Mobile Slide-in Drawer */
.custom-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--navy-blue);
    z-index: 10001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    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.6);
    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(223, 183, 108, 0.1);
}

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

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gold-main);
    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: #e2e8f0 !important;
}

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

.drawer-contact-info {
    border-top: 1px solid rgba(223, 183, 108, 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: 70px 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 123, 0, 0.08), transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(128, 15, 47, 0.08), transparent 45%),
        linear-gradient(180deg, #020617 0%, #0b1329 100%);
    border-bottom: 1px solid rgba(223, 183, 108, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 10%, #dfb76c 60%, #ff7b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.hero-desc {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.hero-feature-item {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.check-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
    color: var(--navy-deep);
    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;
}

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

.hero-btn-primary {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f3d075 0%, #dfb76c 50%, #8c6221 100%);
    color: var(--navy-deep) !important;
    box-shadow: var(--glow-gold);
    transition: var(--transition);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(223, 183, 108, 0.7);
}

.hero-btn-secondary {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: #ffffff !important;
    border: 2px solid var(--gold-main);
    transition: var(--transition);
}

.hero-btn-secondary:hover {
    background: rgba(223, 183, 108, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.hero-img {
    animation: floatBalloon 6s ease-in-out infinite;
    max-height: 480px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    border-radius: 20px;
}

.glow-effect {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(223, 183, 108, 0.3) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: twinkle 5s ease-in-out infinite;
}

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

.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(223, 183, 108, 0.35);
}

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

.count-box-premium {
    background: #ffffff;
    border: 1px solid rgba(223, 183, 108, 0.35);
    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: rgba(11, 19, 41, 0.65);
    border-color: rgba(223, 183, 108, 0.15);
    box-shadow: var(--shadow-premium);
}

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

.count-box-premium:hover {
    transform: translateY(-8px);
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(140, 98, 33, 0.12);
}

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

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

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

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

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

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

.section-dark .counttext {
    background: linear-gradient(135deg, #ffffff, var(--gold-main));
    -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: var(--navy-blue);
    border: 1px solid rgba(223, 183, 108, 0.15);
}

.section-dark .premium-product-card:hover {
    border-color: var(--gold-main);
    box-shadow: var(--glow-gold);
}

/* Light Cards inside Section Light */
.section-light .premium-product-card {
    background: #ffffff;
    border: 1px solid rgba(223, 183, 108, 0.35);
    box-shadow: var(--shadow-light);
}

.section-light .premium-product-card:hover {
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(140, 98, 33, 0.12);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--royal-orange) 0%, #d00000 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.05);
}

.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(2, 6, 23, 0.9) 0%, rgba(223, 183, 108, 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(--gold-light), var(--gold-main));
    color: var(--navy-deep) !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(--navy-deep);
    font-weight: 700;
}

.section-dark .card-title {
    color: #ffffff;
    font-weight: 700;
}

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

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

.section-dark .card-desc {
    color: #94a3b8;
}

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

.price-indicator {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    background: rgba(140, 98, 33, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.section-dark .price-indicator {
    color: var(--gold-main);
    background: rgba(223, 183, 108, 0.1);
}

.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: var(--navy-deep);
    font-size: 28px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
    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(--glow-gold);
}

.iconr:hover i {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 25px rgba(223, 183, 108, 0.8);
}

/* ==========================================================================
   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: rgba(11, 19, 41, 0.65);
    border: 1px solid rgba(223, 183, 108, 0.15);
    box-shadow: var(--shadow-premium);
}

.section-dark .premium-glass-card:hover {
    border-color: rgba(223, 183, 108, 0.35);
    box-shadow: var(--glow-gold);
    background: rgba(11, 19, 41, 0.85);
}

/* Light Glass Card */
.section-light .premium-glass-card {
    background: #ffffff;
    border: 1px solid rgba(223, 183, 108, 0.3);
    box-shadow: var(--shadow-light);
}

.section-light .premium-glass-card:hover {
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(140, 98, 33, 0.12);
}

.iconr-glowing {
    width: 64px;
    height: 64px;
    background: rgba(140, 98, 33, 0.08);
    border: 1px solid rgba(140, 98, 33, 0.18);
    color: var(--gold-dark);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.section-dark .iconr-glowing {
    background: rgba(223, 183, 108, 0.08);
    border-color: rgba(223, 183, 108, 0.2);
    color: var(--gold-main);
}

.premium-glass-card:hover .iconr-glowing {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
    color: var(--navy-deep);
    box-shadow: var(--glow-gold);
    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(--gold-dark), var(--gold-main), var(--royal-orange));
    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: var(--light-bg);
    border: 3px solid var(--gold-dark);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.section-dark .timeline-badge-premium {
    background: var(--navy-deep);
    border-color: var(--gold-main);
    box-shadow: var(--glow-gold);
}

.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(--royal-orange);
    box-shadow: var(--glow-orange);
}

.timeline-panel-premium {
    background: #ffffff;
    border: 1px solid rgba(223, 183, 108, 0.35);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.section-dark .timeline-panel-premium {
    background: var(--navy-blue);
    border-color: rgba(223, 183, 108, 0.15);
    box-shadow: var(--shadow-premium);
}

.timeline-panel-premium:hover {
    transform: translateY(-5px);
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(140, 98, 33, 0.1);
}

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

@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-premium);
}

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

.section-dark .docard-premium {
    background: var(--navy-blue);
    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: var(--navy-blue);
    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(140, 98, 33, 0.25);
    box-shadow: var(--shadow-light);
}

.section-dark .table-premium {
    border-color: rgba(223, 183, 108, 0.15);
    box-shadow: var(--shadow-premium);
}

.table-premium thead th {
    background: var(--navy-blue);
    color: var(--gold-main);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(140, 98, 33, 0.25);
}

.section-dark .table-premium thead th {
    border-bottom-color: rgba(223, 183, 108, 0.15);
}

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

.section-dark .table-premium tbody td {
    background: rgba(11, 19, 41, 0.45);
    border-bottom-color: rgba(223, 183, 108, 0.1);
    color: #e2e8f0;
}

.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: rgba(2, 6, 23, 0.3);
}

.table-premium tbody tr:hover td {
    background: rgba(223, 183, 108, 0.05);
}

/* ==========================================================================
   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(223, 183, 108, 0.35);
    box-shadow: var(--shadow-light);
}

.section-dark .contact-card-premium {
    background: var(--navy-blue);
    border: 1px solid rgba(223, 183, 108, 0.15);
    box-shadow: var(--shadow-premium);
}

.section-light .contact-card-premium:hover {
    border-color: var(--gold-main);
    box-shadow: 0 12px 25px rgba(140, 98, 33, 0.1);
}

.section-dark .contact-card-premium:hover {
    border-color: var(--gold-main);
    box-shadow: var(--glow-gold);
}

.contact-card-premium .icon-wrapper {
    background: rgba(140, 98, 33, 0.08);
    color: var(--gold-dark);
    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(140, 98, 33, 0.18);
}

.section-dark .contact-card-premium .icon-wrapper {
    background: rgba(223, 183, 108, 0.1);
    color: var(--gold-main);
    border-color: rgba(223, 183, 108, 0.2);
}

.contact-card-premium:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
    color: var(--navy-deep);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--glow-gold);
}

.form-control-premium {
    background: rgba(2, 6, 23, 0.03);
    border: 1px solid rgba(140, 98, 33, 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.6);
    border-color: rgba(223, 183, 108, 0.25);
    color: #ffffff;
}

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

.form-control-premium:focus {
    background: #ffffff;
    border-color: var(--gold-main);
    box-shadow: 0 0 15px rgba(223, 183, 108, 0.35);
    outline: none;
}

.section-dark .form-control-premium:focus {
    background: rgba(2, 6, 23, 0.85);
    box-shadow: var(--glow-gold);
}

/* 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(255, 123, 0, 0.05) 0%, transparent 80%),
        linear-gradient(180deg, #020617 0%, var(--navy-blue) 100%);
    padding: 100px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(223, 183, 108, 0.15);
}

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

.page-banner-premium p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 15px auto 0 auto;
}

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

.custom-footer a {
    color: #cbd5e1 !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: #94a3b8;
    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: #cbd5e1;
}

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

.footer-divider {
    border-top: 1px solid rgba(223, 183, 108, 0.1);
    margin: 40px 0 25px 0;
}

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

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

.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(223, 183, 108, 0.08);
    border: 1px solid rgba(223, 183, 108, 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: var(--navy-deep) !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(--gold-light), var(--gold-main));
    color: var(--navy-deep) !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--glow-gold);
    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(223, 183, 108, 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: 110px;
    }

    .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 (max-width: 575.98px) {
    .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;
    }
}