/* Mobile View - Only adjust header icons arrangement */
@media (max-width: 768px) {
    .ip_header {
        padding: 15px 20px;
        /* Keep existing web layout properties */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo adjustments */
    .ip_logo {
        order: 1;
        flex: 1;
        text-align: left;
        margin-left: 0;
    }
    
    /* Navigation sidebar - keep original positioning */
    .ip_nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 50%;
        height: calc(45vh - 10px);
        background-color: var(--ip_white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
        height: 100%;
    }
    
    .ip_nav.active {
        left: 0;
    }
    
    /* Header icons container */
    .ip_header-icons {
        order: 2;
        display: flex;
        margin-left: 0;
        padding-left: 0;
    }
    
    /* Profile container */
    .ip_profile-container {
        order: 3;
        margin-left: 10px;
    }
    
    /* Login/Signup buttons */
    .ip_login-btn, 
    .ip_signup-btn {
        order: 4;
        margin-left: 5px;
        white-space: nowrap;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* Mobile menu button */
    .ip_mobile-menu {
        order: 5;
        margin-left: 10px;
    }
    
    /* Ensure cart icon has proper spacing */
    .ip_cart-icon {
        margin-right: 5px;
    }
}

/* Very small screens adjustment */
@media (max-width: 480px) {
    .ip_login-btn, 
    .ip_signup-btn {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .ip_header-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* New styles for enhanced about boxes */
.ip_about-box {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
}

.ip_about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76,175,80,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.ip_about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.ip_about-box:hover::before {
    opacity: 1;
}

.ip_about-box:active {
    transform: translateY(0);
}

.ip_about-box.active {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ip_about-box-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-left: 40px;
}

.ip_about-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: rgba(76,175,80,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-size: 1rem;
}

.ip_about-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ip_about-box:hover .ip_about-text {
    color: #444;
}

/* Animation for click effect */
@keyframes boxClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

.ip_about-box.clicked {
    animation: boxClick 0.3s ease;
}
/* Modern About Section Styles */
.ip_modern-about {
    padding: 100px 5%;
    background-color: #ffffff;
    position: relative;
}

.ip_modern-about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
}

.ip_modern-about-content {
    flex: 1 1 55%;
    min-width: 300px;
}

.ip_modern-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
}

.ip_modern-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--ip_primary-color);
}

.ip_modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.ip_modern-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* border: 1px solid rgba(0,0,0,0.05); */
    z-index: 1;
}

.ip_modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76,175,80,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.ip_modern-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ip_modern-feature-card:hover::before {
    opacity: 1;
}

.ip_modern-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 166, 30, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ip_primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ip_modern-feature-card:hover .ip_modern-feature-icon {
    background: var(--ip_primary-color);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.ip_modern-feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.ip_modern-feature-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.ip_modern-feature-hover {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: var(--ip_primary-color);
    color: white;
    transition: all 0.4s ease;
}

.ip_modern-feature-card:hover .ip_modern-feature-hover {
    bottom: 0;
}

.ip_modern-about-image {
    flex: 1 1 40%;
    min-width: 300px;
}

.ip_modern-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
    aspect-ratio: 1/1;
}

.ip_modern-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ip_modern-image-wrapper:hover img {
    transform: scale(1.05);
}

.ip_modern-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(34, 166, 30, 0.9), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.ip_modern-image-wrapper:hover .ip_modern-image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.ip_modern-image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.ip_modern-image-overlay p {
    font-size: 1rem;
}

.ip_modern-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--ip_primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--ip_primary-color);
    box-shadow: 0 5px 15px rgba(34, 166, 30, 0.2);
}

