/* Modern Design System */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary: #7C3AED;
    --primary-light: #9F67FF;
    --secondary: #06B6D4;
    --accent: #FB7185;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --background: #F8FAFC;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 25px 50px rgba(124, 58, 237, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --slider-arrow-size: 40px;
    --slider-nav-size: 10px;
    --primary-dark: #6d28d9;
    --success: #059669;
    --error: #dc2626;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Enhanced Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo h1 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #9942a5;
    background-color: #ff9292;
    -webkit-background-clip: text;
    background-clip: text;

    transition: var(--transition-smooth);
    font-family: "Caveat", cursive;
}

.logo h1:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

header.scrolled .nav-links a {
    text-shadow: none;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 2;
}

.mobile-menu i {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mobile-menu:hover i {
    color: var(--primary);
}

/* Enhanced Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 70px auto 30px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-container {
    display: flex;
    width: 300%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-item {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.8s ease;
    border-radius: 5px;
    overflow: hidden;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
}

.slider-image {
    width: 40%;
    height: 500px;
    overflow: hidden;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.slider-item.active .slider-image img {
    transform: scale(1.05);
}

.slider-content {
    position: relative;
    width: 60%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
    /* Background will be set dynamically with JavaScript */
    background-color: rgba(124, 58, 237, 0.65); /* Default background - more transparent */
}

.slider-item.active .slider-content {
    transform: translateY(0);
    opacity: 1;
}

.slider-label {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.slider-item.active .slider-label {
    transform: translateY(0);
    opacity: 1;
}

.slider-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slider-item.active .slider-content h1 {
    transform: translateY(0);
    opacity: 1;
}

.slider-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.slider-item.active .slider-content p {
    transform: translateY(0);
    opacity: 1;
}

.slider-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
    width: 150px;
}

.slider-item.active .slider-button {
    transform: translateY(0);
    opacity: 1;
}

.slider-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.slider-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-button:hover i {
    transform: translateX(5px);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background-color: var(--primary, #7c3aed);
    transform: scale(1.2);
    border-color: transparent;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary, #7c3aed);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

@media (max-width: 992px) {
    .hero-slider {
        margin: 20px 15px;
        border-radius: 8px;
    }
    
    .slider-item {
        flex-direction: column;
    }
    
    .slider-image {
        width: 100%;
        height: 60%;
    }
    
    .slider-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
    
    .slider-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin: 15px 10px;
        border-radius: 5px;
    }
    
    .slider-item {
        flex-direction: column;
    }
    
    .slider-image {
        height: 400px;
    }
    
    .slider-content {
        padding: 40px 10%;
    }
    
    .slider-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .slider-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .slider-button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
}

/* Minimal Modern Products Section */
.products {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                #ffffff 0%, 
                #ffffff 49.9%, 
                #ffeaea 50%, 
                #ffd0d0 100%);
    z-index: -2;
}

.products::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0) 49.9%, 
                rgba(237,245,255,0) 50%, 
                rgba(214,230,255,1) 100%);
    z-index: -1;
    animation: softColorChange 12s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes softColorChange {
    0%, 100% {
        background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0) 49.9%, 
                rgba(255,225,225,0) 50%, 
                rgba(255,180,180,1) 100%);
    }
    16.66% {
        background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0) 49.9%, 
                rgba(225,235,255,0) 50%, 
                rgba(180,200,255,1) 100%);
    }
    33.32% {
        background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0) 49.9%, 
                rgba(235,225,255,0) 50%, 
                rgba(210,180,255,1) 100%);
    }
    49.98% {
        background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0) 49.9%, 
                rgba(225,255,229,0) 50%, 
                rgba(180,255,190,1) 100%);
    }
    66.64% {
        background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0) 49.9%, 
                rgba(255,240,225,0) 50%, 
                rgba(255,215,180,1) 100%);
    }
    83.3% {
        background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0) 49.9%, 
                rgba(255,225,245,0) 50%, 
                rgba(255,180,230,1) 100%);
    }
}

.products .container {
    position: relative;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.products-header h2 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #333, #d1546a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.products-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff8a9b);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.products-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.filter-btn:hover {
    color: var(--primary);
}

