/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 60/30/10 Color Rule Implementation */
:root {
    /* 60% - Dominant Color (Background/Base) */
    --dominant-color: #f8f9fa;
    --dominant-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    /* 30% - Secondary Color (Supporting Elements) */
    --secondary-color: #6c757d;
    --secondary-gradient: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    
    /* 10% - Accent Color (Highlights/Calls-to-Action) - Changed to Light Green */
    --accent-color: #28a745;
    --accent-gradient: linear-gradient(45deg, #28a745 0%, #20c997 100%);
    
    /* Additional supporting colors */
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
}

/* Ombre Background Gradients - Updated for 60/30/10 Rule */
body {
    background: var(--dominant-gradient);
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger menu animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: none;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    z-index: 1;
}

/* Discount Banner */
.discount-banner {
    background: linear-gradient(45deg, #28a745, #20c997, #28a745);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    padding: 12px 0;
    width: 100%;
    position: relative;
    z-index: 10;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.discount-icon {
    font-size: 1.5rem;
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.discount-text {
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.discount-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.discount-btn {
    background: var(--white);
    color: #28a745;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.discount-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* New Hero Layout */
.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: calc(100vh - 60px);
}

.hero-content {
    max-width: 100%;
    z-index: 2;
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    padding-left: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding-left: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-left: 0;
}

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

.bubble-container {
    position: relative;
    width: 250px;
    height: 250px;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.bubble-1 {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 35px;
    animation-delay: 0s;
}

.bubble-2 {
    width: 45px;
    height: 45px;
    top: 70px;
    right: 55px;
    animation-delay: 1s;
}

.bubble-3 {
    width: 75px;
    height: 75px;
    bottom: 35px;
    left: 20px;
    animation-delay: 2s;
}

.bubble-4 {
    width: 35px;
    height: 35px;
    top: 30px;
    right: 15px;
    animation-delay: 3s;
}

.bubble-5 {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 35px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-left: 20px;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bubble-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    top: 100px;
    right: 80px;
    animation-delay: 1s;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    bottom: 50px;
    left: 30px;
    animation-delay: 2s;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    top: 50px;
    right: 20px;
    animation-delay: 3s;
}

.bubble-5 {
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://t3.ftcdn.net/jpg/13/20/92/96/360_F_1320929615_9EyhHFmiv4QtfxxI5SuveqJ7ZIa90g2s.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    text-align: center;
    color: var(--white);
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section - Reduced spacing */
.features {
    background: var(--dominant-gradient);
    padding: 0;
    margin-top: -20px;
    color: var(--text-dark);
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 300px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    background: var(--secondary-gradient);
    padding: 50px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Products Section */
.product-categories {
    background: var(--dominant-gradient);
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-tab.active,
.category-tab:hover {
    background: var(--accent-gradient);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.product-image {
    position: relative;
    height: 250px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: var(--dominant-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-specs span {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.size-option {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-actions {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.buy-now-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* Contact Section */
.contact-info {
    background: var(--secondary-gradient);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-hours {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Contact Form */
.contact-form-section {
    background: var(--dominant-gradient);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-map {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.contact-map h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 2rem;
}

.map-placeholder {
    height: 200px;
    background: var(--secondary-gradient);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 30px;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.facility-info h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.facility-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-gradient);
    padding: 80px 0;
    color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--accent-gradient);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 2px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-slide-in {
    animation: slideInRight 1s ease-out 0.3s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        margin-right: 10px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Ensure navbar is always visible on mobile */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    /* Add padding to body to account for fixed navbar */
    body {
        padding-top: 60px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 0;
        min-height: 80vh;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        min-height: calc(85vh - 60px);
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .discount-content {
        flex-direction: column;
        gap: 12px;
    }

    .discount-text {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 6px;
    }

    .discount-highlight {
        font-size: 0.85rem;
    }

    .hero-content {
        padding: 0 25px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
        line-height: 1.2;
        padding-left: 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
        line-height: 1.6;
        padding-left: 0;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
        margin-top: 8px;
        padding-left: 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .bubble-container {
        width: 200px;
        height: 200px;
    }

    .features {
        padding: 15px 0;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .features-grid {
        gap: 25px;
        margin-top: 25px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .feature-card {
        padding: 25px 18px;
        max-width: 280px;
    }

    .stats {
        padding: 30px 0;
    }

    .stats-grid {
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid,
    .stats-grid,
    .products-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
    }

    .hero-main {
        gap: 25px;
        min-height: calc(100vh - 60px);
    }

    .discount-text {
        font-size: 0.85rem;
    }

    .discount-highlight {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    .discount-btn {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        padding-left: 0;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
        padding-left: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-left: 0;
    }

    .btn {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .bubble-container {
        width: 150px;
        height: 150px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .features {
        padding: 10px 0;
        text-align: center;
    }

    .stats {
        padding: 25px 0;
    }

    .feature-card {
        padding: 20px 12px;
        max-width: 250px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 12px;
    }

    /* Enhanced mobile navigation */
    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 60px;
        padding: 15px 0;
    }

    .nav-link {
        padding: 12px 0;
        font-size: 1rem;
    }

    /* Enhanced mobile forms */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }

    /* Enhanced mobile buttons */
    .btn {
        min-height: 44px; /* Better touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Enhanced mobile product cards */
    .product-card {
        margin-bottom: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-info p {
        font-size: 0.9rem;
    }

    /* Enhanced mobile contact cards */
    .contact-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Enhanced mobile FAQ */
    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 15px 15px;
    }

    /* Enhanced mobile footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }

    /* Enhanced mobile newsletter */
    .newsletter-form {
        gap: 15px;
    }

    .newsletter-form input {
        font-size: 16px;
        padding: 12px 15px;
    }

    /* Enhanced mobile timeline */
    .timeline-item {
        margin-bottom: 30px;
    }

    .timeline-year {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    /* Enhanced mobile team */
    .team-member {
        margin-bottom: 25px;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .member-title {
        font-size: 0.9rem;
    }

    /* Enhanced mobile certifications */
    .cert-item {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .cert-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cert-item h3 {
        font-size: 1.1rem;
    }

    /* Enhanced mobile facility showcase */
    .facility-item {
        margin-bottom: 20px;
    }

    .facility-item img {
        height: 200px;
    }

    .facility-item h3 {
        font-size: 1.2rem;
    }

    /* Enhanced mobile partners */
    .partner-category {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .partner-category h3 {
        font-size: 1.2rem;
    }

    .partner-item {
        padding: 8px 0;
    }

    .partner-item span {
        font-size: 0.9rem;
    }

    /* Enhanced mobile stats */
    .stat-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

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

        .stat-card .stat-label {
        font-size: 0.9rem;
    }
}

/* Additional Mobile Responsiveness Enhancements */

/* Touch-friendly interactive elements */
@media (max-width: 768px) {
    /* Ensure all clickable elements are at least 44px for touch */
    .nav-link,
    .btn,
    .category-tab,
    .size-option,
    .faq-question {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve form usability on mobile */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better spacing for mobile lists */
    .footer-section ul li {
        margin-bottom: 8px;
    }

    /* Improve mobile table responsiveness */
    table {
        font-size: 0.9rem;
    }

    /* Ensure images don't overflow on mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better mobile grid layouts */
    .products-grid,
    .contact-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile navigation already handled in main mobile media query */

    /* Better mobile hero section */
    .hero {
        background-attachment: scroll; /* Better performance on mobile */
    }

    /* Improve mobile loading performance */
    .animate-on-scroll {
        animation-duration: 0.6s;
    }
}

/* Additional tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
    }

    .hero-main {
        min-height: calc(70vh - 60px);
    }

    .nav-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .feature-icon,
    .contact-icon,
    .cert-icon {
        background-size: cover;
    }
}

/* Print styles for better printing */
@media print {
    .navbar,
    .hero-buttons,
    .newsletter-section,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Mobile-specific accessibility improvements */
@media (max-width: 768px) {
    /* Improve focus indicators for mobile */
    .btn:focus,
    .nav-link:focus,
    .category-tab:focus,
    .faq-question:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
    }

    /* Better contrast for mobile text */
    .hero-title,
    .hero-subtitle,
    .section-title,
    .page-title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    /* Improve mobile form accessibility */
    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
    }

    /* Better mobile button spacing */
    .hero-buttons {
        gap: 15px;
    }

    .btn {
        margin: 0;
    }

    /* Improve mobile card readability */
    .feature-card,
    .product-card,
    .contact-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Better mobile image loading */
    img {
        loading: lazy;
    }

    /* Improve mobile scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Better mobile text selection */
    ::selection {
        background-color: var(--accent-color);
        color: var(--white);
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) {
    .feature-card,
    .product-card,
    .contact-card {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Additional Utility Classes */
.bulk-inquiry {
    background: var(--secondary-gradient);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.bulk-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.bulk-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Page Specific Styles */
.about-story {
    background: var(--dominant-gradient);
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-image img {
    width: 100%;
    max-width: 800px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
}

.story-image img:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
}

.mission-vision {
    background: var(--secondary-gradient);
    padding: 80px 0;
    color: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mission-card:hover,
.vision-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.values {
    background: var(--dominant-gradient);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.timeline {
    background: var(--secondary-gradient);
    padding: 80px 0;
    color: var(--white);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    border: 2px solid var(--accent-color);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin: 0 30px;
    flex: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.timeline-content:hover {
    border-color: var(--accent-color);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.team {
    background: var(--dominant-gradient);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
}

.certifications {
    background: var(--secondary-gradient);
    padding: 80px 0;
    color: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cert-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-color), #00d4ff, var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 15px;
}

.cert-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 30px rgba(40, 167, 69, 0.3),
        0 0 20px rgba(40, 167, 69, 0.2),
        0 0 40px rgba(40, 167, 69, 0.1);
    border: 2px solid var(--accent-color);
}

.cert-item:hover::before {
    opacity: 0.1;
}

.cert-item:hover .cert-icon {
    background: linear-gradient(45deg, #20c997, var(--accent-color));
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    transform: scale(1.1);
}

.cert-item:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cert-item:hover p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.cert-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.cert-item p {
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .story-content,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 40px;
    }

    .timeline-year {
        position: absolute;
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
    }

    .timeline-content {
        margin: 0;
        margin-left: 20px;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: none;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--border-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}





.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%), url('https://as2.ftcdn.net/jpg/01/58/21/11/1000_F_158211165_Cd8GwaBmQqDDm5IBBxlNs4QjrTQ0g41j.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
}



.contact-hero .container {
    position: relative;
    z-index: 3;
}



.contact-hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

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

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7), 2px 2px 4px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.6);
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--white);
    line-height: 1.6;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6);
}

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

.contact-hero .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.contact-hero .btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.contact-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.contact-hero .btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.contact-hero .btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Responsive adjustments for contact hero */
@media (max-width: 768px) {
    .contact-hero {
        height: 100vh;
    }
    

    

    
    .contact-hero .hero-content {
        padding: 40px 0;
        margin-left: 0;
        transform: none;
        max-width: 100%;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .contact-hero .hero-buttons {
        gap: 15px;
    }
    
    .contact-hero .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 100vh;
    }
    
    .contact-hero .hero-content {
        padding: 40px 0;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .contact-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .contact-hero .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Facility Showcase Section */
.facility-showcase {
    background: var(--dominant-gradient);
    padding: 80px 0;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.facility-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.facility-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-item:hover img {
    transform: scale(1.05);
}

.facility-item h3 {
    padding: 25px 25px 15px;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

.facility-item p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for facility showcase */
@media (max-width: 768px) {
    .facility-showcase {
        padding: 60px 0;
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .facility-item h3 {
        padding: 20px 20px 10px;
        font-size: 1.2rem;
    }
    
    .facility-item p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .facility-showcase {
        padding: 50px 0;
    }
    
    .facility-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .facility-item img {
        height: 180px;
    }
    
    .facility-item h3 {
        padding: 15px 15px 8px;
        font-size: 1.1rem;
    }
    
    .facility-item p {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }
}

/* About Home Section */
.about-home {
    background: var(--dominant-gradient);
    padding: 60px 0;
    color: var(--text-dark);
}

.about-home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
}

.about-image img:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
}

/* Responsive design for about home section */
@media (max-width: 768px) {
    .about-home {
        padding: 60px 0;
    }
    
    .about-home-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .about-highlights {
        align-items: center;
        gap: 12px;
        margin: 25px 0;
    }
    
    .highlight-item {
        font-size: 1rem;
        gap: 12px;
    }
    
    .highlight-item i {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .about-image img {
        height: 560px;
    }
}

@media (max-width: 480px) {
    .about-home {
        padding: 50px 0;
    }
    
    .about-home-content {
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .about-highlights {
        gap: 10px;
        margin: 20px 0;
    }
    
    .highlight-item {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .highlight-item i {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .about-image img {
        height: 220px;
    }
}

/* Distribution Partners Section */
.distribution-partners {
    background: var(--dominant-gradient);
    padding: 80px 0;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.home-partners .section-subtitle {
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    font-size: 1.3rem;
}

.home-partners .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.partner-category {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.partner-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.partner-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-category h3 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.partner-item:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

.partner-item i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.partner-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive design for distribution partners */
@media (max-width: 768px) {
    .distribution-partners {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .partner-category {
        padding: 25px;
    }
    
    .partner-category h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .partner-item {
        gap: 10px;
        padding: 6px 0;
    }
    
    .partner-item span {
        font-size: 0.95rem;
    }
    
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .distribution-partners {
        padding: 50px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .partners-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .partner-category {
        padding: 20px;
    }
    
    .partner-category h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .partner-item {
        gap: 8px;
        padding: 5px 0;
    }
    
    .partner-item span {
        font-size: 0.9rem;
    }
    
    .partners-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.85rem;
    }
}

/* Home Partners Section */
.home-partners {
    background: var(--secondary-gradient);
    padding: 60px 0;
    color: var(--white);
    position: relative;
}

.home-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.home-partners .container {
    position: relative;
    z-index: 2;
}

.partners-showcase {
    margin: 50px 0;
}

.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover i {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.partner-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.partners-stats-home {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item-home {
    text-align: center;
    padding: 20px;
}

.stat-number-home {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-home {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.partners-cta {
    text-align: center;
    margin-top: 40px;
}

.partners-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.partners-cta .btn:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive design for home partners */
@media (max-width: 768px) {
    .home-partners {
        padding: 60px 0;
    }
    
    .partner-row {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .partner-logo {
        padding: 20px 15px;
        min-width: 120px;
    }
    
    .partner-logo i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .partner-logo span {
        font-size: 0.9rem;
    }
    
    .partners-stats-home {
        gap: 40px;
        margin: 40px 0;
    }
    
    .stat-number-home {
        font-size: 2.5rem;
    }
    
    .stat-label-home {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-partners {
        padding: 50px 0;
    }
    
    .partner-row {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .partner-logo {
        padding: 15px 10px;
        min-width: 100px;
    }
    
    .partner-logo i {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .partner-logo span {
        font-size: 0.8rem;
    }
    
    .partners-stats-home {
        gap: 30px;
        margin: 30px 0;
    }
    
    .stat-number-home {
        font-size: 2rem;
    }
    
    .stat-label-home {
        font-size: 0.9rem;
    }
    
    .partners-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Featured Products Section */
.featured-products {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.featured-products .section-title {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.featured-products .section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.featured-products .product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
}

.featured-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.featured-products .product-image {
    position: relative;
    height: 250px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: var(--dominant-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.featured-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 90%;
    max-height: 90%;
}

.featured-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.featured-products .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-products .product-info {
    padding: 25px;
    text-align: left;
}

.featured-products .product-info h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-products .product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.featured-products .product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.featured-products .product-specs span {
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-products .product-actions {
    margin-top: auto;
}

.featured-products .buy-now-btn {
    display: block;
    width: 100%;
    background: var(--accent-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.featured-products .buy-now-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.featured-products .products-cta {
    margin-top: 40px;
}

.featured-products .products-cta .btn {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.featured-products .products-cta .btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Responsive design for featured products */
@media (max-width: 768px) {
    .featured-products {
        padding: 60px 0;
    }
    
    .featured-products .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .featured-products .product-info h3 {
        font-size: 1.2rem;
    }
    
    .featured-products .product-image {
        height: 220px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .featured-products {
        padding: 50px 0;
    }
    
    .featured-products .section-title {
        font-size: 1.8rem;
    }
    
    .featured-products .section-subtitle {
        font-size: 1rem;
    }
    
    .featured-products .product-info {
        padding: 20px;
    }
    
    .featured-products .product-info h3 {
        font-size: 1.1rem;
    }
    
    .featured-products .product-image {
        height: 200px;
        padding: 10px;
    }
}

/* Cleaning Tips Section */
.cleaning-tips {
    background: var(--dominant-gradient);
    padding: 80px 0;
    color: var(--text-dark);
}

.cleaning-tips .section-title {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cleaning-tips .section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.tips-category {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.tips-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.tips-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tips-category h3 i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.tip-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(40, 167, 69, 0.05);
    transform: translateX(5px);
}

.tip-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.tip-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.tips-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tips-cta .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.tips-cta .btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.tips-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.tips-cta .btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.tips-cta .btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Responsive design for cleaning tips */
@media (max-width: 768px) {
    .cleaning-tips {
        padding: 60px 0;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tips-category {
        padding: 25px 20px;
    }
    
    .tips-category h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .tip-item {
        padding: 15px;
    }
    
    .tip-item h4 {
        font-size: 1rem;
    }
    
    .tip-item p {
        font-size: 0.9rem;
    }
    
    .tips-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tips-cta .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cleaning-tips {
        padding: 50px 0;
    }
    
    .cleaning-tips .section-title {
        font-size: 1.8rem;
    }
    
    .cleaning-tips .section-subtitle {
        font-size: 1rem;
    }
    
    .tips-category {
        padding: 20px 15px;
    }
    
    .tips-category h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .tip-item {
        padding: 12px;
    }
    
    .tip-item h4 {
        font-size: 0.95rem;
    }
    
    .tip-item p {
        font-size: 0.85rem;
    }
}