.ip_modern-btn:hover {
    background-color: transparent;
    color: var(--ip_primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 166, 30, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ip_modern-title {
        font-size: 2rem;
    }
    
    .ip_modern-about-container {
        gap: 30px;
    }
    
    .ip_modern-feature-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .ip_modern-about {
        padding: 70px 5%;
    }
    
    .ip_modern-about-image, 
    .ip_modern-about-content {
        flex: 1 1 100%;
    }
    
    .ip_modern-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ip_modern-title {
        font-size: 1.5rem;
    }
    
    .ip_modern-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ip_modern-btn {
        width: 100%;
        text-align: center;
    }
}
   
/* Modern Sustainable Section Styles */
.ip_sustainable-section {
    padding: 100px 5%;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.ip_sustainable-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.ip_sustainable-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ip_sustainable-title {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.ip_gradient-text {
    background: linear-gradient(135deg, #22A61E 0%, #8BC34A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.ip_title-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #22A61E, #8BC34A);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.ip_sustainable-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Comparison Grid */
.ip_comparison-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
}

.ip_comparison-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.ip_comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.ip_traditional {
    border-top: 5px solid #f44336;
}

.ip_compostable {
    border-top: 5px solid #22A61E;
}

.ip_card-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ip_icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.ip_warning-icon {
    background: rgba(244,67,54,0.1);
    color: #f44336;
}

.ip_success-icon {
    background: rgba(34,166,30,0.1);
    color: #22A61E;
}

.ip_card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.ip_card-body {
    padding: 20px 30px;
}

.ip_comparison-item {
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.ip_comparison-item:last-child {
    border-bottom: none;
}

.ip_comparison-item:hover {
    transform: translateX(5px);
}

.ip_item-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ip_traditional .ip_item-icon {
    color: #f44336;
    background: rgba(244,67,54,0.1);
}

.ip_compostable .ip_item-icon {
    color: #22A61E;
    background: rgba(34,166,30,0.1);
}

.ip_comparison-item:hover .ip_item-icon {
    transform: scale(1.1);
}

.ip_item-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.ip_item-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.ip_card-footer {
    padding: 20px 30px;
    background: rgba(0,0,0,0.02);
    display: flex;
    justify-content: center;
}

.ip_environment-impact {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.ip_traditional .ip_environment-impact {
    background: rgba(244,67,54,0.1);
    color: #f44336;
}

.ip_compostable .ip_environment-impact {
    background: rgba(34,166,30,0.1);
    color: #22A61E;
}

.ip_environment-impact i {
    margin-right: 8px;
    font-size: 1rem;
}

/* VS Divider */
.ip_vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    position: relative;
    z-index: 2;
}

.ip_vs-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.ip_vs-circle::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    transform: translateX(-50%);
    z-index: -1;
}

/* CTA Section */
.ip_sustainable-cta {
    margin-top: 80px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ip_sustainable-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34,166,30,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.ip_cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.ip_cta-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

.ip_cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ip_cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ip_cta-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.ip_whatsapp-btn {
    background: #25D366;
    color: white;
}

.ip_whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.ip_phone-btn {
    background: white;
    color: #333;
    border: 2px solid #22A61E;
}

.ip_phone-btn:hover {
    background: #22A61E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34,166,30,0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ip_sustainable-title {
        font-size: 2.5rem;
    }
    
    .ip_comparison-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .ip_sustainable-section {
        padding: 80px 5%;
    }
    
    .ip_sustainable-title {
        font-size: 2.2rem;
    }
    
    .ip_vs-divider {
        width: 100%;
        margin: 30px 0;
    }
    
    .ip_vs-circle::before {
        left: -20px;
        top: 50%;
        width: calc(100% + 40px);
        height: 2px;
        transform: translateY(-50%);
    }
    
    .ip_comparison-card {
        max-width: 100%;
    }
    
    .ip_cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ip_cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ip_sustainable-section {
        padding: 60px 5%;
    }
    
    .ip_sustainable-title {
        font-size: 1.8rem;
    }
    
    .ip_sustainable-subtitle {
        font-size: 1rem;
    }
    
    .ip_card-header {
        padding: 20px;
    }
    
    .ip_card-body {
        padding: 15px 20px;
    }
    
    .ip_sustainable-cta {
        padding: 30px 20px;
    }
    
    .ip_cta-content h3 {
        font-size: 1.5rem;
    }
    
    .ip_cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ip_sustainable-title {
        font-size: 1.6rem;
    }
    
    .ip_icon-container {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .ip_card-header h3 {
        font-size: 1.3rem;
    }
    
    .ip_item-content h4 {
        font-size: 1rem;
    }
    
    .ip_item-content p {
        font-size: 0.85rem;
    }
    
    .ip_cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}