/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #fae7f0;
    padding: 12px 0;
    text-align: center;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.announcement-text {
    color: #53589a;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.platform-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Target the <a> tags, not the images */
.platform-logos a:nth-child(1) {
    margin-top: 6px;
}

.platform-logos a:nth-child(2) {
    margin-top: 3px;
}

.platform-logos a:nth-child(3) {
    margin-top: 0px;
}

.platform-logo {
    height: 18px;
    width: auto;
    filter: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block; /* Prevents extra spacing */
}

/* Optional: Add transition to the <a> tag as well for smooth hover */
.platform-logos a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.platform-logos a:hover {
    transform: translateY(-5px);
}

/* Navigation Bar */
.navbar {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    max-width: 1500px; 
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    color: #53589a;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

/* Active State for Nav Links */
.nav-link.active {
    color: #FFB6C1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #FFB6C1;
    border-radius: 2px;
}

.nav-link:hover {
    color: #FFB6C1;
}

.brand-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 65px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pregnancy-calculator-btn {
    background-color: #FFB6C1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pregnancy-calculator-btn:hover {
    background-color: #FFA0B4;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #2e3482;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation to X */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.mobile-logo {
    height: 50px;
    width: auto;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 35px;
    color: #2e3482;
    cursor: pointer;
    padding: 0px;
    line-height: 1;
    position: absolute;
    top: 0px;
    right: -5px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-close-btn:hover {
    transform: rotate(90deg);
    color: #FFB6C1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #2e3482;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

/* Active State for Mobile Nav Links */
.mobile-nav-link.active {
    color: #FFB6C1;
    font-weight: 600;
}

.mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #FFB6C1;
    border-radius: 2px;
}

.mobile-nav-link:hover {
    color: #FFB6C1;
}

.mobile-pregnancy-calculator-btn {
    background-color: #FFB6C1;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    /* margin-top: auto; */
    /* align-self: flex-start; */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.mobile-pregnancy-calculator-btn:hover {
    background-color: #ff9fb4;
    transform: translateY(-2px);
}

.mobile-pregnancy-calculator-btn:active {
    transform: translateY(0);
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 700px;
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to left, rgba(46, 53, 130, 0.6) 0%, rgba(46, 53, 130, 0.4) 40%, transparent 80%); */
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 80px;
    margin-bottom: 80px;
}

.hero-text {
    color: #2e3482;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
    /* text-shadow: 0 2px 4px rgba(255,255,255,0.8); */
}

.buy-now-btn {
    background-color: #2e3482;
    color: #FFB6C1;
    border: none;
    padding: 10px 35px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.buy-now-btn:hover {
    background-color: #070f80;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.arrow-icon {
    width: 30px;
    height: 30px;
    fill: #FFB6C1;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #2e3482;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(46, 52, 130, 0.2);
    z-index: 3;
    transition: all 0.25s ease;
}

.hero-nav-btn i {
    font-size: 22px;
}

.hero-nav-btn:hover {
    background: #2e3482;
    color: #fff;
    transform: translateY(-50%) translateY(-2px);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

.hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
    z-index: 3;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #2e3482;
}

@media (max-width: 768px) {
    .hero-nav-btn {
        display: none;
    }
}

/* Why Bumpies Section */

.container-bumpies {
    max-width: 1500px !important;
    margin: 0 auto;
    padding: 0 80px;
    background-color: #fae7f0;
    border-radius: 50px;
}

.why-bumpies-section {
    padding: 80px 30px;
    position: relative;
    overflow: visible;
    /* max-width: 1500px; */
}

.why-bumpies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.why-bumpies-left {
    flex: 1;
    max-width: 700px;
}

.why-bumpies-title {
    font-size: 42px;
    font-weight: 700;
    color: #2e3482;
    margin-bottom: 50px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    /* background-color: #fff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff; */
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.feature-text {
    flex: 1;
    min-width: 0;
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2e3482;
    margin: 0;
    line-height: 1.3;
}

.feature-text p {
    display: none;
}

.why-bumpies-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    width: 500px;
    height: 400px;
}

.panda-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.panda-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    position: absolute;
    bottom: -22px;
    right: 20px;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-text {
        font-size: 20px;
    }

    .container-bumpies{
        padding: 0 40px;
    }
    
    .why-bumpies-section {
        margin: 60px 20px;
        margin-block: 0px;
        padding: 60px 0;
    }
    
    .why-bumpies-content {
        gap: 0px;
    }
    
    .why-bumpies-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        gap: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon img {
        width: 50px;
        height: 50px;
    }
    
    .feature-text h3 {
        font-size: 16px;
    }
    
    .why-bumpies-right {
        width: 400px;
        height: 350px;
    }
    
    .panda-image {
        max-width: 400px;
        bottom: -22px;
        right: -15px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: flex-start;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 1;
    }
    
    .brand-logo {
        flex: 1;
        display: flex;
        justify-content: center;
        order: 2;
    }
    
    /* Hide hamburger when mobile menu is open */
    body.mobile-menu-open .mobile-menu-btn {
        display: none;
    }
    
    .announcement-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .platform-logos {
        gap: 15px;
    }
    
    .platform-logo {
        height: 16px;
    }
    
    .hero-section {
        height: 75vh;
        min-height: 600px;
    }
    
.hero-slide-content {
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 50px;
        max-width: none;
    }
    
    .hero-text {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .buy-now-btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .container-bumpies {
        padding-block-start: 50px;
    }
    
    .why-bumpies-section {
        margin: 40px 15px;
        padding: 50px 0;
        border-radius: 40px;
    }
    
    .why-bumpies-content {
        flex-direction: column;
        gap: 0px;
    }
    
    .why-bumpies-left {
        max-width: none;
        width: 100%;
    }
    
    .why-bumpies-title {
        font-size: 32px;
        margin-bottom: 35px;
        text-align: center;
    }
    
    .features-grid {
        gap: 25px 15px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon img {
        width: 50px;
        height: 50px;
    }
    
    .feature-text h3 {
        font-size: 16px;
    }
    
    .why-bumpies-right {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin: 0 auto;
    }
    
    .panda-image {
        max-width: 500px;
        bottom: -20px;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .announcement-text {
        font-size: 12px;
    }
    
    .platform-logo {
        height: 14px;
    }
    
    .hero-text {
        font-size: 18px;
    }
    
    .buy-now-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
.hero-slide-content {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 40px;
    }
    
    .why-bumpies-section {
        margin: 30px 10px;
        padding: 40px 0;
        border-radius: 35px;
    }
    
    .why-bumpies-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .feature-text h3 {
        font-size: 17px;
    }
    
    .why-bumpies-right {
        height: 250px;
        max-width: 300px;
    }
    
    .panda-image {
        max-width: 500px;
        bottom: -15px;
    }
}

/* Mobile Menu Animations */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}




/* ============================================
   GROWTH STAGES SECTION
   ============================================ */

   .growth-stages-wrapper {
    margin: 80px 0;
    padding: 0 30px;
}

.growth-stages-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.growth-stages-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.growth-stages-left {
    flex: 0 0 35%;
    max-width: 500px;
    display: flex;
    gap: 50px;
    flex-direction: column;

}

.growth-stages-heading {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.heading-pink {
    color: #FFB6C1;
}

.heading-blue {
    color: #2e3482;
}

.growth-stages-description {
    font-size: 20px;
    color: #2e3482;
    line-height: 1.6;
    font-weight: 400;
}

.growth-stages-right {
    flex: 1;
}

.stages-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Center last card if odd number */
.stage-card-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 15px);
    margin: 0 auto;
}

.stage-card-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 6/3;
}

.stage-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stage-card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.stage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stage-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(46, 53, 130, 0.7) 0%, rgba(46, 53, 130, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

.stage-card-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    cursor: default;
    font-weight: 600;
    font-size: 18px;
    transition: gap 0.3s ease;
    z-index: 2;
}

.stage-card-link:hover {
    gap: 15px;
}

.stage-arrow-icon {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

/* ============================================
   COMFORT IMAGE SECTION
   ============================================ */

.comfort-image-wrapper {
    margin: 80px 0;

}

.comfort-image-inner {
    width: 100%;
}

.comfort-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.comfort-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comfort-image-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, rgba(46, 53, 130, 0.6) 0%, rgba(46, 53, 130, 0.4) 40%, transparent 80%);
    pointer-events: none;
}

.comfort-text-content {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    z-index: 2;
}

.comfort-image-heading {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.comfort-heading-white {
    color: #fff;
}

.comfort-heading-pink {
    color: #FFB6C1;
}

/* ============================================
   RESPONSIVE DESIGN - GROWTH STAGES
   ============================================ */

@media (max-width: 1200px) {
    .growth-stages-heading {
        font-size: 42px;
    }
    
    .growth-stages-description {
        font-size: 16px;
    }
    
    .stages-cards-grid {
        gap: 25px;
    }
    
    .stage-card-item:last-child:nth-child(odd) {
        max-width: calc(50% - 12.5px);
    }
    
    .comfort-image-heading {
        font-size: 48px;
    }
    
    .comfort-text-content {
        right: 60px;
    }
}

@media (max-width: 1024px) {
    .growth-stages-wrapper {
        margin: 100px 0;
        padding: 0 35px;
    }
    
    .growth-stages-container {
        gap: 40px;
    }
    
    .growth-stages-heading {
        font-size: 38px;
    }
    
    .stages-cards-grid {
        gap: 20px;
    }
    
    .stage-card-link {
        font-size: 16px;
        bottom: 15px;
        left: 15px;
    }
    
    .comfort-image-container {
        height: 500px;
    }
    
    .comfort-image-heading {
        font-size: 42px;
    }
    
    .comfort-text-content {
        right: 50px;
    }
}

@media (max-width: 768px) {
    .growth-stages-wrapper {
        margin: 80px 0;
        padding: 0 25px;
    }
    
    .growth-stages-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .growth-stages-left {
        flex: 1;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .growth-stages-heading {
        font-size: 36px;
        text-align: center;
    }
    
    .growth-stages-description {
        font-size: 16px;
        text-align: center;
    }
    
    .growth-stages-right {
        width: 100%;
    }
    
    .stages-cards-grid {
        gap: 20px;
    }
    
    .stage-card-item:last-child:nth-child(odd) {
        max-width: 100%;
    }
    
    .comfort-image-wrapper {
        margin: 50px 0;
    }
    
    .comfort-image-container {
        height: 450px;
    }
    
    .comfort-image-heading {
        font-size: 36px;
    }
    
    .comfort-text-content {
        right: 30px;
    }
    
    .comfort-image-gradient {
        background: linear-gradient(to left, rgba(46, 53, 130, 0.7) 0%, rgba(46, 53, 130, 0.5) 50%, transparent 100%);
    }
}

@media (max-width: 640px) {
    .growth-stages-wrapper {
        margin: 40px 0;
    }
    
    .growth-stages-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .growth-stages-description {
        font-size: 15px;
    }
    
    .stages-cards-grid {
        gap: 15px;
    }
    
    .stage-card-item {
        aspect-ratio: 3/2;
    }
    
    .stage-card-link {
        font-size: 15px;
        bottom: 12px;
        left: 12px;
    }
    
    .stage-arrow-icon {
        width: 18px;
        height: 18px;
    }
    
    .comfort-image-container {
        height: 400px;
    }
    
    .comfort-image-heading {
        font-size: 32px;
    }
    
    .comfort-text-content {
        right: 25px;
    }
}

@media (max-width: 480px) {
    .growth-stages-wrapper {
        margin: 80px 0;
        padding: 0 20px;
    }
    
    .growth-stages-container {
        gap: 30px;
    }
    
    .growth-stages-heading {
        font-size: 28px;
    }
    
    .growth-stages-description {
        font-size: 14px;
    }
    
    .stages-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stage-card-item:last-child:nth-child(odd) {
        max-width: 100%;
    }
    
    .stage-card-item {
        aspect-ratio: 16/9;
    }
    
    .comfort-image-wrapper {
        margin: 30px 0;
    }
    
    .comfort-image-container {
        height: 350px;
    }
    
    .comfort-image-heading {
        font-size: 28px;
    }
    
    .comfort-text-content {
        right: 20px;
        left: 20px;
    }
    
    .comfort-image-gradient {
        background: linear-gradient(to top, rgba(46, 53, 130, 0.8) 0%, rgba(46, 53, 130, 0.6) 50%, transparent 100%);
    }
    
    .comfort-text-content {
        top: auto;
        bottom: 30px;
        transform: none;
    }
    
    .comfort-image-heading {
        text-align: left;
    }
}



/* ============================================
   CALCULATORS SECTION
   ============================================ */

   .calculators-wrapper {
    margin: 80px 0;
    padding: 0 30px;
    position: relative;
}

.calculators-inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    /* padding: 60px 0; */
}

.calculators-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2e3482;
    text-align: center;
    margin-bottom: 80px;
}

/* Decorative Wave Lines */
.wave-line-left,
.wave-line-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wave-line-left {
    left: 0;
}

.wave-line-right {
    right: 0;
}

/* Calculator Cards Container */
.calculators-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

.calculator-card-box {
    background-color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card-box:hover {
    transform: translateY(-5px);

}

.calculator-icon-wrapper {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.calculator-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.calculator-card-heading {
    font-size: 20px;
    font-weight: 600;
    color: #2e3482;
    margin-bottom: 25px;
    line-height: 1.4;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.calculator-try-btn {
    background-color: #FFB6C1;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.calculator-try-btn:hover {
    background-color: #FFA0B4;
    transform: scale(1.05);
}


/* ============================================
   RESPONSIVE DESIGN - CALCULATORS
   ============================================ */

@media (max-width: 1200px) {
    .calculators-main-title {
        font-size: 42px;
        margin-bottom: 60px;
    }
    
    .calculators-cards-container {
        gap: 30px;
    }
    
    .wave-line-left,
    .wave-line-right {
        width: 80px;
    }
    
    .calculator-icon-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .calculator-card-heading {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .calculators-wrapper {
        margin: 60px 0;
        padding: 0 20px;
    }
    
    .calculators-inner {
        padding: 50px 0;
    }
    
    .calculators-main-title {
        font-size: 38px;
    }
    
    .calculators-cards-container {
        gap: 25px;
    }
    
    .calculator-card-box {
        padding: 35px 25px;
    }
    
    .wave-line-left {
        left: -20px;
        display: none;
    }
    
    .wave-line-right {
        right: -20px;
        display: none;
    }
}

@media (max-width: 900px) {
    .calculators-cards-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .calculator-card-box:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 12.5px);
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .calculators-wrapper {
        margin: 50px 0;
        padding: 0 15px;
    }
    
    .calculators-inner {
        padding: 40px 0;
    }
    
    .calculators-main-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .wave-line-left,
    .wave-line-right {
        width: 60px;
    }
    
    .calculators-cards-container {
        gap: 20px;
    }
    
    .calculator-card-box {
        padding: 30px 20px;
    }
    
    .calculator-icon-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .calculator-card-heading {
        font-size: 17px;
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .calculator-try-btn {
        padding: 10px 35px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .calculators-cards-container {
        grid-template-columns: 1fr;
    }
    
    .calculator-card-box:last-child {
        max-width: 100%;
    }
    
    .wave-line-left,
    .wave-line-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .calculators-wrapper {
        margin: 40px 0;
        padding: 0 10px;
    }
    
    .calculators-inner {
        padding: 30px 0;
    }
    
    .calculators-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .calculator-card-box {
        padding: 25px 20px;
    }
    
    .calculator-icon-wrapper {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }
    
    .calculator-card-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .calculator-try-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}




/* ============================================
   FOOTER SECTION
   ============================================ */

   .footer-main-wrapper {
    background-color: #53589a;
    margin-top: 80px;
    border-radius: 30px 30px 0 0;
}

.footer-main-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 30px 30px;
}

.footer-content-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* .footer-brand-logo {
    margin-bottom: 10px;
} */

.footer-logo-img {
    height: 75px;
    width: auto;
}

.footer-brand-tagline {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* Links Columns */
.footer-links-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column-title {
    color: #FFB6C1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    white-space: nowrap;
}

.footer-links-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-links-list li {
    padding-left: 5px;
}

.footer-links-list li::marker {
    color: white;
}

.footer-link-item {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-link-item:hover {
    color: #FFB6C1;
    padding-left: 5px;
}

/* Panda Column */
.footer-panda-column {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.footer-panda-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.footer-panda-img {
    width: 300px;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: -65px;
    right: -90px;
}

/* Footer Bottom */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-text,
.footer-love-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.heart-icon {
    color: #FFB6C1;
    font-size: 16px;
}

/* ============================================
   RESPONSIVE DESIGN - FOOTER
   ============================================ */

@media (max-width: 1200px) {
    .footer-content-container {
        gap: 40px;
    }
    
    .footer-panda-img {
        width: 180px;
        bottom: -25px;
    }
}

@media (max-width: 1024px) {
    .footer-main-inner {
        padding: 50px 20px 25px;
    }
    
    .footer-content-container {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-links-column {
        align-items: flex-start;
    }
    
    .footer-links-list {
        padding-left: 20px;
    }
    
    .footer-panda-img {
        width: 200px;
        bottom: -58px;
    }
}

@media (max-width: 768px) {
    .footer-main-inner {
        padding: 40px 15px 20px;
    }
    
    .footer-content-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-brand-column {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-block-end: 30px;
    }
    
    .footer-panda-column {
        display: none;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-brand-tagline {
        font-size: 15px;
    }
    
    .footer-column-title {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .footer-link-item {
        font-size: 14px;
    }
    
    .footer-links-list {
        padding-left: 20px;
    }
    
    .footer-links-column {
        align-items: center;
    }

    .footer-links-list{
        list-style: none;
        text-align: center;
    }
    
    .footer-bottom-bar {
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-content-container {
        /* grid-template-columns: 1fr 1fr; */
        gap: 30px;
    }

    .footer-bottom-bar{
        flex-direction: column-reverse;
        padding-top: 20px;
    }
    
    .footer-brand-column {
        text-align: center;
        align-items: center;
    }
    
    .footer-links-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-column-title {
        text-align: center;
        width: 100%;
    }
    
    .footer-links-list {
        list-style: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-links-list li {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .footer-main-inner {
        padding: 30px 10px 15px;
    }
    
    .footer-content-container {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .footer-brand-tagline {
        font-size: 14px;
    }
    
    .footer-column-title {
        font-size: 16px;
        text-align: center;
        width: 100%;
    }
    
    .footer-link-item {
        font-size: 13px;
    }
    
    .footer-links-list {
        list-style: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-links-list li {
        padding-left: 0;
    }
    
    .footer-links-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-copyright-text,
    .footer-love-text {
        font-size: 13px;
    }
}

/* ============================================
   PRODUCT LISTING PAGE
   ============================================ */

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    background-color: #fae7f0;
    margin-bottom: 60px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #2e3482;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #53589a;
    max-width: 640px;
    margin: 0 auto;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #53589a;
}

.breadcrumb a {
    color: #53589a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFB6C1;
}

.breadcrumb-separator {
    color: #53589a;
}

.products-listing-section.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Products Listing Section */
.products-listing-section {
    padding: 0 0 80px;
    background-color: #fff;
}




.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Sidebar Filters */
.products-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filters-wrapper {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.filters-title {
    margin: 0 0 25px;
    font-size: 24px;
    font-weight: 700;
    color: #2e3482;
}

.filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2e3482;
    cursor: pointer;
    text-align: left;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.filter-icon {
    transition: transform 0.3s ease;
    color: #53589a;
}

.filter-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-group-content.active {
    max-height: 500px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #53589a;
}

.filter-checkbox:last-child {
    margin-bottom: 0;
}

.filter-checkbox input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #2e3482;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #53589a;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.filter-checkbox input[type="radio"]:checked {
    background-color: #2e3482;
    border-color: #2e3482;
}

.filter-checkbox input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.filter-checkbox input[type="radio"]:hover {
    border-color: #FFB6C1;
}

.filter-checkbox input[type="radio"]:checked:hover {
    background-color: #FFB6C1;
    border-color: #FFB6C1;
}

.filter-checkbox span {
    user-select: none;
}

/* Price Range Slider */
.price-range-slider {
    position: relative;
    height: 40px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.price-range-slider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    z-index: 0;
}

.price-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.price-range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border: none;
}

.price-range-slider input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2e3482;
    cursor: pointer;
    pointer-events: all;
    border: 3px solid #fff;
    margin-top: -7px;
    position: relative;
    z-index: 2;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); */
}

.price-range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2e3482;
    cursor: pointer;
    pointer-events: all;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.price-range-slider input[type="range"]:focus {
    outline: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb:hover {
    background: #FFB6C1;
}

.price-range-slider input[type="range"]::-moz-range-thumb:hover {
    background: #FFB6C1;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: nowrap;
}

.price-input-group {
    position: relative;
    flex: 1;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #53589a;
    font-weight: 600;
    font-size: 16px;
    pointer-events: none;
}

.price-input-group input[type="number"] {
    width: 100%;
    padding: 10px 12px 10px 35px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #2e3482;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    min-width: 0;
    box-sizing: border-box;
}

.price-input-group input[type="number"]:focus {
    outline: none;
    border-color: #FFB6C1;
}

.price-separator {
    color: #53589a;
    font-size: 14px;
    font-weight: 500;
}

/* Products Main Area */
.products-main {
    min-width: 0;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.products-count {
    font-size: 16px;
    color: #53589a;
}

.products-count span {
    font-weight: 700;
    color: #2e3482;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #2e3482;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.mobile-filter-btn:hover {
    background-color: #FFB6C1;
    transform: translateY(-2px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.3s ease;
}

.products-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card Item (using same styles from slider.css) */
.products-listing-section .product-card-item {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgb(83 88 154);
    max-width: 100%;
    width: 100%;
    cursor: pointer;
}

.products-listing-section .product-card-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #b8a5ce;
    transform: translateY(-5px);
}

/* No Results */
.no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    grid-column: 1 / -1;
}

.no-results h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #2e3482;
    font-weight: 600;
}

.no-results p {
    margin: 0;
    color: #53589a;
    font-size: 16px;
}

/* Pagination - Product Listing Page */
.products-listing-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.products-listing-pagination .pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #2e3482;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.products-listing-pagination .pagination-btn:hover:not(.disabled):not(.active) {
    background-color: #fae7f0;
    border-color: #FFB6C1;
    color: #2e3482;
}

.products-listing-pagination .pagination-btn.active {
    background-color: #2e3482;
    border-color: #2e3482;
    color: #fff;
}

.products-listing-pagination .pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.products-listing-pagination .pagination-info {
    color: #53589a;
    font-size: 15px;
    margin: 0 10px;
}

/* Mobile Filter Bottom Sheet */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-overlay.active {
    display: block;
    opacity: 1;
}

.filter-bottom-sheet {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 9999;
    max-height: 85vh;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.filter-bottom-sheet.active {
    display: block;
    transform: translateY(0);
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #f0f0f0;
    position: sticky;
    top: 0;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.bottom-sheet-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #2e3482;
}

.close-bottom-sheet {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #fae7f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    color: #2e3482;
    font-weight: 300;
}

.close-bottom-sheet:hover {
    background-color: #FFB6C1;
    color: #fff;
}

.bottom-sheet-content {
    padding: 20px 25px;
    max-height: calc(85vh - 140px);
    overflow-y: auto;
}

.filter-bottom-sheet .filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.filter-bottom-sheet .filter-group:last-child {
    border-bottom: none;
}

.filter-bottom-sheet .filter-group-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2e3482;
    cursor: pointer;
    text-align: left;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.filter-bottom-sheet .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #53589a;
}

.filter-bottom-sheet .filter-checkbox:last-child {
    margin-bottom: 0;
}

.filter-bottom-sheet .filter-checkbox input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #2e3482;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #53589a;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.filter-bottom-sheet .filter-checkbox input[type="radio"]:checked {
    background-color: #2e3482;
    border-color: #2e3482;
}

.filter-bottom-sheet .filter-checkbox input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.filter-bottom-sheet .filter-checkbox input[type="radio"]:hover {
    border-color: #FFB6C1;
}

.filter-bottom-sheet .filter-checkbox input[type="radio"]:checked:hover {
    background-color: #FFB6C1;
    border-color: #FFB6C1;
}

.bottom-sheet-actions {
    padding: 20px 25px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 15px;
    position: sticky;
    bottom: 0;
    background-color: #fff;
}

.btn-clear-filters,
.btn-apply-filters {
    flex: 1;
    padding: 14px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-clear-filters {
    background-color: #f0f0f0;
    color: #2e3482;
}

.btn-clear-filters:hover {
    background-color: #e0e0e0;
}

.btn-apply-filters {
    background-color: #2e3482;
    color: #fff;
}

.btn-apply-filters:hover {
    background-color: #FFB6C1;
    transform: translateY(-2px);
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.about-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2e3482;
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-text-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #53589a;
    margin: 0;
}

.about-text-content p:first-of-type {
    font-size: 18px;
    font-style: italic;
    color: #2e3482;
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* background-color: #fae7f0; */
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Milestones Section */
.milestones-section {
    padding: 80px 0;
    background-color: #fae7f0;
}

.milestones-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

.milestones-header {
    text-align: center;
    margin-bottom: 60px;
}

.milestones-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2e3482;
    margin: 0;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.milestone-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(46, 53, 130, 0.15);
    border-color: #2e3482;
}

.milestone-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #fae7f0;
    border-radius: 16px;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.milestone-card:hover .milestone-icon {
    background-color: #2e3482;
}

.milestone-icon i {
    font-size: 32px;
    color: #2e3482;
    transition: color 0.3s ease;
}

.milestone-card:hover .milestone-icon i {
    color: #fff;
}

.milestone-number {
    font-size: 42px;
    font-weight: 700;
    color: #2e3482;
    margin-bottom: 10px;
    line-height: 1;
}

.milestone-text {
    font-size: 18px;
    color: #53589a;
    font-weight: 500;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Fade-in Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay for milestone cards */
.milestone-card:nth-child(1) {
    transition-delay: 0.1s;
}

.milestone-card:nth-child(2) {
    transition-delay: 0.2s;
}

.milestone-card:nth-child(3) {
    transition-delay: 0.3s;
}

.milestone-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-detail-section .container {
    max-width: 1300px ;
    margin: 0 auto;
    padding: 0 20px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 60px;
}

.product-gallery {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.product-main-slider-wrapper {
    position: relative;
    border-radius: 24px;
    /* background: linear-gradient(135deg, #f5f0ff, #fff4fb); */
    padding: 24px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(83, 88, 154, 0.15); */
}

.product-main-slider {
    width: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.product-main-slides {
    display: flex;
    width: 100%;
    align-items: stretch;
    transition: transform 0.45s ease;
}

.product-main-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(280px, 55vw, 500px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-main-slide.active {
    opacity: 1;
}

.product-main-slide img {
    width: 100%;
    max-width: 420px;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    /* filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.12)); */
    pointer-events: none;
}

.product-detail-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    font-size: 1.3rem;
    background-color: rgba(46, 52, 130, 0.9);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0;
}

.product-detail-nav-btn:hover {
    background-color: #0f1b88;
}

.product-detail-nav-prev {
    left: 18px;
}

.product-detail-nav-next {
    right: 18px;
}

.product-main-slider-wrapper:hover .product-detail-nav-btn {
    opacity: 1;
}

@media (hover: none), (pointer: coarse) {
    .product-detail-nav-btn {
        opacity: 1;
    }
}

.product-thumb-slider-wrapper {
    margin-top: 20px;
}

.product-thumb-slider {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumb-image {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background-color: #fff;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    padding: 0;
}

.product-thumb-image img {
    width: 100%;
    height: 90%;
    object-fit: scale-down;
}

.product-thumb-image.active,
.product-thumb-image:hover {
    border-color: #2e3482;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-chip {
    padding: 8px 18px;
    border-radius: 999px;
    background-color: #2e3482;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-chip-outline {
    background-color: transparent;
    color: #2e3482;
    border: 2px solid #2e3482;
}

.product-detail-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2e3482;
    margin: 0;
    line-height: 1.2;
}

.product-detail-summary {
    font-size: 1.05rem;
    color: #53589a;
    line-height: 1.7;
    margin-bottom: 0;
}

.product-detail-description-list {
    margin: 0;
}

.product-detail-description-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail-description-list ul li {
    padding-left: 26px;
    position: relative;
    color: #2e3482;
    font-weight: 500;
}

.product-detail-description-list ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFB6C1;
    position: absolute;
    left: 6px;
    top: 10px;
}

.product-detail-description-list p {
    margin: 0 0 0.5rem;
    color: #2e3482;
    font-weight: 500;
}

.product-detail-description-list p:last-child {
    margin-bottom: 0;
}

.product-attributes {
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #fff;
}

.attribute-label {
    font-weight: 600;
    color: #2e3482;
}

.attribute-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.attribute-option {
    min-width: 52px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid #d7d9f4;
    background-color: #fff;
    color: #2e3482;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.attribute-option.active {
    background-color: #2e3482;
    border-color: #2e3482;
    color: #fff;
}

.attribute-option:hover {
    border-color: #2e3482;
}

.product-cta-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(120deg, #fdf2ff, #eef2ff);
}

.product-price-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    color: #53589a;
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2e3482;
}

.price-hint {
    font-size: 0.85rem;
    color: #8a8fbf;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #2e3482;
    color: #fff;
    box-shadow: 0 12px 25px rgba(46, 52, 130, 0.3);
}

.primary-btn:hover {
    background-color: #1a1f6b;
}

.secondary-btn {
    background-color: #fff;
    border: 2px solid #d4d7ff;
    color: #2e3482;
}

.secondary-btn:hover {
    border-color: #2e3482;
}

.product-store-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #53589a;
    font-weight: 600;
}

.product-care {
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
}

.product-care h4 {
    margin: 0 0 10px;
    color: #2e3482;
}

.product-care-list ul {
    margin: 0;
    padding-left: 20px;
    color: #53589a;
}

.product-care-list p {
    margin: 0 0 0.5rem;
    color: #53589a;
}

.product-care-list p:last-child {
    margin-bottom: 0;
}

.product-highlights-section,
.product-faq-section,
.product-related-section {
    padding: 70px 0;
    background-color: #fff;
}

.product-highlights-section {
    background-color: #f9f6ff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #2e3482;
    margin: 10px 0 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: #a0a5d9;
    font-weight: 700;
}

.product-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.product-highlight-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(83, 88, 154, 0.15);
    box-shadow: 0 12px 30px rgba(83, 88, 154, 0.08);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background-color: #2e3482;
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 18px;
}

.product-highlight-card h3 {
    margin-bottom: 10px;
    color: #2e3482;
}

.product-highlight-card p {
    margin: 0;
    color: #53589a;
}

/* ============================================
   FAQ SECTION - FIXED
   ============================================ */

   .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(83, 88, 154, 0.08);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: #2e3482;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #53589a;
}

.faq-question i {
    font-size: 1.5rem;
    color: #2e3482;
    transition: transform 0.4s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question span {
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding-top: 0;
    margin-bottom: 30px;
}

.faq-item.active .faq-question {
    color: #2e3482;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #FFB6C1;
}

.faq-answer p {
    margin: 0;
    color: #53589a;
    line-height: 1.7;
    font-size: 0.95rem;
}

.products-grid-related {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-related-section .product-card-item {
    max-width: 100%;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

    .product-main-slide {
        height: 460px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 60px 0;
    }

    .product-cta-bar {
        /* flex-direction: column; */
        align-items: center;
    }

    .product-main-slide {
        height: 380px;
    }

    .product-thumb-image {
        width: 74px;
        height: 74px;
    }


    .product-highlights-section,
    .product-faq-section,
    .product-related-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .product-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .products-grid-related {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-detail-section .container {
        padding: 0 20px;
    }

    .product-main-slider-wrapper {
        padding: 16px;
    }

    .product-main-slide {
        height: 320px;
    }

    .product-thumb-image {
        width: 64px;
        height: 64px;
    }

    .product-attributes {
        padding: 18px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .product-cta-bar {
        padding: 18px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-question i {
        font-size: 1.25rem;
    }

    
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 0 0 80px;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
}

.contact-heading {
    font-size: 42px;
    font-weight: 700;
    color: #2e3482;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-subheading {
    font-size: 18px;
    color: #53589a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #2e3482;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFB6C1;
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.submit-button {
    background-color: #FFB6C1;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #FFA0B4;
    transform: scale(1.02);
    
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    gap: 40px;
}

.contact-info-block {
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-info-block:hover {
    border-color: #FFB6C1;
}

.contact-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #2e3482;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 16px;
    color: #53589a;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-text:last-child {
    margin-bottom: 0;
}

.contact-info-link {
    display: block;
    font-size: 16px;
    color: #53589a;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #FFB6C1;
}

.contact-info-link:last-child {
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    color: #2e3482;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    font-size: 20px;
}

.social-icon:hover {
    background-color: #2e3482;
    color: #fff;
    transform: translateY(-3px);
    border-color: #2e3482;
    box-shadow: 0 4px 12px rgba(46, 53, 130, 0.3);
}

.social-icon i {
    line-height: 1;
}

/* ============================================
   RESPONSIVE DESIGN - PRODUCT LISTING
   ============================================ */

@media (max-width: 1200px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .page-title {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filters-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-sidebar {
        position: static;
        display: none;
    }
    
    .mobile-filter-btn {
        display: flex;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .products-listing-pagination {
        margin-top: 40px;
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
        margin-bottom: 40px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    .products-listing-section {
        padding: 0 0 60px;
    }
    
    .products-toolbar {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .products-count {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filters-wrapper {
        padding: 25px 20px;
    }
    
    .filters-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .filter-group-header {
        font-size: 16px;
    }
    
    .filter-checkbox {
        font-size: 14px;
    }
    
    .contact-heading {
        font-size: 32px;
    }
    
    .contact-subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-block {
        padding: 25px;
    }
    
    .contact-info-title {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid[data-columns="2"] {
        grid-template-columns: 1fr;
    }
    
    .products-grid[data-columns="4"] {
        grid-template-columns: 1fr;
    }
    
    .bottom-sheet-content {
        padding: 15px 20px;
    }
    
    .bottom-sheet-actions {
        padding: 15px 20px;
    }
    
    .btn-clear-filters,
    .btn-apply-filters {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .products-listing-pagination {
        margin-top: 40px;
        padding-top: 25px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .products-listing-pagination .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
    }
    
    .products-listing-pagination .pagination-info {
        width: 100%;
        text-align: center;
        margin: 10px 0 0;
    }
}

/* ============================================
   BLOG LISTING
   ============================================ */

   .blog-listing-section {
    padding: 80px 0 100px;
    background-color: #fafbff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 12px 40px rgba(83, 88, 154, 0.12);
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(83, 88, 154, 0.12);
    border-color: rgba(83, 88, 154, 0.1);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.blog-card-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.blog-card-image a {
    display: block;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-pill {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 8px;
    background-color: #53589a;
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-card-body {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #a0a5c7;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.blog-card-title {
    margin: 0;
    font-size: 1.35rem;
    color: #2e3482;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #53589a;
}

.blog-card-excerpt {
    margin: 0;
    color: #6b7096;
    line-height: 1.7;
    flex: 1;
    font-size: 0.95rem;
}

.blog-card-link {
    font-weight: 600;
    color: #FFB6C1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.blog-card-link:hover {
    color: #FFA0B4;
    gap: 12px;
}

.blog-card-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   BLOG DETAIL - SIDE BY SIDE LAYOUT
   ============================================ */

.blog-detail-section {
    padding: 80px 0 100px;
    background-color: #fff;
}

.blog-detail-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 60px;
    align-items: start;
}

.blog-detail-sidebar {
    position: sticky;
    top: 100px;
}

.blog-detail-hero {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(83, 88, 154, 0.1);
    margin-bottom: 24px;
}

.blog-detail-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    gap: 12px;
    color: #8a8fbf;
    font-weight: 500;
    font-size: 0.95rem;
}

.blog-detail-meta-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-detail-meta .blog-pill {
    position: static;
    background-color: #2e3482;
    color: #fff;
    box-shadow: 0 4px 12px rgba(46, 52, 130, 0.15);
    display: inline-block;
    width: fit-content;
}

.blog-detail-content-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-detail-title {
    font-size: 2.5rem;
    color: #2e3482;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-detail-block h2 {
    font-size: 1.75rem;
    color: #2e3482;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-detail-block p {
    margin: 0;
    font-size: 1.05rem;
    color: #4a4e7a;
    line-height: 1.9;
    letter-spacing: 0.2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-detail-wrapper {
        grid-template-columns: 40% 1fr;
        gap: 50px;
    }

    .blog-detail-section .container {
        padding: 0 30px;
    }

    .blog-detail-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .blog-detail-section {
        padding: 60px 0 80px;
    }

    .blog-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-listing-section {
        padding: 60px 0 80px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog-card-image img {
        height: 340px;
    }

    .blog-detail-section {
        padding: 40px 0 80px;
    }

    .blog-detail-section .container {
        padding: 0 20px;
    }

    .blog-detail-hero {
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .blog-detail-title {
        font-size: 1.75rem;
    }

    .blog-detail-block h2 {
        font-size: 1.5rem;
    }

    .blog-detail-block p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-listing-section {
        padding: 50px 0 60px;
    }

    .blog-card-body {
        padding: 24px 20px 20px;
    }

    .blog-card-image img {
        height: 320px;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-pill {
        font-size: 0.75rem;
        padding: 6px 14px;
        top: 16px;
        left: 16px;
    }

    .blog-detail-hero {
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .blog-detail-title {
        font-size: 1.5rem;
    }

    .blog-detail-block h2 {
        font-size: 1.35rem;
    }

    .blog-detail-content-area {
        gap: 32px;
    }

    .blog-detail-meta{
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ============================================
   RESPONSIVE DESIGN - ABOUT US
   ============================================ */

@media (max-width: 1200px) {
    .about-content-grid {
        gap: 50px;
    }
    
    .about-text-content h2 {
        font-size: 36px;
    }
    
    .milestones-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        order: -1;
    }
    
    .milestones-section {
        padding: 60px 0;
    }
    
    .milestones-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 50px 0;
    }
    
    .about-content-grid {
        gap: 35px;
    }
    
    .about-text-content {
        gap: 18px;
    }
    
    .about-text-content h2 {
        font-size: 32px;
    }
    
    .about-text-content p {
        font-size: 15px;
        line-height: 1.65;
    }
    
    .about-text-content p:first-of-type {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .about-image-wrapper {
        padding: 30px;
    }
    
    .milestones-section {
        padding: 50px 0;
    }
    
    .milestones-header {
        margin-bottom: 40px;
    }
    
    .milestones-header h2 {
        font-size: 36px;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .milestone-card {
        padding: 35px 25px;
        min-height: 220px;
    }
    
    .milestone-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .milestone-icon i {
        font-size: 28px;
    }
    
    .milestone-number {
        font-size: 38px;
    }
    
    .milestone-text {
        font-size: 16px;
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0 20px;
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-content-section {
        padding: 40px 0;
    }
    
    .about-content-grid {
        gap: 30px;
    }
    
    .about-text-content {
        gap: 15px;
    }
    
    .about-text-content h2 {
        font-size: 28px;
    }
    
    .about-text-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-text-content p:first-of-type {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .about-image-wrapper {
        padding: 25px;
        border-radius: 15px;
    }
    
    .milestones-section {
        padding: 40px 0;
    }
    
    .milestones-header {
        margin-bottom: 30px;
    }
    
    .milestones-header h2 {
        font-size: 32px;
    }
    
    .milestone-card {
        padding: 30px 20px;
        min-height: 200px;
        border-radius: 15px;
    }
    
    .milestone-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        border-radius: 14px;
    }
    
    .milestone-icon i {
        font-size: 26px;
    }
    
    .milestone-number {
        font-size: 36px;
    }
    
    .milestone-text {
        font-size: 15px;
        min-height: 40px;
    }
    
    .products-toolbar {
        align-items: center;
        gap: 15px;
    }
    
    .mobile-filter-btn {
        justify-content: center;
    }
    
    .products-grid {
        gap: 15px;
    }
    
    .filters-wrapper {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .filters-title {
        font-size: 18px;
    }
    
    .filter-group {
        padding: 15px 0;
    }
    
    .filter-group-header {
        font-size: 15px;
    }
    
    .filter-checkbox {
        font-size: 13px;
        gap: 10px;
    }
    
    .price-inputs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .price-input-group {
        min-width: 120px;
        flex: 1 1 auto;
    }
    
    .price-separator {
        display: none;
    }
    
    .no-results {
        padding: 40px 15px;
    }
    
    .no-results h3 {
        font-size: 20px;
    }
    
    .no-results p {
        font-size: 14px;
    }
    
    .contact-heading {
        font-size: 28px;
    }
    
    .contact-subheading {
        font-size: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .submit-button {
        padding: 14px 35px;
        font-size: 16px;
        width: 100%;
    }
    
    .contact-info-block {
        padding: 20px;
    }
    
    .contact-info-title {
        font-size: 18px;
    }
    
    .contact-info-text,
    .contact-info-link {
        font-size: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ==================== Lead Capture Modal ==================== */
.lead-capture-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.lead-capture-backdrop.lead-active {
    display: flex;
}

.lead-capture-modal {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(46, 52, 130, 0.25);
    border: 1px solid rgba(83, 88, 154, 0.08);
}

.lead-modal-header h3 {
    margin: 0 0 8px;
    color: #2e3482;
    font-size: 22px;
    font-weight: 700;
}

.lead-modal-header p {
    margin: 0 0 18px;
    color: #53589a;
    line-height: 1.5;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
    row-gap: 16px;
    margin-bottom: 20px;
}

.lead-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.lead-form-group + .lead-form-group {
    margin-top: 10px !important;
}

.lead-form-group label {
    font-size: 14px;
    color: #2e3482;
    font-weight: 600;
}

.lead-form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid #e7e7f5;
    background: #f8f8ff;
    font-size: 15px;
    color: #2e3482;
    transition: all 0.2s ease;
}

.lead-form-group input:focus {
    outline: none;
    border-color: #ffb6c1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.2);
}

.lead-helper {
    font-size: 13px;
    color: #7a7da8;
    margin: 12px 0 0;
    line-height: 1.5;
}

.lead-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 18px;
}

.lead-submit-btn {
    background: linear-gradient(135deg, #2e3482 0%, #53589a 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(46, 52, 130, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(46, 52, 130, 0.3);
}

.lead-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.lead-error {
    color: #d93025;
    font-size: 13px;
    margin-top: 10px;
    min-height: 16px;
}

body.lead-modal-open {
    overflow: hidden;
}

@media screen and (max-width: 640px) {
    .lead-capture-modal {
        padding: 22px;
        max-width: 100%;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
    }

    .lead-modal-header h3 {
        font-size: 20px;
    }
}