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

:root {
    --primary-blue: #3B6BA5;
    --dark-blue: #2E5C8A;
    --primary-green: #4CAF50;
    --dark-green: #388E3C;
    --light-green: #66BB6A;
    --accent-teal: #26A69A;
    --dark-gray: #2c3e50;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero_bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    blur: 2rem;
    animation: pulse 2s infinite;
}

.floating-element-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(251, 191, 36, 0.1);
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: 5rem;
    right: 5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(239, 68, 68, 0.1);
    animation-delay: 1s;
}

.floating-element-3 {
    top: 50%;
    left: 33.333333%;
    width: 6rem;
    height: 6rem;
    background: rgba(34, 197, 94, 0.1);
    animation-delay: 0.5s;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    padding-top: 5rem;
    padding-bottom: 7rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        padding-left: 2rem;
        padding-right: 2rem;
        min-height: 80vh;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.hero-content {
    text-align: center;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        order: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    animation: fade-in 0.6s ease-out forwards;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    color: #86efac;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    z-index: 10;
    background: linear-gradient(to right, #fde047, #fb923c, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-underline {
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: rgba(251, 191, 36, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-features {
        justify-content: flex-start;
    }
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #d1d5db;
}

.hero-buttons {
    display: flex;
    flex-col: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-shop-now {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #ef4444, #f97316);
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-shop-now:hover {
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
    transform: translateY(-4px);
    text-decoration: none;
    color: white;
}

.btn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-shop-now:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f97316, #ef4444);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-shop-now:hover .btn-overlay {
    opacity: 1;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .stat-item {
        text-align: left;
    }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.hero-image-section {
    display: flex;
    justify-content: center;
    order: 1;
}

@media (min-width: 1024px) {
    .hero-image-section {
        justify-content: flex-end;
        order: 2;
    }
}

.hero-image-container {
    position: relative;
}

.rotating-border {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.rotating-border-1 {
    inset: 0;
    transform: scale(1.1);
    animation: spin-slow 20s linear infinite;
}

.rotating-border-2 {
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    animation: spin-slow-reverse 15s linear infinite;
}

.hero-image-wrapper {
    position: relative;
    width: 18rem;
    height: 18rem;
}

@media (min-width: 640px) {
    .hero-image-wrapper {
        width: 24rem;
        height: 24rem;
    }
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        width: 28rem;
        height: 28rem;
    }
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(251, 191, 36, 0.2), rgba(239, 68, 68, 0.2));
    border-radius: 50%;
    filter: blur(2rem);
    transition: opacity 0.7s ease;
    opacity: 0.5;
}

.image-frame {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 0.5rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), transparent);
    backdrop-filter: blur(4px);
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.7s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(16px);
}

.floating-badge-1 {
    top: -1rem;
    right: -1rem;
    color: #16a34a;
    animation-delay: 0.5s;
}

.floating-badge-2 {
    bottom: -1rem;
    left: -1rem;
    color: #dc2626;
    transform: translateX(-16px);
    animation-delay: 0.6s;
}

.center-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.center-icon span {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-wave {
    left: 0;
    bottom: 0;
    height: 10%;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    transform: rotate(180deg);
}

.wave-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

@media (min-width: 640px) {
    .wave-svg {
        height: 80px;
    }
}

.wave-path {
    fill: white;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes spin-slow {
    from {
        transform: scale(1.1) rotate(0deg);
    }

    to {
        transform: scale(1.1) rotate(360deg);
    }
}

@keyframes spin-slow-reverse {
    from {
        transform: scale(1.2) rotate(360deg);
    }

    to {
        transform: scale(1.2) rotate(0deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 20s linear infinite;
}

/* Gradient Backgrounds */
.gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.gradient-green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.gradient-teal {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #00897B 100%);
}

/* Custom Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-gray);
    text-decoration: none;
}

.btn-green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-card .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-card .product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.product-card .product-info {
    padding: 20px;
}

.product-card .category {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card .product-title {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0;
    color: var(--dark-gray);
}

.product-card .rating {
    color: #FFA726;
    font-size: 14px;
    margin: 5px 0;
}

.product-card .price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.product-card .current-price {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
}

.product-card .original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 8px;
}

.product-card .discount-percent {
    background: #E8F5E9;
    color: var(--primary-green);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Wellness Solutions Cards */
.wellness-card {
    background: white;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wellness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

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

.wellness-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wellness-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wellness-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.wellness-card p {
    color: #666;
    font-size: 14px;
}

/* Hero Section Enhancements */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.hero-stat .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge-floating {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.hero-rotating-border {
    position: absolute;
    inset: -20px;
    border: 3px dashed var(--primary-green);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-main-image {
        width: 300px;
        height: 300px;
    }

    .product-card .product-image {
        height: 200px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Mapco Brand Colors - Blue Highlight */
.highlight-text-blue {
    position: relative;
    z-index: 10;
    background: linear-gradient(to right, #4CAF50, #66BB6A, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-underline-blue {
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: rgba(75, 175, 80, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
}

/* Updated Button Styles for Mapco Brand */
.btn-shop-now {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #3B6BA5, #2E5C8A);
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(59, 107, 165, 0.3);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-shop-now:hover {
    box-shadow: 0 20px 40px rgba(59, 107, 165, 0.4);
    transform: translateY(-4px);
    text-decoration: none;
    color: white;
}

.btn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #2E5C8A, #3B6BA5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Wellness Solutions Carousel Styles */
.wellness-underline {
    transform: scaleX(0);
    transform-origin: left;
    animation: scale-x 1s ease-out forwards;
}

@keyframes scale-x {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Carousel Container */
.wellness-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .wellness-carousel-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .wellness-carousel-container {
        padding: 0 10px;
    }
}

.wellness-swiper {
    width: 100%;
    padding-bottom: 60px;
    overflow: hidden;
    margin: 0;
}

.wellness-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.wellness-swiper .swiper-slide {
    width: 280px;
    height: auto;
    display: flex;
    justify-content: center;
    transition: all 0.5s ease;
}

@media (max-width: 640px) {
    .wellness-swiper .swiper-slide {
        width: 240px;
    }
}

.wellness-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 220px;
    transition: all 0.5s ease;
}

.wellness-card-glow {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    opacity: 0.2;
    transition: all 0.5s ease;
    filter: blur(20px);
}

.wellness-glow-blue {
    background: linear-gradient(135deg, #3B6BA5, #2E5C8A);
}

.wellness-glow-green {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.wellness-glow-teal {
    background: linear-gradient(135deg, #26A69A, #00897B);
}

.wellness-card-wrapper:hover .wellness-card-glow {
    opacity: 0.6;
}

.wellness-card-content {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
}

.wellness-card-wrapper:hover .wellness-card-content {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 107, 165, 0.2);
}

.wellness-card-icon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 20;
    transition: all 0.5s ease;
}

.wellness-icon-blue {
    background: linear-gradient(135deg, #3B6BA5, #2E5C8A);
}

.wellness-icon-green {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.wellness-icon-teal {
    background: linear-gradient(135deg, #26A69A, #00897B);
}

.wellness-card-icon i {
    color: white;
    font-size: 20px;
}

.wellness-card-wrapper:hover .wellness-card-icon {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
}

.wellness-card-image-wrapper {
    position: relative;
    margin-top: 24px;
    margin-bottom: 16px;
}

.wellness-card-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 107, 165, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 50%;
    transform: scale(0.9);
    filter: blur(30px);
}

.wellness-card-image {
    position: relative;
    width: 144px;
    height: 144px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transition: all 0.5s ease;
}

.wellness-card-wrapper:hover .wellness-card-image {
    box-shadow: 0 12px 30px rgba(59, 107, 165, 0.3);
    border-color: #E3F2FD;
}

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

.wellness-card-wrapper:hover .wellness-card-image img {
    transform: scale(1.15);
}

.wellness-card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.wellness-overlay-blue {
    background: linear-gradient(135deg, rgba(59, 107, 165, 0.2), rgba(46, 92, 138, 0.2));
}

.wellness-overlay-green {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.2));
}

.wellness-overlay-teal {
    background: linear-gradient(135deg, rgba(38, 166, 154, 0.2), rgba(0, 137, 123, 0.2));
}

.wellness-card-wrapper:hover .wellness-card-overlay {
    opacity: 1;
}

.wellness-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.wellness-card-wrapper:hover .wellness-card-title {
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wellness-card-description {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    transition: color 0.3s ease;
}

.wellness-card-wrapper:hover .wellness-card-description {
    color: #4b5563;
}

.wellness-card-cta {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    transition: all 0.5s ease;
}

.wellness-card-wrapper:hover .wellness-card-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wellness-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.wellness-cta-blue {
    background: linear-gradient(135deg, #3B6BA5, #2E5C8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wellness-cta-green {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wellness-cta-teal {
    background: linear-gradient(135deg, #26A69A, #00897B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wellness-cta-text i {
    color: #3B6BA5;
    font-size: 12px;
}

/* Pagination Styles */
.wellness-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    width: 100%;
}

.wellness-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #c7d2fe;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
}

.wellness-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wellness-pagination .swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 12px;
    background: transparent;
}

.wellness-pagination .swiper-pagination-bullet-active::before {
    transform: scale(1);
}

.wellness-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.2);
}

/* Navigation Arrows */
.wellness-swiper-button-prev,
.wellness-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #3B6BA5;
}

.wellness-swiper-button-prev {
    left: -60px;
}

.wellness-swiper-button-next {
    right: -60px;
}

@media (max-width: 1024px) {
    .wellness-swiper-button-prev {
        left: -20px;
    }

    .wellness-swiper-button-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .wellness-swiper-button-prev {
        left: -10px;
        width: 40px;
        height: 40px;
    }

    .wellness-swiper-button-next {
        right: -10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {

    .wellness-swiper-button-prev,
    .wellness-swiper-button-next {
        display: none;
    }
}

.wellness-swiper-button-prev:hover,
.wellness-swiper-button-next:hover {
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 107, 165, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.wellness-swiper-button-prev.swiper-button-disabled,
.wellness-swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.wellness-swiper-button-prev i,
.wellness-swiper-button-next i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {

    .wellness-swiper-button-prev i,
    .wellness-swiper-button-next i {
        font-size: 1rem;
    }
}

/* View All Button */
.wellness-view-all-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 8px 20px rgba(59, 107, 165, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.wellness-view-all-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 107, 165, 0.4);
    color: white;
    text-decoration: none;
}

.wellness-view-all-btn i {
    transition: transform 0.3s ease;
}

.wellness-view-all-btn:hover i {
    transform: translateX(4px);
}

.wellness-btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, #4CAF50, #3B6BA5);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.wellness-view-all-btn:hover .wellness-btn-glow {
    opacity: 0.75;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wellness-swiper .swiper-slide {
        width: 200px;
    }

    .wellness-card-wrapper {
        max-width: 180px;
    }

    .wellness-card-image {
        width: 120px;
        height: 120px;
    }

    .wellness-card-title {
        font-size: 16px;
    }
}

/* Contact Page Styles */
.contact-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #E3F2FD 0%, #ffffff 50%, #E8F5E9 100%);
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .contact-page-wrapper {
        padding: 4rem 0;
    }
}

/* Background Elements */
.contact-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.contact-bg-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(59, 107, 165, 0.15);
}

.contact-bg-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 20rem;
    height: 20rem;
    background: rgba(76, 175, 80, 0.15);
    animation-delay: 1s;
}

.contact-bg-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    background: rgba(38, 166, 154, 0.1);
    animation-delay: 0.5s;
}

/* Language Toggle */
.contact-lang-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 4px;
}

.contact-lang-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #6b7280;
    cursor: pointer;
    border: none;
    background: transparent;
}

.contact-lang-btn:hover {
    color: #3B6BA5;
}

.contact-lang-active {
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    color: white;
    box-shadow: 0 4px 10px rgba(59, 107, 165, 0.3);
}

/* Header */
.contact-header {
    animation: fade-in 0.6s ease-out forwards;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #E3F2FD;
    border-radius: 9999px;
    color: #3B6BA5;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .contact-main-title {
        font-size: 3rem;
    }
}

.contact-subtitle {
    display: block;
    background: linear-gradient(135deg, #3B6BA5, #4CAF50, #26A69A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.contact-description {
    color: #6b7280;
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Form Wrapper */
.contact-form-wrapper {
    animation: slide-in-left 0.8s ease-out forwards;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(59, 107, 165, 0.15);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 1024px) {
    .contact-form-card {
        padding: 2.5rem;
    }
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-form-icon i {
    font-size: 1.25rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    transition: all 0.3s ease;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    border-color: #3B6BA5;
    background: white;
}

.form-input:valid {
    border-color: #4CAF50;
}

.form-textarea {
    resize: none;
}

.form-check-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-input:valid~.form-check-icon {
    opacity: 1;
}

.form-check-icon i {
    color: #4CAF50;
    font-size: 1.25rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(59, 107, 165, 0.3);
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    color: white;
    border: none;
    cursor: pointer;
}

.form-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 107, 165, 0.4);
}

.form-submit-btn i {
    font-size: 1.25rem;
}

/* Quick Support */
.contact-quick-support {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.quick-support-btn {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-support-btn:hover {
    background: #E3F2FD;
    color: #3B6BA5;
    text-decoration: none;
}

/* Contact Info */
.contact-info-wrapper {
    animation: slide-in-right 0.8s ease-out forwards;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(59, 107, 165, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 107, 165, 0.15);
}

.contact-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.contact-icon-green {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.contact-icon-blue {
    background: linear-gradient(135deg, #3B6BA5, #2E5C8A);
}

.contact-icon-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-info-icon i {
    font-size: 1.5rem;
}

.contact-info-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-info-text {
    color: #1f2937;
    font-weight: 500;
}

.contact-info-subtext {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Social Media */
.contact-social-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(59, 107, 165, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-social-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.contact-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-facebook:hover {
    background: #1877f2;
    color: white;
}

.social-instagram:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: white;
}

.social-linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-youtube:hover {
    background: #ff0000;
    color: white;
}

.social-whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-btn i {
    font-size: 1.25rem;
}

/* Map Card */
.contact-map-card {
    margin-top: 2rem;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.contact-map-icon {
    width: 3rem;
    height: 3rem;
    color: #4CAF50;
    font-size: 3rem;
    margin: 0 auto 0.75rem;
}

.contact-map-title {
    color: #6b7280;
    font-weight: 500;
}

.contact-map-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #4CAF50;
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-map-link:hover {
    color: #388E3C;
    text-decoration: none;
}

.contact-map-link i {
    font-size: 1rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* Navigation Link Styles */
.nav-link {
    position: relative;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
    color: #6b7280;
    text-decoration: none;
}

.nav-link:hover {
    color: #3B6BA5;
    text-decoration: none;
}

.nav-link.active {
    color: #3B6BA5;
    border-bottom: 2px solid #3B6BA5;
}

.nav-link-mobile {
    display: block;
    padding: 0.75rem 0;
    color: #6b7280;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link-mobile:hover {
    color: #3B6BA5;
    text-decoration: none;
}

.nav-link-mobile.active {
    color: #3B6BA5;
    font-weight: 600;
    border-left: 3px solid #3B6BA5;
    padding-left: 0.75rem;
}

/* Category Button Styles */
.category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: white;
    color: #6b7280;
    border: none;
    cursor: pointer;
}

.category-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    background: #f9fafb;
}

.category-btn.active {
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 107, 165, 0.3);
    transform: scale(1.05);
}

.category-btn i {
    font-size: 0.875rem;
}

/* Section Background Alternating */
.section-bg-light {
    background: rgba(227, 242, 253, 0.3);
}

.section-bg-white {
    background: white;
}


/* Wellness Carousel Responsive Styles */
@media (max-width: 768px) {
    .wellness-swiper .swiper-slide {
        width: 220px;
    }

    .wellness-card-wrapper {
        max-width: 200px;
    }

    .wellness-card-image {
        width: 120px;
        height: 120px;
    }

    .wellness-card-title {
        font-size: 16px;
    }

    .wellness-carousel-container {
        padding: 0;
    }

    .wellness-swiper-button-prev,
    .wellness-swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .wellness-swiper-button-prev i,
    .wellness-swiper-button-next i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .wellness-swiper-button-prev,
    .wellness-swiper-button-next {
        display: none;
    }
}


/* About Page Styles */

/* Stats Section */
.about-stat-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    transform: translateY(0);
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B6BA5, #4CAF50);
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 107, 165, 0.2);
}

.about-stat-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.1);
}

.about-stat-icon i {
    font-size: 2rem;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .about-stat-number {
        font-size: 3rem;
    }
}

.about-stat-label {
    color: #6b7280;
    text-align: center;
    font-weight: 500;
}

/* Story Section */
.about-feature-box {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid;
}

.about-feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-feature-label {
    color: #4b5563;
    font-weight: 500;
}

.about-story-image {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.about-story-image:hover {
    transform: scale(1.05);
}

.about-award-card {
    padding: 1.5rem;
    border-radius: 1rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Values Section */
.about-value-card {
    position: relative;
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    transform: translateY(0);
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 107, 165, 0.2);
}

.about-value-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1) rotate(3deg);
}

.about-value-icon i {
    font-size: 2rem;
}

.about-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.75rem;
}

.about-value-description {
    color: #4b5563;
    text-align: center;
    line-height: 1.625;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-stat-card {
        padding: 1.5rem;
    }

    .about-stat-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .about-stat-icon i {
        font-size: 1.5rem;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-floating-badge {
        position: static;
        margin-top: 1rem;
    }

    .about-value-card {
        padding: 1.5rem;
    }

    .about-value-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .about-value-icon i {
        font-size: 1.5rem;
    }
}


/* Mega Menu Styles */
.mega-menu-wrapper {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
    margin-top: 20px;
    z-index: 1000;
    overflow: hidden;
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.mega-menu-content {
    padding: 0;
    overflow: hidden;
}

/* Mega Menu Banner */
.mega-menu-banner {
    background: linear-gradient(to right, #3B6BA5, #4CAF50);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-banner-content {
    flex: 1;
}

.mega-menu-banner-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
}

.mega-menu-banner-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mega-menu-shop-btn {
    background: white;
    color: #3B6BA5;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mega-menu-shop-btn:hover {
    background: #E3F2FD;
    text-decoration: none;
    color: #2E5C8A;
}

/* Mega Menu Categories */
.mega-menu-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: white;
}

.mega-menu-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #f9fafb, white);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.mega-menu-category:hover {
    background: #E3F2FD;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 107, 165, 0.2);
    text-decoration: none;
}

.mega-menu-category-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.mega-menu-category:hover .mega-menu-category-icon {
    box-shadow: 0 8px 20px rgba(59, 107, 165, 0.3);
    transform: scale(1.1);
}

.mega-menu-category-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #3B6BA5, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mega-menu-category-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.mega-menu-category:hover .mega-menu-category-title {
    color: #3B6BA5;
}

.mega-menu-category-count {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Mega Menu Featured Products */
.mega-menu-featured {
    padding: 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
}

.mega-menu-featured-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.mega-menu-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.mega-menu-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.mega-menu-product:hover {
    background: #E3F2FD;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.mega-menu-product-image {
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom right, #E8F5E9, #E1F5FE);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mega-menu-product:hover .mega-menu-product-image {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mega-menu-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    transition: transform 0.3s ease;
}

.mega-menu-product:hover .mega-menu-product-image img {
    transform: scale(1.1);
}

.mega-menu-product-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.mega-menu-product:hover .mega-menu-product-name {
    color: #3B6BA5;
}

.mega-menu-product-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 0;
}

/* Mega Menu Footer */
.mega-menu-footer {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.mega-menu-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3B6BA5;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-menu-view-all:hover {
    color: #2E5C8A;
    text-decoration: none;
}

.mega-menu-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.mega-menu-view-all:hover .mega-menu-arrow {
    transform: translateX(4px);
}

/* Responsive Mega Menu */
@media (max-width: 1024px) {
    .mega-menu {
        width: 90vw;
        max-width: 540px;
    }

    .mega-menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mega-menu {
        display: none;
    }
}

/* Products Page - Sidebar Category Buttons */
.sidebar-category-btn {
    background-color: #f9fafb;
    color: #4b5563;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-category-btn:hover {
    background-color: #e5e7eb;
    color: #1f2937;
    transform: translateX(4px);
}

.sidebar-category-btn.active {
    background: linear-gradient(135deg, #3B6BA5, #2E5C8A);
    color: white;
    border-color: #2E5C8A;
    box-shadow: 0 4px 12px rgba(59, 107, 165, 0.3);
}

.sidebar-category-btn.active:hover {
    transform: translateX(0);
    box-shadow: 0 6px 16px rgba(59, 107, 165, 0.4);
}

/* Product Card Animations */
.product-card {
    opacity: 0;
    transform: translateY(20px);
}

.product-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 4px;
}

.nav-link:hover {
    color: #3B6BA5;
}

.nav-link.active {
    color: #3B6BA5;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B6BA5, #4CAF50);
    border-radius: 2px;
}

/* Mobile Navigation Links */
.nav-link-mobile {
    display: block;
    padding: 12px 0;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.nav-link-mobile:hover {
    color: #3B6BA5;
    padding-left: 8px;
}

.nav-link-mobile.active {
    color: #3B6BA5;
    font-weight: 600;
    background-color: #f0f9ff;
    padding-left: 12px;
    border-left: 3px solid #3B6BA5;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure footer is always visible */
footer {
    position: relative;
    z-index: 1;
    clear: both;
    width: 100%;
    margin-top: auto;
}

/* Products Page Specific Styles */
.products-page-section {
    min-height: 60vh;
    margin-bottom: 0;
}

/* Ensure proper spacing before footer */
section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 3rem;
}

/* Product Grid Container */
#productGrid {
    min-height: 200px;
}