/* ==========================================
   CSS Variables - Logo Color Theme
   ========================================== */
:root {
    --primary-red: #E63946;
    --primary-purple: #6B2E8F;
    --primary-gold: #F4A460;
    --dark-purple: #4A1E66;
    --light-gold: #FFE4B5;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --text-color: #2D2D2D;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================
   Navigation Bar
   ========================================== */
header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ==========================================
   Hero Banner Slider
   ========================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark-gray);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-purple) 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-red) 100%);
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: slideInFromTop 0.8s ease-out;
}

.slide-subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    animation: slideInFromBottom 0.8s ease-out;
}

.slide-content .btn {
    animation: fadeInScale 1s ease-out;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
    border-radius: 0 5px 5px 0;
}

.slider-btn.next {
    right: 20px;
    border-radius: 5px 0 0 5px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-purple);
}

.btn-primary:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-purple);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    margin: 0 auto;
    border-radius: 2px;
}

.section-header p {
    margin-top: 15px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    gap: 50px;
    margin-bottom: 50px;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-red);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--dark-gray);
}

.mission {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.mission p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   Featured Sarees Carousel
   ========================================== */
.featured-sarees {
    padding: 80px 20px;
    background-color: var(--white);
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.saree-card {
    min-width: 280px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.saree-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.saree-image {
    height: 300px;
    overflow: hidden;
}

.saree-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.saree-card:hover .saree-placeholder {
    transform: scale(1.1);
}

.saree-icon {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.saree-info {
    padding: 25px;
    text-align: center;
}

.saree-info h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.saree-info p {
    color: var(--dark-gray);
}

/* ==========================================
   Customer Testimonials
   ========================================== */
.testimonials {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-gold);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-red);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.customer-info {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.customer-info h4 {
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.customer-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ==========================================
   Social Media Connect Section
   ========================================== */
.social-connect {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
}

.social-connect .section-header h2,
.social-connect .section-header p {
    color: var(--white);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
}

.social-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.social-card.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    color: var(--white);
}

.social-card.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.social-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.social-card:hover h3 {
    color: var(--white);
}

.social-card p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.social-card:hover p {
    color: var(--white);
}

/* ==========================================
   Page Hero (Internal Pages)
   ========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    padding: 80px 20px;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: var(--light-gray);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(107, 46, 143, 0.95), transparent);
    color: var(--white);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Placeholder items */
.gallery-item.placeholder .gallery-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 100%);
}

.placeholder-content {
    text-align: center;
    color: var(--dark-purple);
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.placeholder-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.placeholder-content p {
    font-size: 1.1rem;
}

/* ==========================================
   Collections Info
   ========================================== */
.collections-info {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.collection-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-red);
    transition: all 0.3s ease;
}

.collection-card:nth-child(2) {
    border-left-color: var(--primary-purple);
}

.collection-card:nth-child(3) {
    border-left-color: var(--primary-gold);
}

.collection-card:nth-child(4) {
    border-left-color: var(--dark-purple);
}

.collection-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.collection-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.collection-card p {
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    min-width: 60px;
}

.info-content h3 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.info-content p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.info-content a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-purple);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.contact-form button {
    margin-top: 10px;
    border: none;
    font-size: 1rem;
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-response.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================
   Map Section
   ========================================== */
.map-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.map-container {
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ==========================================
   Footer
   ========================================== */
footer {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    transform: translateX(5px);
}

.marathi {
    font-size: 1.2rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 2rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1.2rem;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-wrapper,
    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .carousel-track {
        animation: scroll 20s linear infinite;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slider-btn {
        padding: 8px 12px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .about,
    .gallery,
    .collections-info,
    .contact,
    .map-section,
    .cta,
    .featured-sarees,
    .testimonials,
    .social-connect {
        padding: 50px 20px;
    }

    .saree-card {
        min-width: 240px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        font-size: 1.8rem;
    }
}