.filter-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-container .product-item {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    box-shadow: 0 8px 25px rgba(255, 214, 214, 0.18);
    border: 1px solid rgba(255, 214, 214, 0.2);
    margin: 0;
    width: 100%;
}

.product-container .product-item:hover,
.product-slider .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 201, 201, 0.25);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

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

.product-container .product-item:hover .product-img img,
.product-slider .product-item:hover .product-img img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 30px;
    font-weight: 500;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-item:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.rating {
    color: #FFB800;
    font-size: 0.8rem;
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.view-more-btn:hover {
    color: var(--white);
}

.view-more-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .products-header h2 {
        font-size: 2.5rem;
    }
    
    .product-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Ultra Modern Special Design Section */
.special-design {
    padding: 12rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.special-design::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.03) 0%,
        rgba(6, 182, 212, 0.03) 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.special-design::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    top: 15%;
    left: 10%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
}

.section-intro {
    margin-bottom: 6rem;
    position: relative;
    padding: 15px;
    z-index: 1;
}

.section-intro::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 10px;
    top: -25px;
    left: 0;
    transform: rotate(45deg);
    z-index: -1;
}

.section-intro .label {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    position: relative;
}

.section-intro .label::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    right: -12px;
    bottom: -4px;
}

.section-intro h2 {
    font-size: 5rem;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    max-width: 650px;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.designs-showcase {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
}

.design-card {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    isolation: isolate;
}

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

.design-card.primary {
    height: 100%;
    box-shadow: var(--card-shadow);
}

.design-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.design-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.design-card:hover .design-image img {
    transform: scale(1.08);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    color: var(--white);
    transition: var(--transition-smooth);
}

.design-card.primary .card-content {
    padding: 3.5rem;
}

.category {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.category::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.design-card.primary .card-content h3 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.design-card:hover .card-content h3 {
    transform: translateY(-5px);
}

.card-content p {
    opacity: 0.9;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 90%;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 0.05s;
}

.design-card:hover .card-content p {
    transform: translateY(-5px);
}

.explore {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
    padding-bottom: 4px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 0.1s;
}

.explore::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.explore::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.design-card:hover .explore {
    transform: translateY(-5px);
}

.explore:hover {
    color: var(--accent);
}

.explore:hover::after {
    transform: translateX(8px);
}

.explore:hover::before {
    transform: scaleX(1);
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    height: 100%;
}

.experience-bar {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.exp-item {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.exp-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.exp-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.exp-item:hover::before {
    transform: scaleX(1);
}

.exp-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.exp-item:hover .exp-number {
    transform: translateY(-5px);
}

.exp-number sup {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-left: 2px;
}

.exp-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 0.05s;
}

.exp-item:hover .exp-text {
    transform: translateY(-5px);
}

/* Contact Section - Modern Update */
.contact {
    padding: 10rem 5%;
    background: linear-gradient(135deg, #fcfcff 0%, #f7f5ff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0) 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0) 70%);
    bottom: -200px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.05));
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
}

.contact-info i {
    margin-right: 1rem;
    font-size: 1.3rem;
    background: rgba(124, 58, 237, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info p:hover i {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    background: white;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 16px;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.submit-button:hover::before {
    opacity: 1;
}

/* Footer Section */
footer {
    background: linear-gradient(135deg, #fcfcff 0%, #f9f5ff 100%);
    padding: 6rem 5% 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Animated Background Shapes */
.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    opacity: 0.2;
    filter: blur(2px);
    animation: floatShape 20s linear infinite;
}

.footer-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-duration: 18s;
}

.footer-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    top: 60%;
    left: 30%;
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.footer-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: var(--accent);
    bottom: 20%;
    right: 15%;
    border-radius: 80% 20% 50% 50% / 50% 40% 60% 50%;
    animation-duration: 25s;
    animation-delay: -10s;
}

.footer-shape:nth-child(4) {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    top: 30%;
    right: 25%;
    border-radius: 30% 70% 20% 80% / 50% 50% 50% 50%;
    animation-duration: 20s;
    animation-delay: -8s;
}

.footer-shape:nth-child(5) {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    bottom: 30%;
    left: 20%;
    border-radius: 50% 50% 80% 20% / 20% 80% 20% 80%;
    animation-duration: 19s;
    animation-delay: -12s;
}

.footer-shape:nth-child(6) {
    width: 40px;
    height: 40px;
    background: var(--primary);
    bottom: 60%;
    right: 10%;
    border-radius: 20% 80% 50% 50% / 50% 20% 80% 50%;
    animation-duration: 17s;
    animation-delay: -3s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(90deg);
    }
    50% {
        transform: translate(0, 30px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -15px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-info p:hover {
    color: var(--text-primary);
}

.contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    display: inline-flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-info p:hover i {
    transform: translateX(3px);
}

.contact-info span {
    display: inline-block;
}

.newsletter form {
    margin-top: 1.5rem;
}

.newsletter-input {
    display: flex;
    background: white;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.newsletter input:focus {
    outline: none;
}

.newsletter button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 10px rgba(124, 58, 237, 0.2);
}

.newsletter p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.7rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-icon {
    width: 36px;
    height: 24px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-shape {
        opacity: 0.15;
    }
}

/* Responsive Designs */
@media (max-width: 1200px) {
    .designs-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .design-card.primary {
        aspect-ratio: 16/9;
    }
    
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-bar {
        flex-wrap: wrap;
    }
    
    .exp-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .section-intro h2 {
        font-size: 3rem;
    }
    
    .design-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .exp-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .section-intro h2 {
        font-size: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .design-card.primary .card-content h3 {
        font-size: 1.8rem;
    }
    
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Product Slider */
.product-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.product-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0 -16px;
    will-change: transform;
}

.product-slider .product-item {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    box-shadow: 0 8px 25px rgba(255, 214, 214, 0.18);
    flex-shrink: 0;
    border: 1px solid rgba(255, 214, 214, 0.2);
    /* Width will be set by JavaScript */
}

.product-container .product-item:hover,
.product-slider .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 201, 201, 0.25);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

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

.product-container .product-item:hover .product-img img,
.product-slider .product-item:hover .product-img img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-item:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.rating {
    color: #FFB800;
    font-size: 0.8rem;
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.view-more-btn:hover {
    color: var(--white);
}

.view-more-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(124, 58, 237, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    border-color: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(124, 58, 237, 0.5);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-arrow i {
    color: var(--primary);
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--primary);
}

.slider-arrow:hover i {
    color: white;
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

@media (max-width: 1200px) {
    .slider-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex-direction: column;
    }
    
    .slider-image {
        position: relative;
        width: 100%;
        height: 60%;
    }
    
    .slider-image::after {
        display: none;
    }
    
    .slider-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
    
    .slider-content h1 {
        font-size: 2.5rem;
    }
    
    .slider-content p {
        margin: 0 auto 2rem;
    }
    
    .slider-nav {
        left: 50%;
        bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slider-content h1 {
        font-size: 2rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow.prev {
        left: 1rem;
    }
    
    .slider-arrow.next {
        right: 1rem;
    }
}

/* Endemic Plants Section - Modern Redesign */
.endemic-plants {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(125deg, #fcfcff 0%, #f5f7ff 40%, #f9f5ff 100%);
    overflow: hidden;
    z-index: 1;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

.shape {
    position: absolute;
    backdrop-filter: blur(80px);
    opacity: 0.2;
    transition: all 8s ease-in-out;
    animation: morphShape 20s ease-in-out infinite alternate;
    mix-blend-mode: multiply;
    box-shadow: 0 0 80px 20px rgba(124, 58, 237, 0.05);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #8a63ff, #4e00c2);
    top: -250px;
    left: -100px;
    animation-delay: 0s;
    border-radius: 43% 57% 51% 49% / 41% 43% 57% 59%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #00c4ff, #0070ff);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
    border-radius: 49% 51% 48% 52% / 57% 51% 49% 43%;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b95, #ff3366);
    top: 20%;
    right: 10%;
    animation-delay: -10s;
    border-radius: 51% 49% 39% 61% / 46% 45% 55% 54%;
}

.shape-4 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #7c3aed, #6824de);
    bottom: -300px;
    left: -200px;
    animation-delay: -15s;
    border-radius: 58% 42% 39% 61% / 58% 59% 41% 42%;
}

.shape-5 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #00d4ff, #9f67ff);
    top: 30%;
    left: 10%;
    animation-delay: -20s;
    border-radius: 39% 61% 52% 48% / 44% 59% 41% 56%;
}

@keyframes morphShape {
  0% {
    border-radius: 42% 58% 63% 37% / 55% 48% 52% 45%;
    transform: translate(-5px, 10px) rotate(0deg);
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: translate(5px, -5px) rotate(2deg);
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: translate(10px, 5px) rotate(-2deg);
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: translate(-10px, -10px) rotate(1deg);
  }
  100% {
    border-radius: 42% 58% 63% 37% / 55% 48% 52% 45%;
    transform: translate(-5px, 10px) rotate(0deg);
  }
}

.endemic-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.endemic-intro .label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.endemic-intro h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), #6d28d9, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.endemic-intro h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.endemic-intro .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    margin-top: 30px;
}

.endemic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.endemic-info {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 255, 255, 0.3),
                0 8px 16px rgba(124, 58, 237, 0.06);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.endemic-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
                0 8px 30px rgba(124, 58, 237, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    height: auto;
    min-height: 550px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.endemic-item {
    padding: 2.5rem;
    display: none;
}

.endemic-item.active {
    display: block;
    animation: fadeIn 0.6s ease forwards;
}

.endemic-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.latin-name {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.3rem;
}

.endemic-item h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.endemic-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 10px;
}

.endemic-features {
    list-style: none;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
}

.endemic-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.endemic-features li i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1rem;
    width: 22px;
    text-align: center;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-learn-more:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-learn-more:hover:before {
    opacity: 1;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.image-slide.active {
    opacity: 1;
}

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

.endemic-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.endemic-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.endemic-nav-btn:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.endemic-nav-btn.active {
    background: var(--primary);
    transform: scale(1.2);
}

.endemic-nav-btn.active:before {
    opacity: 1;
}

.endemic-nav-btn:hover {
    background: rgba(124, 58, 237, 0.4);
}

.endemic-facts {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fact-item {
    text-align: center;
    padding: 0 1.5rem;
}

.fact-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.fact-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Orchid Showcase Section */
.orchid-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.orchid-showcase::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, rgba(124, 58, 237, 0) 70%);
    top: -250px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.orchid-showcase::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, rgba(124, 58, 237, 0) 70%);
    bottom: -300px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

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

.orchid-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 2rem 0 4rem;
}

.orchid-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 1rem;
}

.orchid-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.orchid-image img {
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: floatImage 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.orchid-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.left-features {
    align-items: flex-end;
}

.right-features {
    align-items: flex-start;
}

.feature-header {
    margin-bottom: 1rem;
}

.feature-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.orchid-features h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.accent {
    color: var(--primary);
    position: relative;
}

.accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 350px;
}

.left-features .feature-card {
    flex-direction: row-reverse;
    text-align: right;
}

.left-features .feature-icon {
    margin-right: 0;
    margin-left: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.feature-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.orchid-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-orchid {
    padding: 1rem 2rem;
   background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.btn-orchid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.btn-care {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-care i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-care:hover {
    background: rgba(124, 58, 237, 0.05);
}

.btn-care:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .orchid-content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "left"
            "right";
        gap: 2rem;
    }
    
    .orchid-image {
        grid-area: image;
    }
    
    .left-features {
        grid-area: left;
        align-items: center;
    }
    
    .right-features {
        grid-area: right;
        align-items: center;
    }
    
    .left-features .feature-card,
    .right-features .feature-card {
        flex-direction: row;
        text-align: left;
        margin: 0 auto;
    }
    
    .left-features .feature-icon {
        margin-right: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .feature-card {
        max-width: 100%;
    }
    
    .orchid-features h2 {
        font-size: 2.5rem;
    }
    
    .orchid-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Modern Category Showcase */
.category-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.special-days {
    margin-bottom: 4rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(255, 214, 214, 0.22);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 220px;
    border: 1px solid rgba(255, 214, 214, 0.2);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 201, 201, 0.3);
}

.category-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    color: white;
}

.category-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.category-content p {
    display: none;
}

.category-card:hover .category-content h3 {
    transform: translateY(-5px);
}

.category-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    transform: translateY(0);
    transition: transform 0.5s ease 0.1s, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-btn {
    transform: translateY(-5px);
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.category-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Category Cards */
@media (max-width: 1200px) {
    .category-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-showcase {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 180px;
    }
}

/* Modern Contact Section Styles - Enhanced */
.modern-contact {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #fcfcff 0%, #f5f7ff 100%);
    margin-top: -5rem;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    filter: blur(40px);
    opacity: 0.06;
    z-index: -1;
}

.shape1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation: floatShape 20s ease-in-out infinite alternate;
}

.shape2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -200px;
    left: -150px;
    animation: floatShape 25s ease-in-out infinite alternate-reverse;
}

.shape3 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 30%;
    left: 15%;
    animation: floatShape 18s ease-in-out infinite alternate;
    animation-delay: -5s;
}

.shape4 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    bottom: 20%;
    right: 15%;
    animation: floatShape 22s ease-in-out infinite alternate-reverse;
    animation-delay: -8s;
    opacity: 0.04;
}

.shape5 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 45%;
    right: 35%;
    animation: floatShape 15s ease-in-out infinite alternate;
    animation-delay: -12s;
    opacity: 0.03;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(10px, 20px) rotate(5deg) scale(1.05);
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    }
    100% {
        transform: translate(-10px, -15px) rotate(-5deg) scale(0.95);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.section-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(124, 58, 237, 0.2);
}

.section-desc {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-container.modern {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.modern-contact .contact-info {
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), #6c33c7);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.modern-contact .contact-info::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -125px;
    right: -125px;
    z-index: 0;
}

.modern-contact .contact-info::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -90px;
    left: -90px;
    z-index: 0;
}

.contact-info-header {
    position: relative;
    margin-bottom: 2rem;
    z-index: 1;
}

.modern-contact .contact-info h2 {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.contact-decor {
    display: block;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.contact-decor::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    animation: slideDecor 2s ease-in-out infinite;
}

@keyframes slideDecor {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.contact-details {
    position: relative;
    z-index: 1;
}

.modern-contact .contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.modern-contact .contact-info p span {
    margin-left: 0.5rem;
}

.modern-contact .contact-info i {
    margin-right: 1rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modern-contact .contact-info p:hover i {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.modern-contact .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.modern-contact .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-contact .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-contact .social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.modern-contact .social-links a:hover::before {
    opacity: 1;
}

.modern-contact .contact-form {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.modern-contact .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(124, 58, 237, 0));
    border-radius: 50%;
    z-index: 0;
}

.modern-contact .contact-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0), rgba(124, 58, 237, 0.03));
    border-radius: 50%;
    z-index: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.modern-contact .form-group input,
.modern-contact .form-group textarea,
.modern-contact .form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    z-index: 1;
}

.modern-contact .form-group input:focus,
.modern-contact .form-group textarea:focus,
.modern-contact .form-group select:focus {
    outline: none;
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    z-index: 0;
    border-radius: 2px;
    opacity: 0;
}

.modern-contact .form-group input:focus ~ .focus-border,
.modern-contact .form-group textarea:focus ~ .focus-border,
.modern-contact .form-group select:focus ~ .focus-border {
    width: 100%;
    opacity: 1;
}

.modern-contact .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.modern-contact .submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.modern-contact .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-contact .submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.modern-contact .submit-button:hover::before {
    opacity: 1;
}

.modern-contact .submit-button i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modern-contact .submit-button:hover i {
    transform: translateX(5px);
}

.map-container {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-card {
    position: absolute;
    top: 2rem;
    left: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    animation: fadeInLeft 1s ease forwards;
    transition: all 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.map-card i {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.map-card i.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 16px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.map-card i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--primary);
    z-index: -2;
    opacity: 0.3;
    filter: blur(8px);
}

.map-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.map-card p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.25);
    position: relative;
    overflow: hidden;
}

.direction-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.direction-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.direction-btn:hover::before {
    opacity: 1;
}

.direction-btn i {
    width: auto;
    height: auto;
    background: transparent;
    margin: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.direction-btn:hover i {
    transform: translateX(3px);
}

.direction-btn i::after {
    display: none;
}

/* Responsive Styles for Modern Contact */
@media (max-width: 1200px) {
    .contact-container.modern {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .map-card {
        left: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-contact {
        padding: 6rem 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .modern-contact .contact-info,
    .modern-contact .contact-form {
        padding: 2rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-card {
        position: relative;
        top: auto;
        left: auto;
        margin: -120px auto 0;
        max-width: calc(100% - 4rem);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .modern-contact .contact-info,
    .modern-contact .contact-form {
        padding: 1.5rem;
    }
    
    .modern-contact .submit-button {
        padding: 1rem;
    }
    
    .map-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .map-card {
        padding: 1.5rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    position: relative;
    background-color: #f9f9fc;
    overflow: hidden;
    margin-top: 2rem;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(9, 182, 212, 0.05));
    z-index: 0;
    animation: softFloat 20s infinite alternate ease-in-out;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.08), rgba(124, 58, 237, 0.05));
    z-index: 0;
    animation: softFloat 25s infinite alternate-reverse ease-in-out;
}

@keyframes softFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
    100% {
        transform: translate(-20px, 20px) scale(1);
    }
}

.blog-header {
    position: relative;
    margin-bottom: 3rem;
    z-index: 1;
}

.blog-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    margin-bottom: 1rem;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 25px;
    position: relative;
    transition: var(--transition-smooth);
}

.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.blog-header h2 .accent {
    position: relative;
    color: var(--primary);
}

.blog-header h2 .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 4px;
    transform: translateY(5px);
    z-index: -1;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.1);
}

.featured-post {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-post .blog-image {
    height: 100%;
}

.featured-post .blog-image img {
    height: 100%;
}

.featured-post .blog-content {
    padding: 2.5rem;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.blog-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: var(--primary);
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

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

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-highlights {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.blog-highlights li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.7rem;
    position: relative;
}

.blog-highlights li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.blog-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(124, 58, 237, 0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.info-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.4rem 0;
    transition: var(--transition-smooth);
    margin-top: auto;
    position: relative;
    width: fit-content;
}

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

.blog-btn:hover {
    gap: 0.8rem;
    color: var(--primary-light);
}

.blog-btn:hover::after {
    width: 100%;
}

.blog-btn i {
    transition: var(--transition-smooth);
}

.blog-btn:hover i {
    transform: translateX(3px);
}

.blog-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.2);
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.blog-cta::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: -1;
}

.blog-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-cta p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: var(--primary);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-blog-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-blog-all i {
    transition: var(--transition-smooth);
}

.btn-blog-all:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-post {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .blog-header h2 {
        font-size: 2.2rem;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post {
        grid-column: span 1;
    }
    
    .blog-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-info {
        flex-wrap: wrap;
    }
    
    .blog-cta {
        padding: 2rem 1.5rem;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 20px 0;
    background-color: var(--bg-light, #f9fafb);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 10px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Contact Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary, #7c3aed), var(--secondary, #06b6d4));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--primary, #7c3aed);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.contact-map {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 15px;
    }
}

/* Product Card Styles */
.product-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.product-item:hover .product-img img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #7c3aed;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
    z-index: 1;
}

.product-actions {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-item:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.2);
}

.product-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
}

