a {
    text-decoration: none;
}

/* Two-Row Premium Header */

header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 196, 106, 0.1);
}

header.scrolled-back {
    transform: translateY(-100%);
    position: sticky;
    top: 0;
    left: 0;
    transition-duration: 500ms;
    transition-property: all;
}

header.scrolled {
    transform: translateY(0);
    position: sticky;
    top: 0;
    left: 0;
    transition-duration: 500ms;
    transition-property: all;
}

.top-header {
    /* background: linear-gradient(90deg, var(--primary-green), var(--accent-orange)); */
    background: var(--primary-green);
    padding: 10px 0;
    color: white;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 13px;
}

.top-header-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-header-item i {
    font-size: 12px;
}

.top-header-item:hover {
    transform: translateY(-1px);
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 15px 8px 35px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    width: 180px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-box input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    width: 220px;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    z-index: 1;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.social-links a {
    position: relative;
    width: 30px;
    height: 30px;
    background: rgba(0, 196, 106, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    transform: translateY(-5px);
}

.social-links a {
    color: white;
    transition: var(--transition);
    font-size: 13px;
    text-decoration: none;
}

.auth-links {
    display: flex;
    gap: 15px;
}

.auth-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 13px;
}

.auth-links a:hover {
    text-decoration: underline;
}

.divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
}

.main-header {
    padding: 18px 0;
}

