:root {
    --primary-purple: #6B4E8C;
    --secondary-purple: #8A6FA5;
    --light-purple: #F0EBF7;
    --primary-pink: #C87CA5;
    --light-pink: #F8F1F6;
    --dark-gray: #2C2C2C;
    --medium-gray: #666666;
    --light-gray: #F9F9F9;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --shadow: 0 8px 25px rgba(107, 78, 140, 0.08);
    --shadow-hover: 0 15px 35px rgba(107, 78, 140, 0.15);
    --border-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(107, 78, 140, 0.2);
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.btn:hover:after {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 78, 140, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-weight: 500;
    margin-top: 5px;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateX(5px);
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 700px;
    margin: 25px auto 0;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    transition: var(--transition);
}

/* UPDATED LOGO STYLES - FIXED */
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Changed from margin-left: -100px */
}

.logo-img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.logo:hover .logo-img img {
    transform: rotate(1deg) scale(1.1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo-text span {
    color: var(--primary-pink);
    font-weight: 600;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--medium-gray);
    letter-spacing: 1px;
    margin-left: 5px;
    border-left: 1px solid var(--light-purple);
    padding-left: 8px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-purple);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

.nav-links a:hover:after, .nav-links a.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-purple);
    transition: var(--transition);
}

.mobile-toggle:hover {
    transform: rotate(90deg);
}

/* Hero Carousel */
.hero {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 650px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-content {
    flex: 1;
    max-width: 600px;
}

.carousel-content h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    color: var(--primary-purple);
    line-height: 1.2;
}

.carousel-content h1 span {
    color: var(--primary-pink);
}

.carousel-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--medium-gray);
    max-width: 500px;
}

.carousel-image {
    flex: 1;
    text-align: center;
}

.carousel-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-slide.active .carousel-image img {
    transform: perspective(1000px) rotateY(0deg);
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.dot.active:after {
    border-color: var(--white);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.carousel-btn:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

/* Product Collage */
.collage-section {
    background-color: var(--light-gray);
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 25px;
}

.collage-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.collage-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(107, 78, 140, 0.25);
    z-index: 2;
}

.collage-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.collage-item:hover img {
    transform: scale(1.15);
}

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 30px;
    color: var(--white);
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
}

.collage-item:hover .collage-overlay {
    transform: translateY(0);
    opacity: 1;
}

.collage-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.6s ease 0.2s;
    color: #ffffff;
}

.collage-item:hover .collage-overlay h3 {
    transform: translateY(0);
}

/* About Section */
.about-content p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.feature {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-purple);
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.feature i {
    font-size: 2.8rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.feature h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.feature p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--medium-gray);
}

/* Contact Section */
/* .contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-purple);
}

.contact-info p {
    margin-bottom: 35px;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-purple);
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-detail i {
    width: 55px;
    height: 55px;
    background-color: var(--light-purple);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-detail:hover i {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: scale(1.1);
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-purple);
}

.contact-detail p, .contact-detail a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-purple);
}

.social-connect {
    margin-top: 50px;
}

.social-connect h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary-purple);
} */
/* 


.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    margin-right: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
    font-weight: 500;
    min-width: 160px;
    text-align: center;
}

.social-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-purple);
    transition: var(--transition);
}

.whatsapp-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-form h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.whatsapp-form p {
    margin-bottom: 30px;
    color: var(--medium-gray);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 78, 140, 0.1);
    background-color: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
} */

/* ========== ENHANCED CONTACT SECTION ========== */
.contact {
    background: linear-gradient(135deg, #f8f9ff 0%, #f8f1f6 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Increased form width */
    gap: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(107, 78, 140, 0.08);
    border: 1px solid rgba(107, 78, 140, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    bottom: 0;
    left: 0;
}

.contact-info > p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-purple);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-detail {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(107, 78, 140, 0.08);
    transition: background-color 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.contact-detail:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(107, 78, 140, 0.08);
}

.contact-detail i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 600;
    line-height: 1.3;
}

.contact-detail p, .contact-detail a {
    color: var(--medium-gray);
    line-height: 1.5;
    font-size: 0.95rem;
    word-break: break-word;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--primary-purple);
}

/* Remove the empty space from WhatsApp link removal */
.contact-detail .whatsapp-link {
    display: none; /* Hide the WhatsApp link */
}

