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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #867366;
    background-color: #E8D6CA;
}

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

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #E8D6CA;
    color: #867366;
    padding: 2rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar.collapsed {
    transform: translateX(-240px);
    width: 60px;
}

.sidebar.collapsed .logo h2,
.sidebar.collapsed .nav-menu span,
.sidebar.collapsed .sidebar-footer {
    opacity: 0;
    pointer-events: none;
}

.sidebar.collapsed .logo-img {
    width: 40px;
    height: 40px;
}

.sidebar.collapsed .nav-menu a {
    justify-content: center;
    padding: 1rem;
}

.sidebar.collapsed .nav-menu a i {
    margin-right: 0;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 1rem;
    object-fit: contain;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    color: #867366;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-weight: 400;
}

.nav-menu a span {
    transition: opacity 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(134, 115, 102, 0.1);
    border-left-color: #8F7E70;
    color: #867366;
    transform: translateX(5px);
}

.nav-menu a i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: #867366;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8F7E70;
    transform: scale(1.1);
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #8F7E70;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.sidebar-toggle:hover {
    background: #867366;
    transform: scale(1.05);
}

.sidebar-toggle.collapsed {
    left: 80px;
}

.sidebar-toggle i {
    transition: transform 0.3s ease;
}

.sidebar-toggle.collapsed i {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background: #8F7E70;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #867366;
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.main-content.sidebar-collapsed {
    margin-left: 60px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background: #FAF0E6;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #867366;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    color: #867366;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #8F7E70;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(143, 126, 112, 0.3);
}

.btn-primary:hover {
    background: #867366;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(134, 115, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #867366;
    border: 2px solid #867366;
}

.btn-secondary:hover {
    background: #867366;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #867366;
    border: 2px solid #867366;
}

.btn-outline:hover {
    background: #867366;
    color: #FFFFFF;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #867366;
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Featured Gallery */
.featured-gallery {
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
}

/* Reviews */
.reviews {
    background: #f8f8f8;
    padding: 6rem 0;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #867366;
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.review-card {
    min-width: 100%;
    background: white;
    padding: 3rem 2.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-sizing: border-box;
}

.review-card.active {
    opacity: 1;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reviewer {
    margin-top: 2rem;
}

.reviewer strong {
    display: block;
    color: #867366;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.reviewer span {
    color: #999;
    font-size: 0.95rem;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(134, 115, 102, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #867366;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #867366;
    transform: scale(1.2);
}

.dot:hover {
    background: #8F7E70;
}

/* Responsive Design for Reviews Carousel */
@media (max-width: 768px) {
    .reviews-carousel {
        margin: 0 2rem;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
    }
    
    .review-card p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .stars {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .reviews-carousel {
        margin: 0 1rem;
    }
    
    .review-card {
        padding: 1.5rem 1rem;
    }
    
    .carousel-btn {
        position: relative;
        top: auto;
        transform: none;
        margin: 1rem 0.5rem 0;
        display: inline-block;
    }
    
    .prev-btn,
    .next-btn {
        left: auto;
        right: auto;
    }
    
    .carousel-container {
        margin-bottom: 1rem;
    }
}

/* Hotel Partners */
.hotel-partners {
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.partner-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Contact Form */
.contact-form-section {
    background: #8F7E70;
    color: white;
}

.contact-form-section h2 {
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #F4D3E1;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* About Page Styles */
.page-header {
    background: #8F7E70;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Our Story Section */
.our-story {
    background: white;
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #867366;
    margin-bottom: 3rem;
}

.story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8F7E70;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.story-text p strong {
    color: #867366;
    font-weight: 600;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 10px;
    border-left: 4px solid #E8C4D8;
}

.highlight-item i {
    color: #D2691E;
    font-size: 1.5rem;
}

.highlight-item span {
    font-weight: 600;
    color: #867366;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Mission Section */
.our-mission {
    background: #f8f8f8;
    padding: 6rem 0;
}

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

.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission-card i {
    font-size: 3rem;
    color: #8F7E70;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #867366;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.our-team {
    background: white;
    padding: 6rem 0;
}

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

.team-member {
    text-align: center;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #8F7E70;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #867366;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #8F7E70;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-member p:last-child {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.our-values {
    background: #f8f8f8;
    padding: 6rem 0;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #8F7E70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.value-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #867366;
    margin-bottom: 0.5rem;
}

.value-text p {
    color: #666;
    line-height: 1.6;
}

.values-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: #8F7E70;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: white;
    color: #8F7E70;
    border-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-secondary:hover {
    background: #8F7E70;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(143, 126, 112, 0.3);
}

/* Menu Page Styles */
.menu-categories {
    padding: 4rem 0;
    background: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid #867366;
    background: transparent;
    color: #867366;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: #867366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(134, 115, 102, 0.3);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-category h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #867366;
}

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

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.item-image {
    height: 200px;
    overflow: hidden;
}

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

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

.item-content {
    padding: 1.5rem;
}

.item-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #867366;
    margin-bottom: 0.5rem;
}

.item-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #8F7E70;
}

.dietary-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag.vegetarian {
    background: #4CAF50;
    color: white;
}

.tag.vegan {
    background: #8BC34A;
    color: white;
}

.tag.gluten-free {
    background: #FF9800;
    color: white;
}

.tag.premium {
    background: #8F7E70;
    color: white;
}

.tag.traditional {
    background: #795548;
    color: white;
}

.tag.interactive {
    background: #9C27B0;
    color: white;
}

.tag.cocktail {
    background: #E91E63;
    color: white;
}

.tag.centerpiece {
    background: #2196F3;
    color: white;
}

.tag.unique {
    background: #FF5722;
    color: white;
}

.tag.fresh {
    background: #4CAF50;
    color: white;
}

.tag.healthy {
    background: #8BC34A;
    color: white;
}

.tag.cold {
    background: #2196F3;
    color: white;
}

.tag.dairy-free {
    background: #FF9800;
    color: white;
}

.tag.entertainment {
    background: #E91E63;
    color: white;
}

.tag.outdoor {
    background: #795548;
    color: white;
}

.tag.fun {
    background: #FF5722;
    color: white;
}

.tag.elegant {
    background: #673AB7;
    color: white;
}

.tag.custom {
    background: #607D8B;
    color: white;
}

.tag.variety {
    background: #9E9E9E;
    color: white;
}

/* Full-width alternating menu items */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-item-full {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    overflow: hidden;
    display: flex;
    min-height: 350px;
}

.menu-item-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Alternating layout */
.menu-item-full:nth-child(odd) {
    flex-direction: row;
}

.menu-item-full:nth-child(even) {
    flex-direction: row-reverse;
}

.item-content-wrapper {
    flex: 0 0 60%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-image-wrapper {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-full:hover .item-image-wrapper img {
    transform: scale(1.05);
}

.item-header {
    margin-bottom: 1.5rem;
}

.item-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #867366;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.dietary-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.item-content-bilingual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.description-text {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.description-spanish {
    font-style: italic;
    color: #8F7E70;
}

.description-english {
    color: #867366;
}

/* Responsive design for alternating menu */
@media (max-width: 768px) {
    .menu-item-full:nth-child(odd),
    .menu-item-full:nth-child(even) {
        flex-direction: column;
    }
    
    .item-content-wrapper {
        flex: none;
        order: 2;
        padding: 2rem;
    }
    
    .item-image-wrapper {
        flex: none;
        order: 1;
        height: 250px;
    }
    
    .item-header h3 {
        font-size: 1.8rem;
    }
    
    .menu-item-full {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .item-content-wrapper {
        padding: 1.5rem;
    }
    
    .item-header h3 {
        font-size: 1.5rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
}

/* Package Cards */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.package-card.featured {
    border: 3px solid #8F7E70;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #8F7E70;
    color: white;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header {
    background: #f8f8f8;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.package-card.featured .package-header {
    background: #8F7E70;
    color: white;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #867366;
}

.package-card.featured .package-header h3 {
    color: white;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8F7E70;
}

.package-card.featured .package-price {
    color: #F4D3E1;
}

.package-content {
    padding: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #666;
}

.package-features i {
    color: #4CAF50;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.package-note {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #8F7E70;
}

.package-note p {
    margin: 0;
    color: #666;
    font-style: italic;
}

/* Menu Info Section */
.menu-info {
    background: #f8f8f8;
    padding: 4rem 0;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 3rem;
    color: #8F7E70;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #867366;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Page Styles */
.gallery-filters {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #8F7E70;
    background: transparent;
    color: #867366;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8F7E70;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 126, 112, 0.3);
}

.gallery-section {
    padding: 4rem 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Stats */
.gallery-stats {
    background: #8F7E70;
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #F4D3E1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Masonry Layout Adjustments */
.gallery-item:nth-child(6n+1) {
    grid-row: span 1;
}

.gallery-item:nth-child(6n+3) {
    grid-row: span 1;
}

.gallery-item:nth-child(6n+5) {
    grid-row: span 1;
}

/* Lightbox Styles (Enhanced) */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: white;
    color: #333;
    transform: scale(1.1);
}

/* Animation for gallery items */
@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: galleryFadeIn 0.6s ease forwards;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 150px;
        text-align: center;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        margin: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-close {
        top: -40px;
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Special hover effects for gallery categories */
.gallery-item[data-category="churros"]:hover {
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.3);
}

.gallery-item[data-category="events"]:hover {
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.3);
}

.gallery-item[data-category="desserts"]:hover {
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

.gallery-item[data-category="setup"]:hover {
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.3);
}

/* Loading animation for filtered items */
.gallery-item.filtering {
    animation: filterFade 0.5s ease forwards;
}

@keyframes filterFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* FAQ Page Styles */
.faq-categories {
    padding: 4rem 0;
    background: white;
}

.faq-category {
    display: none;
    margin-top: 3rem;
}

.faq-category.active {
    display: block;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #8F7E70;
    box-shadow: 0 10px 30px rgba(143, 126, 112, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-item.active .faq-question {
    background: #8F7E70;
    color: white;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #867366;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-question i {
    font-size: 1.2rem;
    color: #8F7E70;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #E8D6CA;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact CTA Section */
.contact-cta {
    background: #f8f8f8;
    padding: 5rem 0;
    text-align: center;
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.contact-cta > p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-option i {
    font-size: 3rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

.contact-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.contact-option p {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-option span {
    color: #999;
    font-size: 0.9rem;
}

/* Search FAQ Feature */
.faq-search {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: #D2691E;
}

.faq-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

/* Animation for FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-form-container > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.detailed-contact-form {
    background: #E8D6CA;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    border-color: #D2691E;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.detailed-contact-form .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.detailed-contact-form .btn i {
    margin-right: 0.5rem;
}

/* Contact Info Sidebar */
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    background: #f0f0f0;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #8F7E70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 1.5rem;
}

.method-content h3 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.method-content p {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.method-content span {
    color: #666;
    font-size: 0.9rem;
}

.social-contact {
    margin-bottom: 3rem;
}

.social-contact h3 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f8f8;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: #8F7E70;
    color: white;
    transform: translateX(5px);
}

.social-links-large a i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    width: 30px;
    text-align: center;
}

.response-time h3 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.response-time ul {
    list-style: none;
    padding: 0;
}

.response-time li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #666;
    padding: 0.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.response-time li i {
    color: #D2691E;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Process Section */
.process-section {
    background: #f8f8f8;
    padding: 5rem 0;
}

.process-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 3rem;
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #8F7E70;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(232, 196, 216, 0.3);
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Testimonials */
.contact-testimonials {
    background: white;
    padding: 5rem 0;
}

.contact-testimonials h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #8B4513;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: -1;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .detailed-contact-form {
        padding: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-testimonials h2,
    .process-section h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .detailed-contact-form {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .contact-form-container h2 {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* CRM Embedded Form Styling */
.crm-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crm-form-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#TaveContactForm {
    width: 1px;
    min-width: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive adjustments for CRM form */
@media (max-width: 768px) {
    .crm-form-wrapper {
        padding: 25px;
        margin: 0 15px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .crm-form-wrapper {
        padding: 20px;
        margin: 0 10px;
    }
}