.main-header-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 18px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.logo-badge {
    position: relative;
    display: flex;
    align-items: center;
    
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.logo:hover .logo-icon::before {
    left: 100%;
}

.logo-icon i {
    color: white;
    font-size: 20px;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 1px;
}

.logo span {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a i {
    font-size: 14px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-green);
    background: rgba(0, 196, 106, 0.05);
}

nav ul li a:hover i {
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 12px 20px;
    border-radius: 0;
    display: block;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: rgba(0, 196, 106, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-icon {
    position: relative;
    width: 42px;
    height: 42px;
    background: rgba(0, 196, 106, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.action-icon:hover {
    background: rgba(0, 196, 106, 0.15);
    color: var(--primary-green);
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--accent-orange), #ff9a8b);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 126, 95, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.4);
}

.cta-button:hover::before {
    opacity: 1
}

/* Map input removed; iframe is fixed to coordinates */

/* Mobile Navigation */
.mobile-menu {
    display: none;
    width: 42px;
    height: 42px;
    background: rgba(0, 196, 106, 0.08);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu:hover {
    background: rgba(0, 196, 106, 0.15);
    color: var(--primary-green);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
    padding: 80px 30px 30px;
    overflow-y: auto;
}



.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 196, 106, 0.1);
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    background: rgba(0, 196, 106, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(0, 196, 106, 0.15);
    color: var(--primary-green);
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 600;
}

.mobile-nav-menu a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.mobile-nav-menu a:hover {
    background: rgba(0, 196, 106, 0.08);
    color: var(--primary-green);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 196, 106, 0.03);
    border-radius: 8px;
    margin: 5px 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
}

.mobile-dropdown-content a {
    padding-left: 50px;
    font-size: 14px;
    font-weight: 500;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle i:last-child {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i:last-child {
    transform: rotate(360deg);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.mobile-nav-actions .cta-button {
    width: 100%;
    justify-content: center;
}

.mobile-search-box {
    position: relative;
    margin-bottom: 20px;
}

.mobile-search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid rgba(0, 196, 106, 0.2);
    border-radius: 25px;
    font-size: 14px;
    background: rgba(0, 196, 106, 0.05);
}

.mobile-search-box .search-icon {
    left: 15px;
    color: var(--text-medium);
    top: 50%;
    transform: translate(5px, -50%);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 1230px) {

    .top-header-container,
    .main-header-container {
        padding: 0 30px;
    }
}

@media (max-width: 1100px) {
    .top-header-left {
        gap: 20px;
    }

    .search-box input {
        width: 150px;
    }

    .search-box input:focus {
        width: 180px;
    }
}

@media (max-width: 968px) {

    .mobile-nav.active {
        right: 0;
    }

    .top-header {
        display: none;
    }

    nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .main-header-container {
        padding: 0 20px;
    }

    .main-header .action-icons {
        display: none;
    }

    .main-header .cta-button {
        display: none;
    }
    .main-header-container {
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 22px;
    }

    .logo-tagline {
        font-size: 9px;
    }


}

/* home page */

/* Hero Section for home page */
.hero-section {
    margin-top: 0;
    position: relative;
    height: calc(100dvh - 100px);
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    padding: 60px 20px;
}

.hero-section .container {
    width: 100%;
    max-width: 1400px;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section .hero-bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-section .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.hero-section .hero-title {
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-section .hero-title span {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-section .hero-description {
    color: var(--text-medium);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-section .hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-section .hero-stats {
    display: flex;
    margin-top: 50px;
    gap: 40px;
}

.hero-section .stat-item {
    display: flex;
    flex-direction: column;
}

.hero-section .stat-value {
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 12px;
}

.hero-section .stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.hero-section .hero-image {
    position: absolute;
    right: 0;
    top: 3%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 84dvh;
    z-index: 1;
}

.hero-section .hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    /* box-shadow: var(--shadow-xl); */
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-section .hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg) scale(1.02);
}

/* Responsive Styles */
@media (max-width: 1200px) {

    .hero-section .hero-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 50px 20px;
    }

    .hero-section .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-section .hero-image {
        position: absolute;
        width: 65%;
        margin: 40px auto 0;
        transform: none;
        right: -13%;
        bottom: -20%;
        display: flex;
        align-items: flex-end;
    }

    .hero-section .hero-image img {
        transform: none;
        opacity: 0.3;
    }

    .hero-section .hero-stats {
        justify-content: left;
    }

}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-section .hero-actions {
        justify-content: left;
    }

    .hero-section .hero-stats {
        flex-wrap: wrap;
    }
}


/* Our Story Section */
.our-story {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.our-story .story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.our-story .story-visual {
    position: relative;
    height: 600px;
}

.our-story .story-image-main {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
    transition: var(--transition);
    z-index: 3;
}

.our-story .story-image-main:hover {
    transform: rotate(0deg) scale(1.02);
}

.our-story .story-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.our-story .story-image-main:hover img {
    transform: scale(1.1);
}

.our-story .story-image-secondary {
    position: absolute;
    width: 40%;
    height: 40%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.our-story .story-image-secondary:nth-child(2) {
    top: 5%;
    right: 5%;
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.our-story .story-image-secondary:nth-child(3) {
    bottom: 5%;
    left: 5%;
    z-index: 2;
    animation: float 10s ease-in-out infinite reverse;
}

.our-story .story-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-story .story-content {
    position: relative;
}

.our-story .section-badge {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-left: 60px;
}

.our-story .section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

.our-story .story-content h3 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    position: relative;
}

.our-story .story-content h3 span {
    position: relative;
    display: inline-block;
}

.our-story .story-content h3 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--light-green);
    z-index: -1;
    transform: skewX(-15deg);
}

.our-story .story-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

.our-story .story-content .about-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.our-story .highlight-text {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .our-story .story-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .our-story .story-visual {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .our-story .story-visual {
        height: 400px;
    }

    .our-story .story-image-secondary {
        display: none;
    }
}


/* Premium Features Section - Interactive Design */
.features {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.features .features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.features .features-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Interactive Card Layout */
.features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
}

.features .feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    cursor: pointer;
}

.features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-orange));
    transition: var(--transition);
}

.features .feature-card:hover::before {
    height: 100%;
}

.features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.features .feature-card.active {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.features .feature-card.active::before {
    height: 100%;
}

.features .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.features .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.features .feature-card.active .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.features .icon-1 {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    box-shadow: 0 10px 20px rgba(0, 196, 106, 0.3);
}

.features .icon-2 {
    background: linear-gradient(135deg, #ff7e5f, #ff9a8b);
    box-shadow: 0 10px 20px rgba(255, 126, 95, 0.3);
}

.features .icon-3 {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.features .icon-4 {
    background: linear-gradient(135deg, #00cec9, #81ecec);
    box-shadow: 0 10px 20px rgba(0, 206, 201, 0.3);
}

.features .icon-5 {
    background: linear-gradient(135deg, #fd79a8, #fab1a0);
    box-shadow: 0 10px 20px rgba(253, 121, 168, 0.3);
}

.features .icon-6 {
    background: linear-gradient(135deg, #fdcb6e, #ffeaa7);
    box-shadow: 0 10px 20px rgba(253, 203, 110, 0.3);
}

.features .feature-icon i {
    font-size: 20px;
    color: var(--white);
}

.features .feature-card h6 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.features .feature-card p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.features .feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.features .feature-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.features .feature-card:hover .feature-link {
    color: var(--accent-orange);
}

.features .feature-card:hover .feature-link i {
    transform: translateX(5px);
}

.features .feature-card.active .feature-link {
    color: var(--accent-orange);
}

.features .feature-card.active .feature-link i {
    transform: translateX(5px);
}




/* Responsive Design */
@media (max-width: 1024px) {
    .features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .features .features-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .features .feature-card {
        padding: 20px;
    }
}

/* Premium Meal Showcase */
.wrap {
    width: 100%;
    max-width: 1400px;
    background: var(--card);
    border-radius: 20px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
    margin: 0 auto;
}


.wrap .controls {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.wrap .left-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.wrap select#categorySelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 40px 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path fill="%23000" d="M4 6l4 4 4-4z"/></svg>') no-repeat right 12px center;
    font-weight: 600;
    min-width: 160px;
    cursor: pointer;
    border: 1px solid var(--dark-green);
}


/* Swiper container */
.wrap .swiper {
    padding: 16px 6px;
    overflow: hidden;
}

.wrap .swiper-slide {
    width: auto;
    height: auto;
    background: #fff;
    /* let Swiper control responsive sizes */
    border-radius: 14px;
}

/* Card */
.wrap .card {
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border-radius: 14px;
}

.wrap .card .media {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.wrap .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.wrap .card:hover img {
    transform: scale(1.08);
}

.wrap .badge-card {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.wrap .badge-hp {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.wrap .badge-lc {
    background: linear-gradient(135deg, #ff7e5f, #ff9a8b);
}

.wrap .badge-vg {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.wrap .badge-chef {
    background: linear-gradient(135deg, #ffd166, #ffb347);
}

.wrap .card .body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    background: #fff;
    gap: 10px;
}

.wrap .card .body .meal-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.wrap .card .body .meal-title span {
    font-size: 13px;
}

.wrap .card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e1e1e;
}

.wrap .card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4
}

.wrap .meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--dark-green);
    font-weight: 700;
    font-size: 13px
}

.wrap .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.04)
}

.wrap .price {
    font-weight: 900;
    color: var(--dark-green);
    font-size: 18px
}

.wrap .add {
    /* background: var(--dark-green);
            color: #fff; */
    padding: 4px 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* Navigation styling (Swiper's built-in) */
.wrap .swiper-button-next,
.wrap .swiper-button-prev {
    background-color: var(--dark-green);
    color: #fff;
    width: 44px;
    height: 44px;
    box-shadow: var(--shadow);
}

.wrap .swiper-button-next:after,
.wrap .swiper-button-prev:after {
    font-size: 22px;
}

.wrap .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.wrap .swiper-pagination-bullet-active {
    background: var(--green);
}

/* Responsive */
@media (max-width:900px) {
    .wrap .card {
        width: 100%;
    }
}

@media (max-width:640px) {
    .wrap .controls {
        gap: 8px;
    }

    select#categorySelect {
        min-width: 120px;
    }

    .wrap .card {
        width: 100%;
    }
}


/* Testimonials Section - Unique Design */
.testimonials-section {
    background: linear-gradient(rgba(46, 204, 113, 0.9), rgba(39, 174, 96, 0.9)),
        url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.testimonials-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.testimonials-section .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatElement 15s ease-in-out infinite;
}

.testimonials-section .floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.testimonials-section .floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 8%;
    animation-delay: 3s;
}

.testimonials-section .floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 85%;
    animation-delay: 6s;
}

.testimonials-section .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 20px;
    letter-spacing: 2px;
    /* backdrop-filter: blur(10px); */
}

.testimonials-section .section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
}

.testimonials-section .section-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Unique Swiper Container */
.testimonials-section .testimonials-swiper {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.testimonials-section .swiper-wrapper {
    align-items: center;
}

.testimonials-section .testimonial-card {
    /* background: rgba(255, 255, 255, 0.1); */
    background: #e9ecef;
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    margin: 20px 0;
}

.testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--white), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.testimonials-section .swiper-slide-active .testimonial-card {
    transform: scale(1.05);
    /* background: rgba(255, 255, 255, 0.15); */
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonials-section .swiper-slide-active .testimonial-card::before {
    transform: scaleX(1);
}

.testimonials-section .quote-icon {
    font-size: 40px;
    line-height: 42px;
    color: var(--white);
    margin: 0;
    opacity: 0.7;
    display: inline-block;
    transform: rotate(180deg);
}

.testimonials-section .quote-icon i {
    color: #1a1a1a;
}

.testimonials-section .testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    color: #1a1a1a;
}

.testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonials-section .author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.testimonials-section .author-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--white), var(--accent-orange));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.testimonials-section .swiper-slide-active .author-avatar::before {
    opacity: 1;
}

.testimonials-section .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section .author-info {
    text-align: left;
}

.testimonials-section .author-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-orange);
}