/* Phone number styling */
.contact-detail p a[href^="tel:"] {
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
}

.contact-detail p a[href^="tel:"]:hover {
    text-decoration: underline;
}

.contact-detail p small {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 5px;
    line-height: 1.4;
}

.whatsapp-form {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(107, 78, 140, 0.08);
    border: 1px solid rgba(107, 78, 140, 0.1);
}

.whatsapp-form h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
    position: relative;
    padding-bottom: 15px;
}

.whatsapp-form h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    bottom: 0;
    left: 0;
}

.whatsapp-form p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(107, 78, 140, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(107, 78, 140, 0.02);
    color: var(--dark-gray);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    outline: none;
    background: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.whatsapp-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.social-connect {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid var(--light-purple);
}

.social-connect h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbd);
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #405DE6, #E1306C);
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
}

/* ========== PROFESSIONAL WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    padding: 0;
}

.whatsapp-float:hover {
    width: 220px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    justify-content: flex-start;
}

.whatsapp-float .whatsapp-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.whatsapp-float:hover .whatsapp-icon {
    position: relative;
}

.whatsapp-float .whatsapp-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding-left: 0px;
    padding-right: 25px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    width: calc(100% - 60px);
    height: 100%;
    text-align: center;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

/* ========== ENHANCED FOOTER ========== */
footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 5px;
}

.footer-logo .logo-text span {
    color: var(--primary-pink);
}

.footer-logo .logo-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    display: inline-block;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9rem;
}


.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* CENTERED FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.copyright a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.2s ease;
}

.copyright a:hover {
    color: var(--white);
}

.footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.payment-method {
    width: 38px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 24px;
        justify-content: center;
        align-items: center;
    }
    
    .whatsapp-float:hover {
        width: 200px;
        justify-content: flex-start;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 55px;
        height: 55px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .whatsapp-float:hover .whatsapp-icon {
        position: relative;
        left: 0;
        right: auto;
        margin: 0;
        transform: none;
        top: 0;
    }
    
    .whatsapp-float .whatsapp-text {
        padding-left: 55px;
        font-size: 13px;
        padding-right: 20px;
        width: calc(100% - 55px);
    }
}

