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

/* ==========================================================================
   GLOBAL RESET & FESTIVE VARIABLES
   ========================================================================== */
:root {
    --primary: #D32F2F;
    /* Premium Red */
    --secondary: #FFC107;
    /* Golden Yellow */
    --accent-orange: #FF5722;
    --accent-purple: #1A0E30;
    --accent-sky: #03A9F4;
    --cream-bg: #FFFDF7;
    /* Warm White */
    --card-bg: #FFFFFF;
    --section-bg: #FFF8E1;
    --text-main: #2C2C2C;
    --text-secondary: #666666;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Premium Selection Colors */
::selection {
    background-color: var(--secondary);
    color: var(--primary);
}

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

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

/* Luxury Sparkle Background Pattern */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 179, 0, 0.035) 1px, transparent 1px),
        radial-gradient(circle, rgba(211, 26, 26, 0.02) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    pointer-events: none;
    z-index: -1;
}

/* Sparkles, Fireworks and Twinkles Animation */
@keyframes floatBalloon {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }

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

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

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

@keyframes fireworkGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(229, 57, 53, 0.8));
    }
}

@keyframes twinkle {

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

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

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.heading1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
}

.heading2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.heading3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.heading4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.heading5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.heading6 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

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

.wrdbrk {
    white-space: pre;
}

.fullpad {
    padding: 0 !important;
    margin: 0 !important;
}

.smallfnt {
    font-size: 14px;
}

/* Custom Taglines & Divider Lines */
.line {
    border-bottom: 3px dashed var(--secondary);
    margin: 30px 0;
    position: relative;
}