.testimonials-section .author-role {
    font-size: 14px;
    opacity: 0.8;
    color: var(--dark-green);
}

.testimonials-section .rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.testimonials-section .rating i {
    color: #ffd700;
    font-size: 18px;
}

.testimonials-section .swiper-button {
    width: 60px;
    height: 60px;
    /* background: rgba(255, 255, 255, 0.1); */
    background: var(--accent-orange);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    /* backdrop-filter: blur(10px); */
    top: 45%;
}

.testimonials-section .swiper-button::after {
    display: none;
}

.testimonials-section .swiper-button:hover {
    /* background: rgba(255, 255, 255, 0.2); */
    transform: translateY(-5px);
}

.testimonials-section .swiper-button i {
    font-size: 20px;
    color: #fff;
}

/* Pagination Dots */
.testimonials-section .swiper-pagination {
    position: relative;
    margin-top: 40px;
    z-index: 2;
}

.testimonials-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: var(--transition);
}

.testimonials-section .swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.3);
}

/* Animations */
@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(15px) rotate(240deg);
    }
}


.testimonials-section .fade-in.visible {
    padding-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-section .section-header h2 {
        font-size: 42px;
    }

    .testimonials-section .testimonial-card {
        padding: 40px 30px;
    }

    /* .testimonials-stats {
                gap: 40px;
            } */
}

@media (max-width: 768px) {
    .testimonials-section .section-header h2 {
        font-size: 36px;
    }

    .testimonials-section .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-section .author-info {
        text-align: center;
    }

    /* .testimonials-stats {
                gap: 30px;
            } */

    .testimonials-section .stat-value {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .testimonials-section .section-header h2 {
        font-size: 32px;
    }

    .testimonials-section .testimonial-card {
        padding: 30px 20px;
    }

    .testimonials-section .testimonial-text {
        font-size: 16px;
    }

    .testimonials-section .stat-value {
        font-size: 32px;
    }

    .testimonials-section .stat-label {
        font-size: 14px;
    }
}



/* Master Chef Section style */
.chef-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--lighter-green) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chef-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0) 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.chef-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.05) 0%, rgba(255, 126, 95, 0) 70%);
    border-radius: 50%;
    animation: chefpulse 12s ease-in-out infinite reverse;
}

.chef-section .chef-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.chef-section .section-title {
    margin-bottom: 50px !important;
}

/* Left Side - Chef Visual */
.chef-section .chef-visual {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-section .chef-image-container {
    position: relative;
    max-width: 450px;
    max-height: 550px;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.chef-section .chef-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.chef-section .chef-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.chef-section .chef-image-container:hover .chef-image {
    transform: scale(1.1);
}

.chef-section .chef-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    transform: rotate(-5deg);
    animation: badgeFloat 6s ease-in-out infinite;
}

.chef-section .chef-badge i {
    margin-right: 8px;
}

.chef-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.chef-section .floating-element {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    animation: cheffloatElement 8s ease-in-out infinite;
}

.chef-section .floating-element:nth-child(1) {
    top: 10%;
    right: 10%;
    width: 220px;
    animation-delay: 0s;
}

.chef-section .floating-element:nth-child(2) {
    bottom: 15%;
    left: 5%;
    width: 220px;
    animation-delay: 2s;
}

.chef-section .element-icon {
    width: 40px;
    height: 40px;
    background: var(--light-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chef-section .element-icon i {
    font-size: 18px;
    color: var(--primary-green);
}

.chef-section .element-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Right Side - Chef Content */
.chef-section .chef-content {
    position: relative;
}

.chef-section .section-subtitle {
    display: inline-block;
    margin-bottom: 40px;
    text-align: center;
}

.chef-section .chef-content h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800 !important;
    line-height: 1.1;
}

.chef-section .chef-content h2 span {
    position: relative;
    display: inline-block;
}

.chef-section .chef-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--light-green);
    z-index: -1;
    transform: skewX(-15deg);
}


.chef-section .chef-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
}

.chef-section .chef-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Chef Stats */
.chef-section .chef-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.chef-section .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-green);
}

.chef-section .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.chef-section .stat-icon {
    width: 40px;
    height: 40px;
    background: var(--light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chef-section .stat-item:hover .stat-icon {
    background: var(--primary-green);
    transform: rotate(10deg) scale(1.1);
}

.chef-section .stat-icon i {
    font-size: 15px;
    color: var(--primary-green);
    transition: var(--transition);
}

.chef-section .stat-item:hover .stat-icon i {
    color: var(--white);
}

.chef-section .stat-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.chef-section .stat-content p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Chef Signature */
.chef-section .chef-signature {
    margin: 30px 0;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-orange);
}

.chef-section .signature-quote {
    font-size: 14px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.chef-section .signature-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: var(--primary-green);
    font-family: serif;
}

.chef-section .signature-name {
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
    font-size: 14px;
}

/* Action Buttons */
.chef-section .chef-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Animations */
@keyframes chefpulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

@keyframes cheffloatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(2deg);
    }

    66% {
        transform: translateY(8px) rotate(-1deg);
    }
}


/* Responsive Design */
@media (max-width: 1100px) {
    .chef-section .chef-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chef-section .chef-visual {
        height: 550px;
    }

}

