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

:root {
    --primary-color: #0e6081;
    --primary-dark: #0a4d6a;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global icon color consistency - Ensure Font Awesome icons display properly */
i.fas,
i.fab,
i.far,
.fas,
.fab,
.far,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", sans-serif !important;
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    color: var(--primary-color);
}

/* Additional icon styling to ensure proper display */
[class*="fa-"] {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Override for icons that should be white (on colored backgrounds) */
.cart-btn i,
.cart-btn .fas,
.add-to-cart i,
.add-to-cart .fas,
.feature-icon i,
.feature-icon .fas,
.category-image i,
.category-image .fas,
.contact-icon i,
.contact-icon .fas,
.author-avatar i,
.author-avatar .fas,
.testimonial-rating i,
.testimonial-rating .fas,
.benefit-icon i,
.benefit-icon .fas,
.stat-icon i,
.stat-icon .fas,
.service-icon i,
.service-icon .fas,
.step-icon i,
.step-icon .fas {
    color: white;
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    display: block;
}

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

/* Header & Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    width: 250px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    width: 300px;
}

.search-box i {
    position: absolute;
    right: 1rem;
    color: var(--primary-color);
}

.cart-btn {
    position: relative;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-count {
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    z-index: 2001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.empty-cart p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cart-item-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.remove-item {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.remove-item:hover {
    color: #dc2626;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
/*.hero {*/
/*    position: relative;*/
/*    height: 600px;*/
/*    overflow: hidden;*/
/*    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);*/
/*}*/

/*.hero-slider {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*.hero-slide {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    opacity: 0;*/
/*    transition: opacity 1s ease-in-out;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/* Slide backgrounds */
/*.hero-slide:nth-child(1) {*/
/*    background-image: url("https://www.nexusaffinityimpex.com/wp-content/uploads/2026/01/PhotoshopPreview_Image.jpg");*/
/*}*/

/*.hero-slide:nth-child(2) {*/
/*    background-image: url("https://www.nexusaffinityimpex.com/wp-content/uploads/2026/01/PhotoshopPreview_Image.jpg");*/
/*}*/

/*.hero-slide:nth-child(3) {*/
/*    background-image: url("https://www.nexusaffinityimpex.com/wp-content/uploads/2026/01/PhotoshopPreview_Image.jpg");*/
/*}*/

/*.hero-slide.active {*/
/*    opacity: 1;*/
/*}*/

/*.hero-slide::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.3);*/
/*}*/

/*.hero-content {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    color: white;*/
/*    max-width: 600px;*/
/*}*/

/*.hero-title {*/
/*    font-size: 3.5rem;*/
/*    font-weight: 800;*/
/*    margin-bottom: 1rem;*/
/*    line-height: 1.2;*/
/*    animation: fadeInUp 0.8s ease;*/
/*}*/

/*.hero-subtitle {*/
/*    font-size: 1.25rem;*/
/*    margin-bottom: 2rem;*/
/*    opacity: 0.95;*/
/*    animation: fadeInUp 1s ease;*/
/*}*/


/* =========================
   Hero Section
========================= */
/* Container aspect ratio management */
.hero {
    position: relative;
    width: 100%;
    /* Maintains the 1792/576 ratio automatically */
    aspect-ratio: 1792 / 576; 
    min-height: 300px; /* Prevents it from getting too small on mobile */
    overflow: hidden;
    background-color: #000;
}

/* Slider wrapper */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Centers content horizontally */
    padding: 0 5%;

    /* Background settings */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Background images */
.hero-slide:nth-child(1){ background-image: url("https://www.nexusaffinityimpex.com/wp-content/uploads/2026/01/peanut-banner.png"); }
.hero-slide:nth-child(2){ background-image: url("https://www.nexusaffinityimpex.com/wp-content/uploads/2026/01/hinges-banner.png"); }
.hero-slide:nth-child(3){ background-image: url("https://www.nexusaffinityimpex.com/wp-content/uploads/2026/01/coconut-new.png"); }

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Content Area */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    text-align: center; /* Balanced for wide banners */
}

/* Responsive Text Styles */
.hero-title {
    /* Clamped font size: Min 1.8rem, scales with width, Max 3.5rem */
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #fff !important;
}