.line::after {
    content: "⚡";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream-bg);
    padding: 0 10px;
    font-size: 16px;
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.marqueebg {
    background: linear-gradient(90deg, var(--accent-orange), var(--primary));
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-top-bg {
    background: linear-gradient(135deg, #FFF, var(--cream-bg));
    border-bottom: 2px solid rgba(229, 57, 53, 0.1);
}

.logo {
    width: 160px;
    filter: drop-shadow(0 4px 8px rgba(229, 57, 53, 0.1));
    transition: var(--transition);
    animation: floatBalloon 4s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.top-icn-fnt {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.clr1 {
    color: var(--primary) !important;
}

.clr-blue {
    color: var(--accent-purple) !important;
}

/* Sticky & Cartoon Navbar */
.nav-bar {
    padding: 0 60px;
    position: relative;
    top: -25px;
    z-index: 1000;
}

.navbg {
    background: linear-gradient(135deg, var(--primary) 0%, #D32F2F 100%) !important;
    border: 3px solid var(--secondary);
    border-radius: 50px !important;
    padding: 8px 30px !important;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.25) !important;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link {
    font-family: var(--font-heading);
    color: #FFF !important;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 18px !important;
    border-radius: 30px;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active>.nav-link {
    color: var(--secondary) !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

.nav-sticky {
    position: fixed;
    top: 15px;
    left: 5%;
    width: 90%;
    padding: 0 !important;
    z-index: 1050;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================================================
   CAROUSEL & HERO BANNER
   ========================================================================== */
.carousel-top-banner {
    margin-top: -45px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 6px solid var(--secondary);
}

/* ==========================================================================
   WELCOME & GENERAL CONTENT
   ========================================================================== */
.welcome-sec {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    border: 4px solid var(--secondary);
    box-shadow: 0 12px 0 rgba(255, 193, 7, 0.15);
}

.welcome-img {
    animation: floatBalloon 5s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   FEATURED & TRENDING PRODUCTS (CARTOON PORTFOLIO)
   ========================================================================== */
.nio-dia-portfolio-img-text {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 24px;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.15);
    transition: var(--transition);
}

.nio-dia-portfolio-img-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.25);
    border-color: var(--primary);
}

.nio-dia-portfolio-img img {
    transition: transform 0.6s ease;
    width: 100%;
}

.nio-dia-portfolio-img-text:hover .nio-dia-portfolio-img img {
    transform: scale(1.08);
}

.nio-dia-portfolio-img-text::before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: all 0.4s ease;
    background: linear-gradient(to top, rgba(229, 57, 53, 0.9) 0%, rgba(255, 193, 7, 0.4) 100%);
    z-index: 1;
}

.nio-dia-portfolio-img-text:hover::before {
    opacity: 1;
}

.nio-dia-portfolio-img-text .nio-dia-portfolio-text {
    left: 0;
    width: 100%;
    opacity: 0;
    color: #fff;
    bottom: -20px;
    position: absolute;
    text-align: center;
    padding: 20px;
    transition: all 0.4s ease;
    z-index: 2;
}

.nio-dia-portfolio-img-text:hover .nio-dia-portfolio-text {
    opacity: 1;
    bottom: 0px;
}

.nio-dia-portfolio-img-text .nio-dia-portfolio-text h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SPECIALTIES & COUNTER SECTION
   ========================================================================== */
.speciality {
    background: linear-gradient(135deg, rgba(26, 14, 48, 0.88) 0%, rgba(211, 26, 26, 0.85) 100%), url("../images/newparallax.jpg") fixed center/cover no-repeat;
    position: relative;
    border-radius: 40px;
    margin: 40px 15px;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.speciality::before {
    display: none;
    /* overrides legacy dark overlay */
}

.count-box {
    padding: 30px 20px;
    border-radius: 24px;
    background: #FFF;
    border: 3px solid var(--secondary);
    box-shadow: 0 8px 0 rgba(255, 193, 7, 0.2);
    transition: var(--transition);
}

.count-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
}

.count-box i {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 54px;
    border: 3px solid var(--secondary);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.counttext {
    color: var(--primary) !important;
    font-size: 42px;
    font-weight: 700;
}

.bannerhead {
    color: var(--accent-orange) !important;
    font-size: 36px;
    font-weight: 700;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.bg-light {
    background-color: #FFF !important;
    border-top: 4px dashed var(--secondary);
    border-bottom: 4px dashed var(--secondary);
}

.iconr i {
    color: #FFF;
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary));
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    border: 3px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
    transition: var(--transition);
}

.iconr:hover i {
    transform: rotate(20deg) scale(1.1);
}

/* ==========================================================================
   PARALLAX / MIDDLE BANNER
   ========================================================================== */
.parallax {
    background: linear-gradient(rgba(229, 57, 53, 0.7), rgba(255, 193, 7, 0.7)), url("../images/parallax.webp") fixed center/cover no-repeat;
    border-radius: 40px;
    margin: 40px 15px;
    border: 4px solid var(--secondary);
}

.parallax::before {
    display: none;
}

.headfnt {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   BUTTONS & CARDS DESIGN (CARTOON / PREMIUM STYLE)
   ========================================================================== */
.btn1,
.shop_btn1 {
    font-family: var(--font-heading);
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: #FFF !important;
    border: 3px solid var(--secondary) !important;
    border-radius: 50px;
    box-shadow: 0 6px 0 rgba(255, 193, 7, 0.6), 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
}

.btn1:hover,
.shop_btn1:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(255, 193, 7, 0.6), 0 5px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-orange) 100%);
    color: #FFF !important;
}

.btn1:active,
.shop_btn1:active {
    transform: translateY(2px);
    box-shadow: none;
}

/* Do & Don'ts Safety Cards */
.docard,
.dontcard {
    border-radius: 28px;
    overflow: hidden;
    background-color: #FFF;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.docard {
    border: 4px solid #4CAF50;
}

.dontcard {
    border: 4px solid #F44336;
}

.docard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.dontcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(244, 67, 54, 0.2);
}

.docardheading,
.dontcardheading {
    font-family: var(--font-heading);
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 0;
    font-size: 24px;
}

.docardheading {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.dontcardheading {
    background: linear-gradient(135deg, #F44336, #E57373);
}

.docardheadingbottom,
.dontcardheadingbottom {
    padding: 10px 0;
    height: 12px;
}

.docardheadingbottom {
    background: #4CAF50;
}

.dontcardheadingbottom {
    background: #F44336;
}

.greenclr1 {
    color: #388E3C !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.greenclr2 {
    color: #4CAF50 !important;
}

.redclr1 {
    color: #D32F2F !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.redclr2 {
    color: #F44336 !important;
}

/* ==========================================================================
   ABOUT US, SAFETY TIPS & CONTACT US SECTIONS
   ========================================================================== */
.aboutus {
    background-color: var(--cream-bg);
    background-image: radial-gradient(circle, rgba(255, 193, 7, 0.04) 10%, transparent 11%);
    background-size: 30px 30px;
}

/* ==========================================================================
   FOOTER (CARTOON FIREWORKS ATMOSPHERE)
   ========================================================================== */
.footer {
    background: linear-gradient(to bottom, #111 0%, #1c0e35 100%);
    color: #EEE;
    border-top: 6px solid var(--secondary);
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, #ff0 2px, transparent 40px),
        radial-gradient(circle, #f00 3px, transparent 60px),
        radial-gradient(circle, #0f0 2px, transparent 50px);
    background-size: 200px 200px, 350px 350px, 280px 280px;
    background-position: 10px 10px, 80px 120px, 200px 30px;
    opacity: 0.15;
    pointer-events: none;
}

.footclr1 {
    color: var(--secondary) !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer p,
.footer li {
    font-size: 15px;
    line-height: 1.8;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
    padding: 0;
    margin: 0;
}

.tagcloud a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--secondary);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #FFF;
    transition: var(--transition);
}

.tagcloud a:hover {
    background: var(--secondary);
    color: var(--primary) !important;
    transform: scale(1.08);
}

.topclr1 {
    background: #0d061c;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.brdtop {
    border-top: 2px solid var(--secondary);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & CALL)
   ========================================================================== */
.fixed {
    position: fixed !important;
    z-index: 1050 !important;
}

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

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

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

.priceicn {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    transition: var(--transition);
}

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

.priceicn:hover,
.priceicn2:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Custom Tooltip styling */
.time-of-year .tooltip {
    background: var(--primary);
    border: 3px solid var(--secondary);
    border-radius: 18px;
    color: #FFF;
    padding: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   REDESIGNED HERO SECTION (PREMIUM MODERN LAYOUT)
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: visible;
    z-index: 5;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 30%, rgba(255, 109, 0, 0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(229, 57, 53, 0.06), transparent 50%),
        linear-gradient(135deg, #FFFDF9 0%, #FFF5E5 100%);
    margin-top: -25px;
    padding: 80px 0 100px 0;
    border-bottom: 5px solid var(--secondary);
}

/* Festive Pattern Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 193, 7, 0.08) 12%, transparent 13%),
        radial-gradient(circle, rgba(229, 57, 53, 0.06) 12%, transparent 13%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    width: 92% !important;
    max-width: 1400px !important;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-col {
    padding-right: 40px;
}

.hero-badge {
    background: rgba(229, 57, 53, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    padding: 6px 18px;
    display: inline-block;
    margin-bottom: 20px;
    border: 2px solid rgba(229, 57, 53, 0.15);
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(211, 26, 26, 0.08);
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #5A4E4D;
    margin-bottom: 25px;
}

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

.hero-feature-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #4A3E3D;
    display: flex;
    align-items: center;
}

.check-icon {
    background: var(--secondary);
    color: var(--primary);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    font-weight: 900;
    border: 2px solid #FFF;
    box-shadow: 0 3px 8px rgba(255, 193, 7, 0.3);
}

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

.hero-btn-primary {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: #FFF !important;
    border: 3px solid var(--secondary) !important;
    box-shadow: 0 6px 0 rgba(255, 193, 7, 0.8), 0 8px 15px rgba(229, 57, 53, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(255, 193, 7, 0.8), 0 4px 8px rgba(229, 57, 53, 0.15);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-orange) 100%);
}

.hero-btn-secondary {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    background: #FFF;
    color: var(--primary) !important;
    border: 3px solid var(--primary) !important;
    box-shadow: 0 6px 0 rgba(229, 57, 53, 0.2), 0 8px 15px rgba(0, 0, 0, 0.05);
}

.hero-btn-secondary:hover {
    background: var(--primary);
    color: #FFF !important;
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(229, 57, 53, 0.2), 0 4px 8px rgba(229, 57, 53, 0.15);
}

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

.glow-effect {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.45) 0%, transparent 65%);
    filter: blur(40px);
    z-index: 1;
    animation: twinkle 4s ease-in-out infinite;
}

.hero-img {
    animation: floatBalloon 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(229, 57, 53, 0.18));
    max-height: 520px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    margin-bottom: -110px;
    /* Slight overlap for modern SaaS layout */
}

.hero-img:hover {
    transform: scale(1.04) rotate(1deg);
}

/* Hero Background Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-decor {
    position: absolute;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes floatRocket {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -15px) rotate(6deg);
    }

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

.decor-rocket {
    top: 15%;
    right: 8%;
    animation: floatRocket 5s ease-in-out infinite;
    font-size: 45px;
}

.decor-sparkle-1 {
    top: 18%;
    left: 4%;
    animation: twinkle 3s infinite;
    font-size: 32px;
}

.decor-sparkle-2 {
    bottom: 15%;
    left: 6%;
    animation: twinkle 4s infinite 1s;
    font-size: 26px;
}

.decor-sparkle-3 {
    top: 8%;
    left: 45%;
    animation: twinkle 2.5s infinite 0.5s;
    font-size: 28px;
}

.decor-wheel {
    bottom: 12%;
    right: 6%;
    animation: chakraRotate 9s linear infinite;
    font-size: 42px;
}

.decor-balloon {
    top: 40%;
    left: 48%;
    animation: floatBalloon 6s ease-in-out infinite;
    font-size: 36px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0 15px;
        top: -10px;
    }

    .navbg {
        border-radius: 20px !important;
        padding: 10px 20px !important;
    }

    .logo {
        width: 240px;
    }

    .heading1 {
        font-size: 2.2rem;
    }

    .heading2 {
        font-size: 1.8rem;
    }

    .heading3 {
        font-size: 1.5rem;
    }

    /* Hero Section Responsive */
    .hero-section {
        min-height: auto;
        padding: 60px 0 80px 0;
        margin-top: -10px;
        overflow: hidden;
    }

    .hero-container {
        width: 100% !important;
        padding: 0 24px;
    }

    .hero-content-col {
        padding-right: 0;
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

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

    .hero-features {
        max-width: 500px;
        margin: 0 auto 30px auto;
        text-align: left;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

    .decor-rocket,
    .decor-wheel,
    .decor-balloon {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .pad {
        padding: 50px 0;
    }

    .logo {
        width: 180px;
    }

    .welcome-sec {
        padding: 30px 15px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 50px 0 60px 0;
    }

    .hero-container {
        padding: 0 16px;
    }

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

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

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

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

    .hero-img {
        max-height: 280px;
        margin-top: 40px;
        margin-bottom: -30px;
    }
}

/* ==========================================================================
   PREMIUM MODERN UI UPGRADES (GLASSMORPHISM, DYNAMIC HOVER EFFECTS & MICRO-ANIMATIONS)
   ========================================================================== */

/* Glassmorphic & Modern Cards */
.premium-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(211, 47, 47, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.premium-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px 0 rgba(211, 47, 47, 0.12), 0 5px 15px 0 rgba(255, 193, 7, 0.06);
    border-color: rgba(255, 193, 7, 0.5);
}

/* Counter Box Custom Upgrade */
.count-box-premium {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 35px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.count-box-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    opacity: 0.8;
}

.count-box-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(211, 47, 47, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
}

.count-box-premium i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 2px 5px rgba(211, 47, 47, 0.15));
    transition: var(--transition);
}

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

/* Modernized Timeline */
.timeline-premium {
    position: relative;
    padding: 30px 0;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent-purple));
    transform: translateX(-50%);
    border-radius: 10px;
}

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

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

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

.timeline-badge-premium {
    position: absolute;
    top: 20px;
    width: 24px;
    height: 24px;
    background: #FFF;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(211, 47, 47, 0.15);
    transition: var(--transition);
}

.timeline-badge-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

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

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

.timeline-item-premium:hover .timeline-badge-premium {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0.3);
    border-color: var(--secondary);
}

.timeline-panel-premium {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(211, 47, 47, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.timeline-panel-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
}

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

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

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

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

/* Do's & Don'ts Modern Cards */
.docard-premium,
.dontcard-premium {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.docard-premium {
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-top: 6px solid #4CAF50;
}

.dontcard-premium {
    border: 1px solid rgba(244, 67, 54, 0.15);
    border-top: 6px solid #F44336;
}

.docard-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.12);
}

.dontcard-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(244, 67, 54, 0.12);
}

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

.docard-heading-premium {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

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

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

/* Modern Form & Map Upgrades */
.contact-card-premium {
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.contact-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
}

.contact-card-premium .icon-wrapper {
    background: rgba(211, 47, 47, 0.06);
    color: var(--primary);
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card-premium:hover .icon-wrapper {
    background: var(--primary);
    color: #FFF;
    transform: scale(1.1) rotate(-5deg);
}

.form-control-premium {
    background: #FAFAFA;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A3E3D;
    transition: var(--transition);
    width: 100%;
}

.form-control-premium:focus {
    background: #FFF;
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.08);
    outline: none;
}

/* Modern Tables */
.table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.table-premium thead th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 20px;
    border: none;
}

.table-premium tbody td {
    padding: 16px 20px;
    background: #FFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 14px;
    color: #555;
    vertical-align: middle;
}

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

.table-premium tbody tr:nth-child(even) td {
    background: #FCFAFA;
}

.table-premium tbody tr:hover td {
    background: rgba(255, 193, 7, 0.05);
}

/* FAQ Accordion Premium styling */
.faq-accordion-premium .card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 18px !important;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion-premium .card:hover {
    border-color: rgba(211, 47, 47, 0.2) !important;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.05);
}

.faq-accordion-premium .card-header {
    background: #FFF !important;
    border: none !important;
    padding: 0;
}

.faq-accordion-premium .faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #2c1a17 !important;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-accordion-premium .faq-btn:focus,
.faq-accordion-premium .faq-btn:active {
    outline: none;
    box-shadow: none;
}

.faq-accordion-premium .faq-btn::after {
    content: '+';
    font-weight: bold;
    font-size: 18px;
    transition: var(--transition);
}

.faq-accordion-premium .faq-btn[aria-expanded="true"] {
    color: var(--primary) !important;
    background: rgba(211, 47, 47, 0.02);
}

.faq-accordion-premium .faq-btn[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-accordion-premium .card-body {
    background: #FFF;
    padding: 0 24px 24px 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Testimonial Premium Card */
.review-card-premium {
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px !important;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.review-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(211, 47, 47, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
}

.stars-rating {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

/* Premium Page Header Banner */
.page-banner-premium {
    position: relative;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary) 100%);
    padding: 120px 0 90px 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid var(--secondary);
}

.page-banner-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 193, 7, 0.12) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
}

.page-banner-premium h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFF;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.page-banner-premium p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 15px auto 0 auto;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .page-banner-premium {
        padding: 90px 0 60px 0;
    }

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

    .page-banner-premium p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* ==========================================================================
   PREMIUM CUSTOM NAVIGATION BAR
   ========================================================================== */
.custom-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 253, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
    padding: 15px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

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

.custom-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.08);
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

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