@media (max-width: 768px) {
    .chef-section .chef-visual {
        height: 450px;
    }

    .chef-section .chef-image-container {
        max-width: 450px;
        width: 90%;
        max-width: 450px;
        height: 100%;
    }

    .chef-section .floating-element {
        position: relative;
        width: 100% !important;
        margin-bottom: 15px;
        animation: none;
    }

    .chef-section .floating-elements {
        display: none;
    }

    .chef-section .chef-content h2 {
        font-size: 38px;
    }

    .chef-section .chef-stats {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 576px) {

    .chef-section .chef-badge {
        left: 10px;
        transform: rotate(0deg);
    }
}













/* inner masthead style */


.inner-masthead {
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.9) 0%, rgba(0, 168, 89, 0.9) 100%),
        url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-masthead.about-inner-masthead {
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.9) 0%, rgba(0, 168, 89, 0.9) 100%), url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inner-masthead.plans-inner-masthead {
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.85) 0%, rgba(0, 168, 89, 0.85) 100%),
        url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inner-masthead.meals-inner-masthead {
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.85) 0%, rgba(0, 168, 89, 0.85) 100%),
        url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inner-masthead.contact-inner-masthead {
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.85) 0%, rgba(0, 168, 89, 0.85) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');


    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inner-masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    display: none;
}

.inner-mastead-details {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.inner-masthead-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.inner-masthead-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.inner-masthead-breadcrumb a:hover {
    color: var(--white);
}

.inner-masthead-breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
}

.inner-masthead-title {
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.inner-masthead-subtitle {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.inner-masthead-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.inner-masthead-cta .cta-button {
    background: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(196, 93, 14, 0.3);
}

.inner-masthead-cta .cta-button::before {
    background: var(--accent-orange);
}

.inner-masthead-cta .cta-button:hover {
    box-shadow: 0 8px 20px rgba(196, 93, 14, 0.3);
}

.inner-masthead-cta .secondary-button {
    color: #fff;
    border: 2px solid #fff;
}


.inner-masthead-cta .secondary-button:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .inner-masthead {
        padding: 80px 0;
    }

    .inner-masthead-breadcrumb {
        margin-bottom: 18px;
    }
}


/* about page design */


/* About Section - Unique Layout */
.about-section {
    background: linear-gradient(135deg, var(--lighter-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about-section .features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-section .features-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.about-section .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Left Side - Creative Image Layout */
.about-section .about-visual {
    position: relative;
    height: 600px;
}

.about-section .floating-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-section .main-image {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
    transition: var(--transition);
    z-index: 3;
}

.about-section .main-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-section .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-section .main-image:hover img {
    transform: scale(1.1);
}

.about-section .floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    transition: var(--transition);
    animation: aboutFloat 6s ease-in-out infinite;
}

.about-section .floating-card:nth-child(2) {
    top: 10%;
    right: 0;
    width: 60%;
    animation-delay: 0.5s;
}

.about-section .floating-card:nth-child(3) {
    bottom: 10%;
    left: 0;
    width: 60%;
    animation-delay: 1s;
}

.about-section .card-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-section .card-icon i {
    font-size: 20px;
    color: var(--primary-green);
}

.about-section .card-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 700;
}

.about-section .card-content p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.about-section .background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-section .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0.1;
    animation: pulseShape 8s ease-in-out infinite;
}

.about-section .shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.about-section .shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.about-section .shape-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 80%;
    animation-delay: 4s;
}

/* Right Side - Content */
.about-section .about-content {
    position: relative;
}

.about-section .section-badge {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 60px;
}

.about-section .section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

.about-section .about-content h3 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    position: relative;
}


.about-section .about-content p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-section .highlight-text {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Interactive Timeline */
.about-section .timeline {
    margin: 40px 0;
    position: relative;
}

.about-section .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--light-green);
}

.about-section .timeline-item {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.about-section .timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-section .timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-green);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--light-green);
}

.about-section .timeline-year {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.about-section .timeline-content {
    font-size: 15px;
    color: var(--text-medium);
}

/* Action Buttons */
.about-section .about-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}


/* Animations */
@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes pulseShape {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.15;
    }
}

@keyframes textReveal {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.about-section .text-reveal {
    animation: textReveal 1.2s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .about-section .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section .about-visual {
        height: 500px;
    }

}

@media (max-width: 768px) {
    .about-section .about-visual {
        height: 400px;
    }

    .about-section .floating-card {
        position: absolute;
        margin-bottom: 20px;
        animation: none;
    }

    .about-section .floating-card:nth-child(2) {
        top: 1%;
        right: 0;
        width: 70%;
        animation-delay: 0.5s;
    }

    .about-section .floating-card:nth-child(3) {
        bottom: 2%;
        left: 0;
        width: 65%;
        animation-delay: 1s;
    }

    .about-section .floating-images {
        display: flex;
        flex-direction: column;
    }

    .about-section .main-image {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }


    .about-section .about-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-section .floating-card {
        position: absolute;
        margin-bottom: 20px;
        animation: none;
    }

    .about-section .floating-card:nth-child(2) {
        top: -5%;
        right: 0;
        width: 90%;
        animation-delay: 0.5s;
    }

    .about-section .floating-card:nth-child(3) {
        bottom: -2%;
        left: 0;
        width: 90%;
        animation-delay: 1s;
    }

    .about-section .section-badge {
        font-size: 12px;
        padding-left: 40px;
    }

    .about-section .section-badge::before {
        width: 25px;
    }
}



/* team section style */
.team-section {
    margin: 0 auto;
    /* padding: 80px 20px; */
    position: relative;
}


/* ----- GRID ----- */
.team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ---- FLIP CARD ---- */
.team-section .team-member {
    height: 420px;
    perspective: 1400px;
}

.team-section .member-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: var(--transition-bounce);
    transform-style: preserve-3d;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md-2);
}

.team-section .team-member:hover .member-inner {
    transform: rotateY(180deg) translateZ(0);
}

/* ---- CARD FACES ---- */
.team-section .member-front,
.team-section .member-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.team-section .member-front {
    background-color: var(--white);
}

/* Image */
.team-section .member-image {
    height: 72%;
    overflow: hidden;
}

.team-section .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    object-position: top;
}

.team-section .team-member:hover .member-image img {
    transform: scale(1.05);
}

/* Front text */
.team-section .member-front-info {
    padding: 20px;
    background: var(--white);
}

.team-section .member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--extra-text-dark);
}

.team-section .member-role {
    font-size: 14px;
    color: var(--secondary-green-1);
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin: 0;
}

/* ---- BACK CARD ---- */
.team-section .member-back {
    background: linear-gradient(135deg, var(--secondary-green-1), var(--secondary-green-2));
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    position: relative;
}