.rating {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

/* Product Slider */
.product-slider-wrapper {
    position: relative;
    padding: 20px 0;
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 0 -12px;
    padding: 20px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -24px;
}

.slider-arrow.next {
    right: -24px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #7c3aed;
    transform: scale(1.2);
}

/* Filters */
.filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: none;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
}

.filter-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

/* Modern Color Scheme */
:root {
    --primary-color: #2D3047;
    --secondary-color: #419D78;
    --accent-color: #E0A458;
    --text-color: #2D3047;
    --light-gray: #F5F5F7;
    --white: #FFFFFF;
    --success-color: #419D78;
    --danger-color: #E85F5C;
    --warning-color: #E0A458;
    --box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

/* Modern Card Styles */
.product-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--box-shadow);
    margin: 1rem;
    border: 1px solid rgba(0,0,0,0.08);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    aspect-ratio: 1;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Stock Badge Styles */
.stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    transition: var(--transition);
}

.in-stock {
    background-color: rgba(65, 157, 120, 0.15);
    color: var(--success-color);
}

.low-stock {
    background-color: rgba(224, 164, 88, 0.15);
    color: var(--warning-color);
}

.out-of-stock {
    background-color: rgba(232, 95, 92, 0.15);
    color: var(--danger-color);
}

/* Modern Product Details */
.product-details {
    padding: 1.5rem;
    background: var(--white);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.product-description {
    font-size: 0.9rem;
    color: rgba(45, 48, 71, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Modern Action Buttons */
.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.product-item:hover .product-actions {
    bottom: 0;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.btn-add-to-cart {
    width: auto;
    padding: 0 1.5rem;
    border-radius: 20px;
    background: var(--primary-color);
    color: var(--white);
}

.btn-add-to-cart:hover {
    background: var(--secondary-color);
}

/* Modern Rating Stars */
.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        flex: 0 0 calc(100% - 20px);
    }
}

/* Product Grid & Spacing */
.product-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--box-shadow);
    margin: 0 10px;
    border: 1px solid rgba(0,0,0,0.08);
    flex: 0 0 calc(25% - 20px);
    min-width: 220px;
}