.custom-brand {
    flex-shrink: 0;
}

.custom-logo {
    max-height: 120px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.custom-nav-menu {
    display: flex;
    align-items: center;
}

.custom-nav-list {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

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

.custom-nav-item a,
.custom-nav-item p a,
.custom-nav-item span a {
    color: var(--text-main) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: inline-block;
}

.custom-nav-item a:hover,
.custom-nav-item p a:hover,
.custom-nav-item span a:hover {
    color: var(--primary) !important;
}

.custom-nav-item::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

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

.custom-nav-item.active a,
.custom-nav-item.active p a,
.custom-nav-item.active span a {
    color: var(--primary) !important;
}

.custom-nav-item.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Hide price list download border line when it generates nested tags */
.custom-nav-item.pdf-nav-link::after {
    display: none !important;
}

.custom-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #FF5722 100%);
    color: #FFF !important;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
}

.custom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.custom-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.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(3px);
}

.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(0, 0, 0, 0.05);
}

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

.drawer-close {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

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

.drawer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.drawer-nav-item a,
.drawer-nav-item p a {
    color: var(--text-main) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.drawer-nav-item a:hover,
.drawer-nav-item p a:hover {
    color: var(--primary) !important;
}

.drawer-nav-item.active a,
.drawer-nav-item.active p a {
    color: var(--primary) !important;
}

.drawer-cta-wrapper {
    margin-top: auto;
    padding-top: 30px;
}

/* Responsiveness adjustments */
@media (max-width: 991.98px) {
    .custom-nav-menu {
        display: none;
    }

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

    .custom-logo {
        max-height: 120px;
    }

    .custom-header {
        padding: 10px 0;
    }
}

/* ==========================================================================
   PREMIUM CUSTOM FOOTER
   ========================================================================== */
.custom-footer {
    background: linear-gradient(135deg, #9E1C1C 0%, #D32F2F 100%);
    color: #FFF;
    padding: 80px 0 30px 0;
    position: relative;
    border-top: 5px solid var(--secondary);
    font-family: var(--font-body);
}

.custom-footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.custom-footer a:hover {
    color: var(--secondary) !important;
    padding-left: 5px;
}

.footer-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 15px;
    margin-bottom: 25px;
}

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

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FFF !important;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--secondary);
    color: var(--primary) !important;
    transform: translateY(-3px);
    padding-left: 0 !important;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    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;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

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

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 50px 0 25px 0;
}