/* Texture overlay */
.team-section .member-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.team-section .member-bio {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.team-section .member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.team-section .member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-section .member-social a:hover {
    background: var(--white);
    color: var(--secondary-green-1);
    transform: translateY(-4px);
}

/* ---- ENTRY ANIMATION ---- */
@keyframes teamfadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-section .fade-in {
    animation: teamfadeInUp 0.6s ease forwards;
}

.team-section .team-member:nth-child(1) {
    animation-delay: 0.1s;
}

.team-section .team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-section .team-member:nth-child(3) {
    animation-delay: 0.3s;
}

.team-section .team-member:nth-child(4) {
    animation-delay: 0.4s;
}

/* ---- RESPONSIVE (NO FLIP) ---- */
@media (max-width: 768px) {

    .team-section .team-member {
        height: auto;
        perspective: none;
    }

    .team-section .member-inner {
        transform: none !important;
        box-shadow: var(--shadow-md-2);
        border-radius: var(--border-radius);
        display: block;
        height: auto;
    }

    .team-section .member-front,
    .team-section .member-back {
        position: relative;
        transform: none !important;
        backface-visibility: visible;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .team-section .member-front {
        background: var(--white);
        padding-bottom: 5px;
    }

    .team-section .member-image {
        height: 320px;
        overflow: hidden;
    }

    .team-section .member-back {
        margin-top: -5px;
        padding: 25px 20px;
        background: linear-gradient(135deg, var(--secondary-green-1), var(--secondary-green-2));
        color: var(--white);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .team-section .member-bio {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .team-section .member-social a {
        width: 38px;
        height: 38px;
    }

    .team-section .section-title {
        font-size: 32px;
    }
}



/* milestone section style */
.milestones-section {
    /* background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%); */
    background: linear-gradient(rgba(46, 204, 113, 0.9), rgba(39, 174, 96, 0.9)), url(https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    /* max-width: 1200px; */
    /* border-radius: 20px; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.milestones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.milestones-section .container {
    /* max-width: 1100px;
            margin: 0 auto; */
    padding: 0 20px;
    position: relative;
    z-index: 1;
}


.milestones-section .section-subtitle {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.milestones-section .section-subtitle::after {
    display: none;
}

.milestones-section .section-title {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 20px;
    letter-spacing: 2px;
}

.milestones-section .section-description {
    font-size: 18px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
}

.milestones-section .counters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.milestones-section .counter-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.milestones-section .counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.milestones-section .counter-item:hover::before {
    transform: scaleX(1);
}

.milestones-section .counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.milestones-section .counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.milestones-section .counter-item:hover .counter-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffb45c 100%);
}

.milestones-section .counter-icon i {
    font-size: 28px;
    color: var(--white);
}

.milestones-section .counter-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--text-dark);
    position: relative;
}

.milestones-section .counter-label {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    transition: var(--transition);
}

.milestones-section .counter-item:hover .counter-label {
    color: var(--text-dark);
}

/* Animation */
.milestones-section .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

.milestones-section .counter-item:nth-child(1) {
    animation-delay: 0.1s;
}

.milestones-section .counter-item:nth-child(2) {
    animation-delay: 0.2s;
}

.milestones-section .counter-item:nth-child(3) {
    animation-delay: 0.3s;
}

.milestones-section .counter-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {

    .milestones-section .counters-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .milestones-section .counter-value {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .milestones-section .counters-container {
        grid-template-columns: 1fr;
    }

    .milestones-section .counter-value {
        font-size: 32px;
    }
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--black2) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.cta-section .cta-content-heading {
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

.cta-section .cta-title {
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section .cta-description {
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-section .cta-content-heading {
        max-width: 100%;
    }
}







/* meals page design */




/* Meals Navigation */
.meals-navigation {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.meals-navigation .meals-nav-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.meals-navigation .meal-nav-item {
    padding: 8px 20px;
    font-size: 14px;
    background: var(--light-gray);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.meals-navigation .meal-nav-item.active {
    background: var(--primary-green);
    color: var(--white);
}

.meals-navigation .meal-nav-item:hover:not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

@media (max-width: 576px) {

    .meals-navigation .meals-nav-container {
        flex-direction: column;
        align-items: center;
    }

    .meals-navigation .meal-nav-item {
        width: 100%;
        text-align: center;
    }
}


/* Meals Section - Enhanced with Premium Visuals */
.meals-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    position: relative;
    overflow: hidden;
}

.meals-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 196, 106, 0.08) 0%, rgba(0, 196, 106, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: mealsectionfloat 6s ease-in-out infinite;
}

.meals-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.08) 0%, rgba(255, 126, 95, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: mealsectionfloat 8s ease-in-out infinite reverse;
}

/* Animation Keyframes */
@keyframes mealsectionfloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Enhanced Meals Grid with Premium Visuals */
.meals-section .meals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.meals-section .meal-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.meals-section .meal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.meals-section .meal-card:hover::before {
    opacity: 1;
}

.meals-section .meal-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.meals-section .meal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 126, 95, 0.3);
}

.meals-section .meal-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.meals-section .meal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.meals-section .meal-card:hover .meal-image {
    transform: scale(1.1);
}

.meals-section .meal-actions {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.meals-section .meal-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.meals-section .meal-action-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.meals-section .meal-action-btn.liked {
    background: var(--accent-orange);
    color: var(--white);
}

.meals-section .meal-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.meals-section .meal-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.meals-section .meal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.meals-section .meal-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
}

.meals-section .meal-description {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.meals-section .meal-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.meals-section .meal-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-medium);
}

.meals-section .meal-meta-item i {
    color: var(--primary-green);
}

.meals-section .meal-ingredients {
    margin-bottom: 20px;
}

.meals-section .ingredients-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.meals-section .ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meals-section .ingredient-tag {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.meals-section .meal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.meals-section .quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 8px 12px;
}

.meals-section .quantity-btn {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
}

.meals-section .quantity-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.meals-section .quantity-value {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.meals-section .add-to-cart-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
}

.meals-section .add-to-cart-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.4);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .meals-section .meals-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .meals-section .meals-grid {
        grid-template-columns: 1fr;
    }

    .meals-section .meal-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .meals-section .quantity-selector {
        justify-content: center;
    }
}

/* Featured Meals Section */
.featured-meals {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.featured-meals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.13;
}

.featured-meals .featured-swiper {
    position: relative;
    z-index: 1;
    padding: 20px 10px 60px;
}