/* Slider Fixes */
.product-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 50px;
    margin: 2rem 0;
    overflow: hidden;
}

.product-slider {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    width: 100%;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-arrow i {
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* İletişim Bölümü - Yatay Düzen */
.contact-section {
    padding: 3rem 5%;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-title {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.contact-horizontal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.contact-section .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-details h4 {
    color: var(--primary);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-section .contact-details p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

.contact-section .contact-map {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
}

.contact-section .contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .contact-horizontal {
        justify-content: center;
    }
    
    .contact-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .contact-item {
        flex: 0 0 100%;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Welcome Section */
.modern-welcome {
    padding: 0;
    margin-top: 100px;
    overflow: hidden;
}

.welcome-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    min-height: 500px;
}

.welcome-text {
    flex: 1;
    padding: 60px;
    position: relative;
    z-index: 2;
}

.welcome-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(124, 58, 237, 0.2);
    z-index: -1;
}

.welcome-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.welcome-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    gap: 8px;
}

.outline-btn i {
    font-size: 16px;
}

.outline-btn:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-3px);
}

.welcome-image {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

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

.image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    z-index: 1;
}

.welcome-image::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-dark);
    opacity: 0.1;
    z-index: 1;
}

@media (max-width: 992px) {
    .welcome-container {
        flex-direction: column;
    }
    
    .welcome-text {
        padding: 40px 30px;
        order: 2;
        text-align: center;
    }
    
    .welcome-text p {
        margin: 0 auto 32px;
    }
    
    .welcome-actions {
        justify-content: center;
    }
    
    .welcome-image {
        width: 100%;
        order: 1;
    }
    
    .welcome-text h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .modern-welcome {
        margin-top: 70px;
    }
    
    .welcome-text h2 {
        font-size: 2.4rem;
    }
    
    .welcome-text p {
        font-size: 1.1rem;
    }
    
    .welcome-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .welcome-text {
        padding: 30px 20px;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .welcome-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .primary-btn, .outline-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .welcome-image {
        height: 250px;
    }
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    width: auto !important;
    min-width: 160px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    position: relative !important;
    overflow: hidden !important;
}

.whatsapp-btn::before {
    content: '';
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2)) !important;
    transform: translateX(-100%) !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    background: linear-gradient(45deg, #128C7E, #25D366) !important;
}

.whatsapp-btn:hover::before {
    transform: translateX(100%) !important;
}

.whatsapp-btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-btn i {
    font-size: 1.2em !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-btn:hover i {
    transform: scale(1.1) !important;
}

/* Ürün kartı hover efektini güncelle */
.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .whatsapp-btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        min-width: 140px !important;
    }

    .product-actions {
        padding: 15px;
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    }
}