.footer-bottom-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-copyright-bar {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-copyright-bar a:hover {
    padding-left: 0;
    text-decoration: underline !important;
}

/* Back to top button styling */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary) !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

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

.back-to-top-btn:hover {
    background: #FFF;
    color: var(--primary) !important;
    transform: translateY(-5px);
}

@media (max-width: 767.98px) {
    .back-to-top-btn {
        bottom: 110px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ==========================================================================
   NEW PREMIUM FEATURED PRODUCTS SECTION
   ========================================================================== */
.premium-featured-section {
    background: radial-gradient(circle at 50% 50%, rgba(255, 248, 230, 0.4) 0%, rgba(255, 255, 255, 0) 70%), 
                linear-gradient(180deg, #FFFFFF 0%, #FFFDF7 100%);
    position: relative;
    overflow: hidden;
}

.premium-badge {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 193, 7, 0.08) 100%);
    border: 1px solid var(--secondary);
    color: var(--primary);
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.1);
    font-family: var(--font-heading);
}

.premium-badge .text-gold {
    color: var(--secondary) !important;
}

.premium-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 15px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.title-divider-gold {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
    margin-bottom: 20px;
}

.premium-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Card Styles */
.premium-card-link {
    text-decoration: none !important;
    display: block;
    color: inherit;
}

.premium-product-card {
    background: #FFFFFF;
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-product-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(229, 57, 53, 0.15);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 1;
}

.premium-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
}

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

/* Card Tag Badge */
.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #D32F2F 100%);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Image Wrapper */
.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background-color: #F8F9FA;
}

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

/* Overlay on Hover */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 14, 48, 0.85) 0%, rgba(229, 57, 53, 0.2) 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 {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Card Content */
.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: #FFFFFF;
    z-index: 2;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.premium-product-card:hover .card-title {
    color: var(--primary);
}

.card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Card Footer Info */
.card-footer-info {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-indicator {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 193, 7, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.safety-badge {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #4CAF50;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}