.featured-meals .featured-slide {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.featured-meals .featured-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.featured-meals .featured-image {
    height: 260px;
    overflow: hidden;
}

.featured-meals .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-meals .featured-slide:hover .featured-image img {
    transform: scale(1.1);
}

.featured-meals .featured-content {
    padding: 20px;
}

.featured-meals .featured-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.featured-meals .featured-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.featured-meals .featured-description {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.featured-meals .featured-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.featured-meals .featured-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.featured-meals .swiper-slide {
    height: auto;
}

.featured-meals .swiper-button-next,
.featured-meals .swiper-button-prev {
    background: var(--primary-green);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.featured-meals .swiper-button-next:after,
.featured-meals .swiper-button-prev:after {
    font-size: 20px;
}

.featured-meals .swiper-pagination {
    display: none;
}



.swiper-button-next,
.swiper-button-prev {
    background: var(--primary-green);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination {
    display: none;
}









/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-green);
}

.cart-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-medium);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: var(--medium-gray);
    color: var(--text-dark);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.cart-empty h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-empty p {
    font-size: 14px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.cart-item-price {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 5px 10px;
}

.cart-item-quantity button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-medium);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-quantity button:hover {
    background: var(--primary-green);
    color: var(--white);
}

.cart-item-quantity span {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--accent-orange);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    padding: 5px;
    border-radius: 4px;
}

.cart-item-remove:hover {
    background: rgba(255, 126, 95, 0.1);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--medium-gray);
    background: var(--white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.cart-total-price {
    color: var(--primary-green);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.continue-shopping-btn {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--medium-gray);
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.continue-shopping-btn:hover {
    background: var(--light-gray);
}

/* Meals Page Specific Styles - Premium Design */


@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Favorites Sidebar Styles */
.favorites-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.favorites-sidebar.active {
    right: 0;
}

.favorites-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.favorites-overlay.active {
    opacity: 1;
    visibility: visible;
}

.favorites-header {
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
}

.favorites-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.favorites-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.favorites-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.favorites-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.favorites-empty i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.favorites-empty h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.favorites-empty p {
    font-size: 14px;
}

.favorites-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.favorite-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    position: relative;
}

.favorite-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.favorite-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-item-details {
    flex: 1;
}

.favorite-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.favorite-item-price {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 10px;
}

.favorite-item-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.favorite-item-add-to-cart {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.favorite-item-add-to-cart:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.favorite-item-remove {
    background: none;
    border: none;
    color: var(--accent-orange);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    padding: 5px;
    border-radius: 4px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}

.favorite-item-remove:hover {
    background: rgba(255, 126, 95, 0.1);
}

.favorites-footer {
    padding: 20px;
    border-top: 1px solid var(--medium-gray);
    background: var(--white);
}

.favorites-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.view-all-favorites-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.view-all-favorites-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.continue-shopping-favorites-btn {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--medium-gray);
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.continue-shopping-favorites-btn:hover {
    background: var(--light-gray);
}

.favorites-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.favorites-badge:not(:empty) {
    display: flex;
}

/* Simple Share Icons Popup Styles */
/* .share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

.share-icons-popup {
    position: fixed;
    z-index: 10001;
    display: none;
    background: var(--white);
    border-radius: 50px;
    padding: 8px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
}

.share-icon.facebook {
    background: #1877f2;
}

.share-icon.facebook:hover {
    background: #1565c0;
    transform: scale(1.1);
}

.share-icon.twitter {
    background: #1da1f2;
}

.share-icon.twitter:hover {
    background: #0d8bd9;
    transform: scale(1.1);
}

.share-icon.whatsapp {
    background: #25d366;
}

.share-icon.whatsapp:hover {
    background: #1da851;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .favorites-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
} */














/* plans page design */


/* Plans Navigation */
/* .plans-navigation {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.plans-nav-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.plan-nav-item {
    padding: 8px 20px;
    background: var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.plan-nav-item.active {
    background: var(--primary-green);
    color: var(--white);
}

.plan-nav-item:hover:not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
} */

/* Plans Section - Enhanced with Premium Visuals */
.plans-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 196, 106, 0.08) 0%, rgba(0, 196, 106, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: planfloat 6s ease-in-out infinite;
}

.plans-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.08) 0%, rgba(255, 126, 95, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: planfloat 8s ease-in-out infinite reverse;
}

@keyframes planfloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Enhanced Plans Grid with Premium Visuals */
.plans-section .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.plans-section .plan-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plans-section .plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.plans-section .plan-card:hover::before {
    opacity: 1;
}

.plans-section .plan-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-xl);
}

.plans-section .plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.plans-section .plan-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.plans-section .plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 126, 95, 0.3);
}

.plans-section .plan-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.plans-section .plan-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.plans-section .plan-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.2);
}

.plans-section .plan-card:hover .plan-icon {
    background: var(--primary-green);
    transform: rotate(10deg) scale(1.1);
}

.plans-section .plan-icon i {
    font-size: 25px;
    color: var(--primary-green);
    transition: var(--transition);
}

.plans-section .plan-card:hover .plan-icon i {
    color: var(--white);
}

.plans-section .plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.plans-section .plan-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.plans-section .plan-price {
    padding: 25px 30px;
    text-align: center;
    background: var(--light-gray);
    border-bottom: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.plans-section .plan-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1556909114-0e1aa0452b44?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.plans-section .price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.plans-section .price-period {
    color: var(--text-medium);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.plans-section .price-savings {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.plans-section .plan-features {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.plans-section .feature-list {
    list-style: none;
    margin-bottom: 0;
}

.plans-section .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-medium);
    padding: 8px 0;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
    padding: 0;
}

.plans-section .feature-list li i {
    color: var(--primary-green);
    margin-right: 12px;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.plans-section .feature-list li.disabled {
    color: var(--text-light);
}

.plans-section .feature-list li.disabled i {
    color: var(--text-light);
}

.plans-section .plan-actions {
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
}

.plans-section .plan-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.plans-section .plan-button.primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
}

.plans-section .plan-button.primary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.4);
}

.plans-section .plan-button.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.plans-section .plan-button.secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .plans-section .plan-card.featured {
        transform: scale(1);
    }

    .plans-section .plan-card.featured:hover {
        transform: translateY(-15px);
    }

}

@media (max-width: 768px) {
    .plans-section .plans-grid {
        grid-template-columns: 1fr;
    }

    .plans-section .plan-card.featured {
        transform: scale(1);
    }

}







/* How It Works Section - Enhanced */
.how-it-works {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.19;
}

.how-it-works .steps-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.how-it-works .steps-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border: 2px dashed var(--dark-green);
    z-index: 2;
    height: 0;
}

.how-it-works .step-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.how-it-works .step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
}

.how-it-works .step-card:hover::before {
    opacity: 1;
}

.how-it-works .step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.how-it-works .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 196, 106, 0.2);
}

