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

:root {
    --cream: #F5F1E8;
    --beige: #E8DDD4;
    --coffee-cream: #D4C5B9;
    --dark-beige: #C9B8A9;
    --light-coffee: #BAA896;
    --coffee: #9D8B7A;
    --dark-coffee: #7A6B5D;
    --white: #FFFFFF;
    --off-white: #FAF9F7;
    --text-dark: #3A3329;
    --text-light: #6B5F52;
    --gold: #D4AF37;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(122, 107, 93, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-coffee);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-coffee);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    padding: 15px 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(122, 107, 93, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--coffee);
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--coffee);
    padding-left: 30px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--cream) 100%);
}

/* Site Identity Logo */
.site-identity {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
}

.site-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    animation: fadeInDown 1s ease;
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(245, 241, 232, 0.15) 0%, 
        rgba(232, 221, 212, 0.1) 50%,
        rgba(245, 241, 232, 0.15) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    z-index: 2;
    padding: 40px;
    position: relative;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 700;
    color: #2C2416;
    margin-bottom: 25px;
    letter-spacing: 6px;
    text-shadow: 
        0 2px 20px rgba(255, 255, 255, 0.8),
        0 4px 30px rgba(255, 255, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 26px;
    color: #4A3F2E;
    margin-bottom: 45px;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 
        0 1px 15px rgba(255, 255, 255, 0.9),
        0 2px 20px rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1.2s ease;
    font-family: 'Inter', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, #7A6B5D 0%, #9D8B7A 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(122, 107, 93, 0.4),
        0 4px 10px rgba(122, 107, 93, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: linear-gradient(135deg, #9D8B7A 0%, #7A6B5D 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(122, 107, 93, 0.5),
        0 6px 15px rgba(122, 107, 93, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    color: var(--dark-coffee);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(122, 107, 93, 0.2);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(122, 107, 93, 0.3);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-coffee);
}

.dot.active,
.dot:hover {
    background: var(--dark-coffee);
    transform: scale(1.3);
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    background: var(--off-white);
}


.content-section:nth-child(even) {
    background: var(--cream);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-coffee);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--coffee);
}

/* Tabs */
.tabs-container {
    margin-top: 40px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--beige);
    padding-bottom: 20px;
}

.tab-btn {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--beige);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background: var(--beige);
    color: var(--coffee);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--dark-coffee);
    color: var(--white);
    border-color: var(--dark-coffee);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.content-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(122, 107, 93, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.content-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--dark-coffee);
    margin-bottom: 25px;
}

.content-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--coffee);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-card ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.content-card ul li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* About Section */
.about-content {
    display: grid;
    gap: 40px;
}

.about-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(122, 107, 93, 0.1);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-coffee);
    margin-bottom: 25px;
}

.about-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Story Section with Images */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h3 {
    margin-bottom: 25px;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(122, 107, 93, 0.15);
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: translateY(-5px);
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Features Grid - Modern Card Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(122, 107, 93, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--coffee-cream);
    box-shadow: 0 10px 25px rgba(122, 107, 93, 0.15);
    background: var(--white);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #6B8E5A 0%, #5A7A4A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(107, 142, 90, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(107, 142, 90, 0.35);
}

.feature-icon-wrapper .check-icon {
    width: 24px;
    height: 24px;
    color: var(--white);
    stroke: var(--white);
    stroke-width: 3;
}

.feature-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* Old features-list (keeping for compatibility) */
.features-list {
    list-style: none;
    margin-left: 0;
}

.features-list li {
    font-size: 17px;
    line-height: 2.5;
    color: var(--text-light);
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: #6B8E5A;
    flex-shrink: 0;
    stroke: #6B8E5A;
}

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

.services-grid .service-item {
    text-align: center;
}

.service-item {
    padding: 35px 25px;
    background: var(--cream);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 107, 93, 0.15);
    border-color: var(--coffee-cream);
    background: var(--white);
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark-coffee);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(122, 107, 93, 0.1);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--dark-coffee);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--coffee);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--dark-coffee);
    text-decoration: underline;
}

.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(122, 107, 93, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-coffee);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    transition: all 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--dark-coffee);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(122, 107, 93, 0.3);
}

.submit-btn:hover {
    background: var(--coffee);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(122, 107, 93, 0.4);
}

/* Map Section */
.map-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--beige);
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-coffee);
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(122, 107, 93, 0.15);
    background: var(--cream);
    padding: 5px;
}

/* Features/Stats Section */
.features-section {
    background: linear-gradient(135deg, var(--beige) 0%, var(--coffee-cream) 100%);
    padding: 80px 0;
}

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

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(122, 107, 93, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(122, 107, 93, 0.25);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--dark-coffee);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--dark-coffee);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-coffee);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Collection Section */
.collection-section {
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.collection-item {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(122, 107, 93, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(122, 107, 93, 0.2);
}

.collection-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--coffee-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    font-size: 80px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.collection-item:hover .image-placeholder {
    transform: scale(1.2);
    opacity: 1;
}

.collection-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.collection-badge {
    background: var(--dark-coffee);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(122, 107, 93, 0.3);
}

.collection-info {
    padding: 25px;
    background: var(--white);
}

.collection-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--dark-coffee);
    margin-bottom: 8px;
}

.collection-info p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
}

.collection-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--coffee);
    letter-spacing: 1px;
}

/* Service Icons */
.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: var(--dark-coffee);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--dark-coffee);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(122, 107, 93, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--coffee-cream);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(122, 107, 93, 0.2);
}

.testimonial-rating {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--beige);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coffee) 0%, var(--dark-coffee) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 18px;
    color: var(--dark-coffee);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--dark-coffee);
    color: var(--cream);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-menu li a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--cream);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover svg {
    fill: var(--dark-coffee);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--cream);
    margin: 0;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly buttons */
button, a, .cta-button {
    -webkit-tap-highlight-color: rgba(122, 107, 93, 0.2);
    touch-action: manipulation;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #FFFFFF;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo {
        font-size: 22px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(122, 107, 93, 0.2);
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--beige);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--white);
        margin: 0;
        border: none;
        border-top: 1px solid var(--beige);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-item {
        padding: 12px 20px;
    }

    .dropdown-arrow {
        display: none;
    }

    .slide-title {
        font-size: 35px;
        letter-spacing: 3px;
        text-shadow: 
            0 2px 15px rgba(255, 255, 255, 0.8),
            0 3px 20px rgba(255, 255, 255, 0.6);
        padding: 0 20px;
    }

    .slide-subtitle {
        font-size: 16px;
        letter-spacing: 1px;
        text-shadow: 
            0 1px 10px rgba(255, 255, 255, 0.9);
        padding: 0 20px;
    }

    .slide-content {
        padding: 20px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 14px;
    }

    .hero-slider {
        height: 100vh;
        min-height: 600px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .content-card,
    .about-card,
    .contact-form-container {
        padding: 30px 20px;
    }

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

    .contact-card {
        padding: 25px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .map-container {
        padding: 3px;
    }

    .map-container iframe {
        height: 350px;
        border-radius: 12px;
    }

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

    .tab-btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .story-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image img {
        height: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }
}