.hero-subtitle {
    /* Clamped font size: Min 1rem, Max 1.25rem */
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        /* On mobile, a very wide banner looks like a thin strip. 
           We adjust the ratio to give it more vertical presence. */
        aspect-ratio: 16 / 9; 
    }
    
    .hero-content {
        padding: 20px;
    }
}

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

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 96, 129, 0.2), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(14, 96, 129, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(14, 96, 129, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 96, 129, 0.15);
    border-color: rgba(14, 96, 129, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.75rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(14, 96, 129, 0.2);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.feature-icon i,
.feature-icon .fas {
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(14, 96, 129, 0.3);
    background: var(--primary-dark);
}

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

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.category-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 96, 129, 0.1), transparent);
    transition: var(--transition);
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(14, 96, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-image i,
.category-image .fas {
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.category-card:hover .category-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(14, 96, 129, 0.3);
    background: var(--primary-dark);
}

.category-card:hover .category-image::before {
    opacity: 1;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.category-link:hover {
    gap: 1rem;
}

.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.products-section:nth-child(even) {
    background: #f9fafb;
}

.section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-header .section-title {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header .section-subtitle {
    color: #718096;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

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

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(14, 96, 129, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(14, 96, 129, 0.15);
    border-color: rgba(14, 96, 129, 0.1);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 96, 129, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-image::after {
    opacity: 1;
}

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

.product-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: block;
}

.product-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
    line-height: 1.4;
    flex: 1;
    margin-top: 0px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.add-to-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(14, 96, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 96, 129, 0.3);
}

.add-to-cart i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.add-to-cart:hover i {
    transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

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

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(14, 96, 129, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 96, 129, 0.12);
    border-color: rgba(14, 96, 129, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(14, 96, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-icon i,
.benefit-icon .fas {
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(14, 96, 129, 0.3);
    background: var(--primary-dark);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.benefit-card:hover h3 {
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-icon i,
.stat-icon .fas {
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Our Services Section */
.our-services {
    padding: 5rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(14, 96, 129, 0.05);
    position: relative;
    overflow: visible;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(14, 96, 129, 0.18);
    border-color: rgba(14, 96, 129, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.75rem;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(14, 96, 129, 0.25);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-icon i,
.service-icon .fas,
.service-icon [class*="fa-"] {
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: "Font Awesome 6 Free", sans-serif !important;
    font-weight: 900 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 100%;
    color: white !important;
    font-size: inherit;
}

.service-card:hover .service-icon {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 96, 129, 0.35);
    background: var(--primary-dark);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
    line-height: 1.3;
}

.service-card:hover h3 {
    color: var(--primary-dark);
}

.service-card > p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    min-height: 3.4em;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 22px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px solid rgba(14, 96, 129, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(14, 96, 129, 0.15);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(14, 96, 129, 0.3);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 1.5rem auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(14, 96, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-icon i,
.step-icon .fas {
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(14, 96, 129, 0.3);
    background: var(--primary-dark);
}

.process-step:hover .step-icon::before {
    opacity: 1;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.process-step:hover h3 {
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.process-connector {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
    opacity: 0.5;
    transition: var(--transition);
}

.process-connector:hover {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .why-choose-us,
    .our-services,
    .how-it-works {
        padding: 4rem 0;
    }
    
    .statistics {
        padding: 4rem 0;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .process-step {
        min-width: 180px;
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .why-choose-us,
    .our-services,
    .how-it-works {
        padding: 3rem 0;
    }
    
    .statistics {
        padding: 3rem 0;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefit-card,
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-card h3,
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 2rem 1.25rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-step {
        min-width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .process-connector {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us,
    .our-services,
    .how-it-works {
        padding: 2.5rem 0;
    }
    
    .statistics {
        padding: 2.5rem 0;
    }
    
    .benefits-grid,
    .services-grid {
        gap: 1rem;
    }
    
    .benefit-card,
    .service-card {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-card h3,
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .benefit-card p,
    .service-card > p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin: 1.25rem auto 1.25rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        top: -12px;
    }
    
    .process-step h3 {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .process-connector {
        font-size: 1.25rem;
        margin: 0.25rem 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: white;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

.footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 96, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    line-height: 1.9;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-section p i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
    transition: var(--transition);
}

.footer-section p:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a,
.footer-section a:visited {
    color: #fff;
}

.hero-slide a,.hero-slide a:visited {
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.footer-section ul li:hover::before {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(14, 96, 129, 0.4);
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-links a:hover i {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 550px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .feature-card {
        padding: 2.25rem 1.75rem;
    }
    
    .feature-icon {
        width: 85px;
        height: 85px;
        font-size: 2.1rem;
        margin-bottom: 1.6rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .categories {
        padding: 4rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-section {
        padding: 4rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .search-box input {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-wrapper {
        padding: 0.875rem 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0;
        box-shadow: none;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        gap: 0;
        border-top: none;
        overflow-y: auto;
        overflow-x: hidden;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 90%;
        max-width: 300px;
        text-align: center;
        padding: 1.25rem 1.5rem;
        border-radius: 0;
        margin-bottom: 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-dark);
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--border-color);
        transition: var(--transition);
        display: block;
    }
    
    .nav-link:first-child {
        border-top: 1px solid var(--border-color);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(14, 96, 129, 0.05);
        color: var(--primary-color);
        transform: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        padding: 0.5rem;
        border-radius: 6px;
        background: rgba(14, 96, 129, 0.1);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(14, 96, 129, 0.2);
    }
    
    /* Mobile menu overlay */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        animation: fadeInOverlay 0.3s ease;
        display: block;
    }
    
    .header-actions {
        gap: 0.75rem;
    }
    
    .search-box input {
        width: 180px;
        font-size: 0.85rem;
        padding: 0.5rem 2rem 0.5rem 0.875rem;
    }
    
    .search-box input:focus {
        width: 180px;
    }
    
    .cart-btn {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .hero-indicators {
        bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.05rem;
        line-height: 1.4;
    }
    
    .categories {
        padding: 3.5rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .category-card {
        padding: 1.75rem 1.5rem;
    }
    
    .category-image {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .category-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }
    
    .products-section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header .section-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.75rem;
    }
    
    .product-card {
        border-radius: 14px;
    }
    
    .product-image {
        height: 250px;
        font-size: 4rem;
        padding: 1.5rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 0.625rem;
    }
    
    .product-name {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .product-actions {
        padding-top: 0.875rem;
    }
    
    .product-price {
        font-size: 1.6rem;
    }
    
    .add-to-cart {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .testimonials {
        padding: 3.5rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
    
    .contact {
        padding: 3.5rem 0;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    
    .contact-details h3 {
        font-size: 1.15rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .contact-form {
        padding: 1.75rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        margin: 0 auto;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section ul li {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-section ul li::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
        gap: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .search-box {
        display: none;
    }
    
    .cart-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
        top: -3px;
        right: -3px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 0.4rem;
        width: 38px;
        height: 38px;
    }
    
    .nav-menu {
        padding-top: 70px;
    }
    
    .nav-link {
        width: 95%;
        max-width: 100%;
        padding: 1.125rem 1.25rem;
        font-size: 1.05rem;
    }
    
    body.menu-open::before {
        display: block;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content {
        padding: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-indicators {
        bottom: 1rem;
        gap: 0.4rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 25px;
    }
    
    .features {
        padding: 2.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .categories {
        padding: 2.5rem 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1.25rem;
    }
    
    .category-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .products-section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header .section-title {
        font-size: 1.75rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.95rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 220px;
        font-size: 3.5rem;
        padding: 1.25rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 0.625rem;
    }
    
    .product-name {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .product-actions {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
        padding-top: 1rem;
    }
    
    .product-price {
        font-size: 1.6rem;
        text-align: left;
    }
    
    .add-to-cart {
        flex: 0 0 auto;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .testimonials {
        padding: 2.5rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-rating {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .contact {
        padding: 2.5rem 0;
    }
    
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.25rem;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .cart-header {
        padding: 1.25rem;
    }
    
    .cart-header h2 {
        font-size: 1.3rem;
    }
    
    .cart-items {
        padding: 1.25rem;
    }
    
    .cart-item {
        padding: 0.875rem;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .cart-item-details h4 {
        font-size: 0.95rem;
    }
    
    .cart-item-price {
        font-size: 1.1rem;
    }
    
    .cart-footer {
        padding: 1.25rem;
    }
    
    .cart-total {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .total-amount {
        font-size: 1.3rem;
    }
    
    .checkout-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.625rem;
    }
    
    .footer-section p i {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.625rem;
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    .product-card,
    .category-card,
    .testimonial-card,
    .feature-card {
        animation: fadeIn 0.6s ease-out;
    }
}

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

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

#moderncart-floating-cart{
    display: none !important;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
    }
    to {
        transform: translateX(0);
    }
}