.how-it-works .step-card:hover .step-number {
    background: var(--primary-green);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.how-it-works .step-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.how-it-works .step-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .how-it-works .steps-container {
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .how-it-works .steps-container::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .how-it-works .steps-container {
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .how-it-works .steps-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        border: 2px dashed var(--dark-green);
        z-index: 2;
        display: block;
        width: 0;
    }
}

/* Fade-in animation setup for how to work block */
/* default (hidden) */
.fade-in-step {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

/* visible state */
.fade-in-step.visible {
    opacity: 1;
    transform: translateY(0);
}





/* FAQ section style */
.faq-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Inner container */
.faq-section .container {
    /* max-width: 900px; */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}


.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00c46a, #00a85d);
    border-radius: 2px;
}


/* FAQ Container */
.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* FAQ Item */
.faq-section .faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.faq-section .faq-item.animate {
    animation: faqFadeInUp 0.5s ease forwards;
}

/* Gradient bar on active */
.faq-section .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #00c46a, #00a85d);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.faq-section .faq-item.active {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.faq-section .faq-item.active::before {
    opacity: 1;
}

/* Question */
.faq-section .faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: all 0.35s ease;
}

.faq-section .faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.faq-section .faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.faq-section .faq-item.active .faq-question h3 {
    color: #00a85d;
    font-weight: 700;
}

/* Icon */
.faq-section .faq-icon {
    width: 35px;
    height: 35px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
}

.faq-section .faq-icon i {
    color: var(--primary-green);
    font-size: 14px;
    transition: all 0.35s ease;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
}


/* Answers — Smooth Animation */
.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition:
        max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s ease;
    background: white;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 0 20px;
}

/* Answer text fade & slide */
.faq-section .faq-answer-content {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    padding: 0 30px;
}

.faq-section .faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-section .faq-answer p {
    color: var(--black2);
    line-height: 1.5;
    font-size: 15px;
}

.faq-section .faq-answer p:last-child {
    margin-bottom: 0;
}

/* Animation Keyframes */
@keyframes faqFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }

    .faq-section .section-title {
        font-size: 36px;
    }

    .faq-section .faq-question {
        padding: 20px;
    }

    .faq-section .faq-answer-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .faq-section .section-title {
        font-size: 28px;
    }

    .faq-section .faq-question {
        padding: 18px 15px;
    }

    .faq-section .faq-icon {
        width: 36px;
        height: 36px;
    }
}










/* contact page design */
/* Contact Info Section */
.contact-info-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 196, 106, 0.08) 0%, rgba(0, 196, 106, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: contactInfofloat 6s ease-in-out infinite;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.08) 0%, rgba(255, 126, 95, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: contactInfofloat 8s ease-in-out infinite reverse;
}

/* Animation Keyframes */
@keyframes contactInfofloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Contact Cards */
.contact-info-section .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* margin-bottom: 80px; */
    position: relative;
    z-index: 1;
}

.contact-info-section .contact-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-section .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 196, 106, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
}

.contact-info-section .contact-card:hover::before {
    opacity: 1;
}

.contact-info-section .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.contact-info-section .contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.2);
}

.contact-info-section .contact-card:hover .contact-icon {
    background: var(--primary-green);
    transform: rotate(10deg) scale(1.1);
}

.contact-info-section .contact-icon i {
    font-size: 25px;
    color: var(--primary-green);
    transition: var(--transition);
}

.contact-info-section .contact-card:hover .contact-icon i {
    color: var(--white);
}

.contact-info-section .contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-info-section .contact-card p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-info-section .contact-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info-section .contact-link:hover {
    color: var(--dark-green);
    transform: translateX(5px);
}



/* Contact Form & Map Section */
.contact-form-map-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.contact-form-map-section .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Contact Form */
.contact-form-map-section .contact-form-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-map-section .contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.contact-form-map-section .form-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-form-map-section .form-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-form-map-section .form-header p {
    color: var(--text-medium);
    font-size: 16px;
}

.contact-form-map-section .contact-form {
    position: relative;
    z-index: 1;
}

.contact-form-map-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* margin-bottom: 20px; */
}

.contact-form-map-section .form-group {
    margin-bottom: 20px;
}

.contact-form-map-section .form-label {
    display: block;
    /* margin-bottom: 8px; */
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-form-map-section .form-input,
.contact-form-map-section .form-textarea,
.contact-form-map-section .form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
    background: var(--light-gray);
    font-family: 'Montserrat', sans-serif;
}

.contact-form-map-section .form-input:focus,
.contact-form-map-section .form-textarea:focus,
.contact-form-map-section .form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 196, 106, 0.1);
}

.contact-form-map-section .form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-map-section .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.contact-form-map-section .submit-button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-map-section .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: 1;
}

.contact-form-map-section .submit-button:hover::before {
    left: 100%;
}

.contact-form-map-section .submit-button:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.4);
}

/* Map Container */
.contact-form-map-section .map-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 600px;
}

#contact-map {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.google-map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.contact-form-map-section .map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.contact-form-map-section .map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-form-map-section .map-address h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-form-map-section .map-address p {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 0;
}

.contact-form-map-section .map-directions {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-form-map-section .map-directions:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .contact-form-map-section .contact-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-map-section .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-map-section .map-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {

    .contact-form-map-section .contact-form-container {
        padding: 25px 20px;
    }
}












/* Premium Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
    border-radius: 2px;
}

.footer-column p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.footer-column ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-column ul li a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

footer .social-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
    gap: 10px;
}

footer .social-links a i.fab {
    font-size: 16px;
}

footer .social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

footer .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Premium Animations */

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 196, 106, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 5s ease-in-out infinite;
}


@media (max-width: 992px) {


    .meal-slide {
        min-width: 300px;
    }
}

@media (max-width: 768px) {

    .mobile-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: left 0.4s ease;
        box-shadow: var(--shadow-xl);
        z-index: 999;
        padding: 30px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .meal-slider-arrow {
        display: none;
    }

    .meal-slider-container {
        padding: 10px;
    }
}