@media (max-width: 768px) {
    .contact-info,
    .whatsapp-form {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .contact-info h3,
    .whatsapp-form h3 {
        font-size: 1.8rem;
    }
    
    .footer-logo .logo-text {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
        justify-content: center;
        align-items: center;
    }
    
    .whatsapp-float:hover {
        width: 180px;
        justify-content: flex-start;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .whatsapp-float:hover .whatsapp-icon {
        position: relative;
        left: 0;
        right: auto;
        margin: 0;
        transform: none;
        top: 0;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 13px;
        padding-left: 50px;
        padding-right: 15px;
        width: calc(100% - 50px);
    }
}

@media (max-width: 576px) {
    .contact-info,
    .whatsapp-form {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .contact-info h3,
    .whatsapp-form h3 {
        font-size: 1.6rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .whatsapp-float:hover {
        width: 160px;
        justify-content: flex-start;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .whatsapp-float:hover .whatsapp-icon {
        position: relative;
        left: 0;
        right: auto;
        margin: 0;
        transform: none;
        top: 0;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 12px;
        padding-left: 45px;
        padding-right: 12px;
        width: calc(100% - 45px);
    }
}

/* WhatsApp float button for very small screens */
@media (max-width: 400px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        justify-content: center;
        align-items: center;
    }
    
    .whatsapp-float:hover {
        width: 140px;
        justify-content: flex-start;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .whatsapp-float:hover .whatsapp-icon {
        position: relative;
        left: 0;
        right: auto;
        margin: 0;
        transform: none;
        top: 0;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 11px;
        padding-left: 40px;
        padding-right: 10px;
        width: calc(100% - 40px);
    }
    
    .copyright {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* Ensure proper spacing for email in contact details */
.contact-detail > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-detail p:first-of-type {
    margin-bottom: 5px;
}

/* Gallery Hero */
.gallery-hero {
    margin-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    text-align: center;
}

.gallery-hero h1 {
    font-size: 3.2rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--medium-gray);
}

/* Gallery Filter */
.gallery-filter-section {
    padding: 50px 0 30px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 32px;
    background-color: var(--white);
    border: 2px solid var(--light-purple);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

/* Gallery Grid */
.gallery-grid-section {
    padding: 40px 0 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    height: 380px;
    border: 1px solid var(--light-purple);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(107, 78, 140, 0.25);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 30px;
    color: var(--white);
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.6s ease 0.2s;
    color: #ffffff;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    transform: translateY(20px);
    transition: transform 0.6s ease 0.3s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.view-btn {
    background-color: var(--white);
    color: var(--primary-purple);
    border: none;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.gallery-item:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    max-width: 900px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: modalSlideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.9rem;
    color: var(--white);
    font-weight: 600;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 40px;
    display: flex;
    gap: 40px;
}

.modal-img {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.modal-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modal-img:hover img {
    transform: scale(1.05);
}

.modal-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    line-height: 1.3;
}

.modal-text p {
    margin-bottom: 35px;
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.modal-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.close-modal-btn {
    padding: 14px 30px;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    bottom: 0;
    left: 0;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

footer .social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

footer .social-links a:hover {
    background-color: var(--primary-purple);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.fade-in-up-delay {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 1200px) {
    .carousel-container {
        height: 580px;
    }
    
    .carousel-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .carousel-container {
        height: 500px;
    }
    
    .carousel-slide {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        justify-content: center;
    }
    
    .carousel-content {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .carousel-content h1 {
        font-size: 2.8rem;
    }
    
    .carousel-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .carousel-image img {
        width: 100%;
        height: auto;
    }
    
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }
    
    .collage-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* .contact-content {
        flex-direction: column;
        gap: 50px;
    } */
    
    .modal-body {
        flex-direction: column;
        gap: 30px;
    }
    
    .modal-text h4 {
        font-size: 1.8rem;
    }
}

/* MOBILE HERO BACKGROUND STYLES - UPDATED */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid var(--light-purple);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 18px 0;
    }
    
    /* LOGO FIX FOR MOBILE */
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
        margin-left: 0;
        padding-left: 5px;
    }
    
    /* HERO BACKGROUND FOR MOBILE */
    .hero {
        padding-top: 120px;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .carousel-slide {
        flex-direction: column;
        padding: 0;
        text-align: center;
        justify-content: center;
        /* Background gradient overlay for better text readability */
        background: linear-gradient(135deg, rgba(107, 78, 140, 0.85) 0%, rgba(200, 124, 165, 0.85) 100%) !important;
    }
    
    .carousel-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: -1 !important;
        opacity: 0.4 !important;
        pointer-events: none !important;
    }
    
    .carousel-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .carousel-content {
        position: relative !important;
        z-index: 2 !important;
        padding: 40px 30px !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
        color: var(--white) !important;
    }
    
    .carousel-content h1 {
        color: var(--white) !important;
        font-size: 2.5rem !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        margin-bottom: 20px !important;
    }
    
    .carousel-content h1 span {
        color: var(--light-pink) !important;
    }
    
    .carousel-content p {
        color: rgba(255, 255, 255, 0.95) !important;
        max-width: 100% !important;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2) !important;
        margin-bottom: 30px !important;
        font-size: 1.1rem !important;
    }
    
    .carousel-slide .btn {
        background: rgba(255, 255, 255, 0.9) !important;
        color: var(--primary-purple) !important;
        border: 2px solid transparent !important;
    }
    
    .carousel-slide .btn:hover {
        background: var(--white) !important;
        color: var(--primary-purple) !important;
    }
    
    .carousel-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .carousel-btn.prev {
        left: 15px !important;
    }
    
    .carousel-btn.next {
        right: 15px !important;
    }
    
    .carousel-dots {
        bottom: 20px !important;
    }
    
    .dot {
        background-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .dot.active {
        background-color: var(--white) !important;
    }
    /* END HERO BACKGROUND */
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .social-btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-header {
        padding: 25px;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    /* Modal close button larger on mobile */
    .close-modal {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    /* LOGO FIX FOR SMALL MOBILE */
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        padding-left: 4px;
    }
    
    /* HERO BACKGROUND FOR SMALL MOBILE */
    .hero {
        padding-top: 110px;
    }
    
    .carousel-container {
        height: 400px;
        border-radius: 15px;
    }
    
    .carousel-slide {
        padding: 0 !important;
    }
    
    .carousel-content {
        padding: 40px 75px !important;
    }
    
    .carousel-content h1 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    .carousel-content p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    
    /* Reduce image opacity more on very small screens */
    .carousel-image {
        opacity: 0.35 !important;
    }
    
    .carousel-dots {
        bottom: 15px !important;
    }
    
    .carousel-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .carousel-btn.prev {
        left: 10px !important;
    }
    
    .carousel-btn.next {
        right: 10px !important;
    }
    /* END HERO BACKGROUND */
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        border-radius: var(--border-radius);
    }
    
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
/*     
    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .contact-detail i {
        margin-right: 0;
        margin-bottom: 15px;
    } */
    
    .whatsapp-form {
        padding: 25px 20px;
    }
    
    .gallery-hero {
        padding-top: 100px;
    }
    
    .gallery-hero h1 {
        font-size: 2.2rem;
    }
    
    .gallery-hero p {
        font-size: 1.1rem;
    }
    
    .gallery-item {
        height: 320px;
    }
    
    /* Modal adjustments for very small screens */
    .modal-content {
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
        gap: 20px;
    }
    
    .modal-text h4 {
        font-size: 1.5rem;
    }
    
    .modal-text p {
        font-size: 1rem;
    }
    
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    /* LOGO FIX FOR VERY SMALL MOBILE */
    .logo {
        gap: 6px;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
        padding-left: 3px;
    }
    
    /* HERO BACKGROUND FOR VERY SMALL MOBILE */
    .carousel-container {
        height: 380px;
        border-radius: 10px;
    }
    
    .carousel-content h1 {
        font-size: 1.7rem !important;
    }
    
    .carousel-content p {
        font-size: 0.95rem !important;
    }
    
    /* Further reduce opacity on tiny screens */
    .carousel-image {
        opacity: 0.3 !important;
    }
    
    .carousel-image img {
        max-height: 100% !important;
    }
    /* END HERO BACKGROUND */
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 300px;
    }
}

/* ========== IMPROVED RESPONSIVE STYLES ========== */

/* Better mobile touch targets */
@media (max-width: 768px) {
    .nav-links a, 
    .filter-btn,
    .view-btn,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve gallery item clickability */
    .gallery-item {
        cursor: pointer;
    }
    
    /* Better modal on mobile */
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Fix for iOS scrolling */
    .modal.active {
        position: fixed;
        height: 100%;
        -webkit-overflow-scrolling: touch;
    }
}

/* Fix for modal background scroll */
body.modal-open,
html.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Improve navbar responsiveness */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 0;
    }
    
    /* Better mobile menu animation */
    .nav-links {
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

/* Gallery filter improvements */
.gallery-item.filter-show {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Better image loading */
.gallery-item img,
.collage-item img {
    background-color: #f5f5f5;
    transition: transform 0.6s ease;
}

/* Improve modal close button on mobile */
@media (max-width: 576px) {
    .close-modal {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
    
    .modal-header {
        padding: 20px 60px 20px 20px;
    }
}

/* Fix for carousel on very small screens */
@media (max-width: 400px) {
    .carousel-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .carousel-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .gallery-item {
        height: 280px;
    }
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
}

/* Better touch feedback for buttons */
.btn,
.filter-btn,
.view-btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Improve accessibility for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== ADD THESE NEW STYLES TO YOUR EXISTING STYLE.CSS ========== */

/* Fix for gallery images not showing - REMOVE FILTERS */
.gallery-item img {
    /* REMOVED ALL UNNECESSARY FILTERS */
    filter: none !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Order button in gallery overlay */
.order-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    margin-top: 10px;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-item:hover .order-btn {
    transform: translateY(0);
}

.order-btn:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Update view button position */
.gallery-overlay .view-btn {
    margin-bottom: 8px;
    width: 100%;
}

/* Modal price styling */
.modal-price {
    font-size: 1.4rem;
    color: var(--primary-pink);
    font-weight: bold;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid var(--light-purple);
    border-bottom: 1px solid var(--light-purple);
}

/* Order success message */
.order-success {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    text-align: center;
    animation: fadeIn 0.3s ease;
    border: 2px solid #25D366;
    max-width: 350px;
    width: 90%;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.success-content i {
    font-size: 3rem;
    color: #25D366;
}

.success-content p {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1.1rem;
}

/* WhatsApp button improvements */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1da851, #0d7c6e);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Image loading fix */
.gallery-item img,
.modal-img img {
    background-color: #f5f5f5;
    min-height: 200px;
    object-fit: cover;
}

/* Ensure modal image is properly sized */
.modal-img {
    min-height: 300px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Fix for mobile images */
@media (max-width: 768px) {
    .gallery-item img {
        min-height: 250px;
    }
    
    .modal-img {
        min-height: 250px;
    }
    
    .modal-img img {
        max-height: 300px;
    }
    
    .order-success {
        padding: 20px;
        max-width: 300px;
    }
    
    .success-content i {
        font-size: 2.5rem;
    }
}

/* Loading state for images */
.gallery-item img.loading {
    opacity: 0.7;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Fix for image display issues */
.gallery-grid img,
.collage-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== NEW STYLES FOR EARRINGS AND SLIDER ========== */

/* Variation badge for products with multiple images */
.variation-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(107, 78, 140, 0.3);
}

/* Modal slider styles */
.modal-img-slider {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 400px;
    background: var(--light-gray);
    display: none; /* Hidden by default */
}

.modal-img-slider.active {
    display: block;
}

.modal-img-slider:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Swiper container */
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.swiper-slide img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary-purple);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

/* Swiper pagination */
.swiper-pagination {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-purple);
}

/* When slider is active, hide single image modal */
.modal-body.has-slider .modal-img {
    display: none;
}

.modal-body.has-slider .modal-img-slider {
    display: block;
}

/* Responsive adjustments for slider */
@media (max-width: 992px) {
    .modal-body.has-slider {
        flex-direction: column;
    }
    
    .modal-body.has-slider .modal-text {
        order: 2;
    }
    
    .modal-body.has-slider .modal-img-slider {
        order: 1;
    }
    
    .swiper-slide img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .modal-img-slider {
        min-height: 300px;
    }
    
    .swiper-slide img {
        max-height: 250px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .modal-img-slider {
        min-height: 250px;
    }
    
    .swiper-slide img {
        max-height: 200px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
        display: none; /* Hide arrows on very small screens */
    }
    
    .variation-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* ========== MINIMAL REVIEWS SLIDER ========== */
.reviews {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
}

.reviews-slider-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.review-slide {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-purple);
    transition: var(--transition);
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.review-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-purple), var(--primary-pink));
    opacity: 0;
    transition: var(--transition);
}

.review-slide.swiper-slide-active:before {
    opacity: 1;
}

.review-content {
    width: 100%;
    position: relative;
}

.review-text {
    margin-bottom: 30px;
    position: relative;
}

.review-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-weight: 400;
    position: relative;
    padding: 0 10px;
    text-align: center;
    font-style: normal;
}

.review-text:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 3rem;
    color: var(--primary-purple);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.review-text:after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 3rem;
    color: var(--primary-purple);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transform: rotate(180deg);
}

.review-author {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-purple);
}

.review-author h4 {
    font-size: 1.1rem;
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-weight: 600;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 5px;
}

.review-stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Navigation */
.review-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.review-prev,
.review-next {
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--light-purple);
    color: var(--primary-purple);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-prev:hover,
.review-next:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 78, 140, 0.2);
}

.review-prev:disabled,
.review-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.review-prev:disabled:hover,
.review-next:disabled:hover {
    background: var(--white);
    color: var(--primary-purple);
    border-color: var(--light-purple);
    box-shadow: none;
}

/* Pagination */
.review-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--light-purple);
    border-radius: 50%;
    opacity: 0.5;
    transition: var(--transition);
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: var(--primary-purple);
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 80px 0;
    }
    
    .review-slide {
        padding: 30px 25px;
        min-height: 250px;
    }
    
    .review-text p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .review-text:before,
    .review-text:after {
        font-size: 2.5rem;
    }
    
    .review-text:before {
        top: -10px;
    }
    
    .review-text:after {
        bottom: -15px;
    }
    
    .review-nav {
        margin-top: 30px;
    }
    
    .review-prev,
    .review-next {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 576px) {
    .reviews {
        padding: 60px 0;
    }
    
    .review-slide {
        padding: 25px 20px;
        min-height: 220px;
    }
    
    .review-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .review-author h4 {
        font-size: 1rem;
    }
    
    .review-stars i {
        font-size: 0.8rem;
    }
}