@media (max-width: 576px) {

    .section-title h2 {
        font-size: 28px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .meal-slide {
        min-width: 260px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Authentication Modal Styles */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* display: flex;
            align-items: center;
            justify-content: center; */
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    /* backdrop-filter: blur(5px); */
    padding: 20px;
    overflow: auto;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 550px;
    overflow: auto;
    transform: translateY(30px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: relative;
    margin: 0 auto;
}

.auth-modal.active .auth-container {
    transform: translateY(0);
}

.auth-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 20px;
    color: white;
    text-align: center;
    position: relative;
}

.auth-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.auth-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.auth-logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.auth-logo-text {
    font-size: 22px;
    font-weight: 800;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.auth-body {
    padding: 20px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.form-input {
    padding: 14px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--light-gray);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 196, 106, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    accent-color: var(--primary-green);
}

.forgot-password {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-button {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.auth-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.4);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-light);
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--medium-gray);
}

.auth-divider span {
    padding: 0 15px;
}

.social-auth {
    display: flex;
    gap: 15px;
}

.social-button {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.social-button.google {
    color: #DB4437;
}

.social-button.facebook {
    color: #4267B2;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-medium);
}

.auth-switch {
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.auth-switch:hover {
    text-decoration: underline;
}

/* Registration specific styles */
.name-fields {
    display: flex;
    gap: 15px;
}

.name-fields .form-group {
    flex: 1;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

.terms input {
    margin-top: 3px;
    accent-color: var(--primary-green);
}

.terms a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.terms a:hover {
    text-decoration: underline;
}

/* Success message */
.auth-success {
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.success-message {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}















/* ProteinFuel Page Loader Styles */
.fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00c46a 0%, #00a859 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fullscreen-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.fullscreen-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.fullscreen-logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.fullscreen-logo-text {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.fullscreen-logo-text span {
    font-weight: 300;
}

.circular-loader {
    width: 120px;
    height: 120px;
    position: relative;
}

.circular-loader-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #e8f8f1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 196, 106, 0.2);
}

.circular-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#00c46a 0%, #e8f8f1 0%);
    animation: progressFill 3s linear;
    mask: radial-gradient(transparent 55px, #000 56px);
    -webkit-mask: radial-gradient(transparent 55px, #000 56px);
}

.loader-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00c46a, #00a859);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 196, 106, 0.3);
}

.text-loader {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 30px 0;
}

.text-loader span {
    display: inline-block;
    animation: textWave 1.5s infinite ease-in-out;
}

.text-loader span:nth-child(1) {
    animation-delay: 0.1s;
}

.text-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.text-loader span:nth-child(3) {
    animation-delay: 0.3s;
}

.text-loader span:nth-child(4) {
    animation-delay: 0.4s;
}

.text-loader span:nth-child(5) {
    animation-delay: 0.5s;
}

.text-loader span:nth-child(6) {
    animation-delay: 0.6s;
}

.text-loader span:nth-child(7) {
    animation-delay: 0.7s;
}

.text-loader span:nth-child(8) {
    animation-delay: 0.8s;
}

.text-loader span:nth-child(9) {
    animation-delay: 0.9s;
}

.text-loader span:nth-child(10) {
    animation-delay: 1.0s;
}

.fullscreen-progress {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 20px;
}

.fullscreen-progress-bar {
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 3px;
    animation: fullscreenProgress 3s ease-in-out;
}

@keyframes progressFill {
    0% {
        background: conic-gradient(#00c46a 0%, #e8f8f1 0%);
    }

    100% {
        background: conic-gradient(#00c46a 100%, #e8f8f1 0%);
    }
}

@keyframes textWave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fullscreenProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .fullscreen-logo-text {
        font-size: 2rem;
    }

    .fullscreen-progress {
        width: 250px;
    }
}








/* high protein page design starts here */

/* high protein meal section */

.different-meals-section {
    padding: 80px 0;
    background: var(--white);
}

.different-meals-section .meals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-meals-section .meal-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.different-meals-section .meal-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.different-meals-section .meal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 126, 95, 0.3);
}

.different-meals-section .meal-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.different-meals-section .meal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.different-meals-section .meal-card:hover .meal-image {
    transform: scale(1.1);
}

.different-meals-section .meal-actions {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.different-meals-section .meal-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.different-meals-section .meal-action-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.different-meals-section .meal-action-btn.liked {
    background: var(--accent-orange);
    color: var(--white);
}

.different-meals-section .meal-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.different-meals-section .meal-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.different-meals-section .meal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.different-meals-section .meal-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
}

.different-meals-section .meal-description {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.different-meals-section .meal-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.different-meals-section .meal-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-medium);
}

.different-meals-section .meal-meta-item i {
    color: var(--primary-green);
}

.different-meals-section .meal-ingredients {
    margin-bottom: 20px;
}

.different-meals-section .ingredients-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.different-meals-section .ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.different-meals-section .ingredient-tag {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.different-meals-section .meal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.different-meals-section .quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 8px 12px;
}

.different-meals-section .quantity-btn {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
}

.different-meals-section .quantity-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.different-meals-section .quantity-value {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.different-meals-section .add-to-cart-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 196, 106, 0.3);
}

.different-meals-section .add-to-cart-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 196, 106, 0.4);
}


@media (max-width: 768px) {

    .different-meals-section .meals-grid {
        grid-template-columns: 1fr;
    }

    .different-meals-section .meal-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .different-meals-section .quantity-selector {
        justify-content: center;
    }
}



/* protein calculator section style */
/* Protein Calculator Section */
.meals-calculator {
    position: relative;
    overflow: hidden;
}

.meals-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}

.meals-calculator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 247, 239, 0.9) 100%);
    z-index: -1;
}


.meals-calculator .calculator-container {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.meals-calculator .calculator-form-container {
    flex: 1;
    padding: 40px;
    background: var(--white);
}

.meals-calculator .calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meals-calculator .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.meals-calculator .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.meals-calculator .form-group input,
.meals-calculator .form-group select {
    padding: 12px 15px;
    border: 1px solid var(--text-medium);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.meals-calculator .form-group input:focus,
.meals-calculator .form-group select:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.meals-calculator .calculate-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.meals-calculator .calculate-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.meals-calculator .result-container {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.meals-calculator .result-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.meals-calculator .result-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.meals-calculator .result-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.meals-calculator .result-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.meals-calculator .result-description {
    margin-top: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.meals-calculator .result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.meals-calculator .result-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.meals-calculator .result-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.meals-calculator .result-placeholder p {
    opacity: 0.8;
}

.meals-calculator .result-container:not(.active) .result-content {
    display: none;
}

.meals-calculator .result-container.active .result-placeholder {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .meals-calculator .calculator-container {
        flex-direction: column;
    }

    .meals-calculator .result-container {
        min-height: 300px;
    }

    .meals-calculator .section-subtitle {
        font-size: 2rem;
    }
}


