/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Header and Navigation */
header {
    background-color: #990000;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    color: #f0f0f0;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffcccc;
}

/* Hero Sections */
.hero {
    background-image: url('https://images.unsplash.com/photo-1557844352-761f2565b576?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 4rem;
    position: relative;
    margin-bottom: 3rem;
}

.about-hero, .contact-hero, .gallery-hero {
    background-image: url('https://images.unsplash.com/photo-1500076656116-558758c991c1?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 4rem;
    position: relative;
}

.products-hero {
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQRIvGJJ1ta3-JwZsMbSYpQ70D0yH57pK-gWw&s');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 4rem;
    position: relative;
}

.hero::before, .about-hero::before, .products-hero::before, .contact-hero::before, .gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content, .about-content, .products-content, .contact-content, .gallery-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1, .about-hero h1, .products-hero h1, .contact-hero h1, .gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Features Section */
.features, .about-details, .product-categories, .contact-info, .gallery-showcase {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card, .category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card img, .category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3, .category-card h3 {
    padding: 1rem;
    color: #990000;
}

.feature-card p, .category-card ul {
    padding: 0 1rem 1rem;
}

/* Quick Info Section */
.quick-info {
    background: #f5f5f5;
    padding: 4rem 2rem;
    text-align: center;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #990000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-button {
    background: #990000;
    color: #f0f0f0;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #7a0000;
}

/* Map Section */
.map-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.map-container {
    max-width: 1200px;
    margin: 2rem auto;
    height: 400px;
    background: #ddd;
}

/* Footer */
footer {
    background: #990000;
    color: #f0f0f0;
    padding: 3rem 2rem 1rem;
}

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

.footer-info h4,
.footer-links h4 {
    margin-bottom: 1rem;
}

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

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

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .feature-grid,
    .category-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Seasonal Products Section */
.seasonal-products {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

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

.seasonal-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.seasonal-card h3 {
    color: #990000;
    margin-bottom: 1rem;
}

/* Utility Classes */
.cta-button {
    background-color: #990000;
    color: #f0f0f0;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 1rem;
}

.cta-button:hover {
    background-color: #7a0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* About Page Specific Styles */
.about-details {
    padding: 6rem 2rem;
    background: transparent;
}

.about-grid {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    flex: 0.7;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: none;
    max-width: 400px;
    max-height: 300px;
    margin-left: 30px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-text h2 {
    color: #990000;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #444;
}

.about-text ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 1rem;
    color: #444;
    position: relative;
    padding-left: 0;
}

.about-text ul li:before {
    content: none;
}

.about-intro {
    text-align: center;
    padding: 3rem 2rem;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.about-intro .container {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.values {
    background: #f5f5f5;
    padding: 6rem 2rem;
}

.values h2 {
    text-align: center;
    color: #990000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.value-card h3 {
    color: #990000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 2rem;
        width: 100%;
    }
    
    .about-text {
        padding: 1.5rem;
    }
    
    .values {
        padding: 4rem 1.5rem;
    }
    
    .values h2 {
        font-size: 2rem;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    justify-content: center;
}

/* Order Button */
.order-button {
    background-color: transparent;
    color: #f0f0f0;
    padding: 1rem 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.order-button:hover {
    background-color: rgba(240, 240, 240, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.order-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button, .order-button {
        width: 80%;
        text-align: center;
    }
}

/* About Us Section on Home Page */
.about-us {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.about-us h2 {
    text-align: center;
    color: #990000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    line-height: 1.8;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.1rem;
}

.learn-more-button {
    display: inline-block;
    background-color: #990000;
    color: #f0f0f0;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #990000;
}

.learn-more-button:hover {
    background-color: transparent;
    color: #990000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 2rem;
    background-color: #fff0f0;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us h2 {
    text-align: center;
    color: #990000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.why-choose-us h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #990000;
    margin: 1rem auto 0;
}

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

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.reason-icon img {
    width: 100%;
    height: auto;
}

.reason-card h3 {
    color: #990000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    color: #555;
    line-height: 1.6;
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 1.5rem;
    }
    
    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .reason-card {
        padding: 1.5rem;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
    }
}

/* Produce Gallery */
.produce-gallery {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

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

.produce-gallery h3 {
    text-align: center;
    color: #990000;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 250px;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Media query for responsive design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 180px;
    }
}

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

/* Gallery Page Styles */
.gallery-showcase {
    padding: 4rem 2rem;
}

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

.gallery-showcase h2 {
    text-align: center;
    color: #990000;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

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

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

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

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

.image-caption {
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    text-align: center;
}

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

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

/* Product List Styles */
.product-list {
    padding: 0;
    list-style: none;
}

.product-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-name {
    font-weight: 500;
    flex: 1;
    min-width: 100px;
}

.product-price {
    color: #990000;
    font-weight: bold;
    margin: 0 10px;
}

.add-to-cart {
    background: #990000;
    color: #f0f0f0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.add-to-cart:hover {
    background: #7a0000;
}

@media (max-width: 768px) {
    .product-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-price {
        margin: 5px 0;
    }
    
    .add-to-cart {
        width: 100%;
    }
}

/* Cart Icon Styles */
.cart-icon {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.cart-icon:hover {
    color: #ffcccc;
}

/* Product Thumbnail Styles */
.product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.product-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .product-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-thumbnail {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Product Cards Styles */
.product-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #FFD700;
    transition: width 0.3s ease;
    z-index: 1;
}

.product-card:hover:before {
    width: 100%;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 10px 10px rgba(255, 0, 0, 0.1);
}

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

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

.product-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    margin: 0 0 0.5rem 0;
    color: #990000;
    font-size: 1.2rem;
}

.product-details .product-price {
    color: #990000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-details .add-to-cart {
    background-color: #990000;
    color: #f0f0f0;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-details .add-to-cart:before {
    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;
}

.product-details .add-to-cart:hover {
    background-color: #7a0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.2);
}

.product-details .add-to-cart:hover:before {
    left: 100%;
}

/* Pulse animation for product title on hover */
@keyframes pulseTitle {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.product-card:hover .product-name {
    animation: pulseTitle 1s ease infinite;
    color: #ffcccc;
}

/* Enhanced FadeInUp animation with staggered delays */
.animate-card {
    opacity: 0;
    transform: translateY(50px);
    animation: enhancedFadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

/* More pronounced staggered animation for cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }
.product-card:nth-child(10) { animation-delay: 1s; }
.product-card:nth-child(11) { animation-delay: 1.1s; }
.product-card:nth-child(12) { animation-delay: 1.2s; }
.product-card:nth-child(13) { animation-delay: 1.3s; }
.product-card:nth-child(14) { animation-delay: 1.4s; }
.product-card:nth-child(15) { animation-delay: 1.5s; }

/* Responsive design for cards */
@media (max-width: 992px) {
    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Animation for when product is added to cart */
@keyframes addedToCart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.card-added {
    animation: addedToCart 0.7s ease;
}

/* Cart notification styles */
.cart-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: #c41e3a;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Cart icon pulse animation */
@keyframes cartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-pulse {
    animation: cartPulse 0.7s ease;
    color: #FFD700;
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.customer-reviews h2 {
    margin-bottom: 2rem;
    color: #990000;
    font-size: 2rem;
    position: relative;
}

.reviews-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer {
    font-weight: bold;
    color: #555;
}

@media (max-width: 768px) {
    .reviews-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .review-card {
        width: 100%;
    }
}

/* Updated Contact Page Styles */
.contact-container {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-details-card, .contact-form-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-card:hover, .contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-details-card h2, .contact-form-card h2 {
    color: #990000;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
    height: 40px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #990000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

.submit-button {
    background: #990000;
    color: #f0f0f0;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    display: block;
    width: 100%;
}

.submit-button:hover {
    background: #7a0000;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.map-section {
    padding: 4rem 2rem;
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-section h2 {
    text-align: center;
    color: #990000;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mission Section Styles */
.mission-simple {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.mission-simple div {
    flex: 1;
}

.mission-simple img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.mission-simple img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mission-simple {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-simple img {
        max-width: 100%;
    }
}

.gallery-header h2 {
    color: #990000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #990000;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.filter-btn {
    background: transparent;
    border: 2px solid #990000;
    color: #990000;
    padding: 0.8rem 2rem;
    margin: 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-btn:hover, .filter-btn.active {
    background: #990000;
    color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.2);
}

.gallery-category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #990000;
    color: #f0f0f0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #990000;
    color: #f0f0f0;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.showcase-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #990000;
    margin-bottom: 1.5rem;
}

.showcase-button {
    background-color: #990000;
    color: #f0f0f0;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.showcase-button:hover {
    background-color: #7a0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.3);
}

.feature-icon {
    background-color: rgba(153, 0, 0, 0.1);
    color: #990000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
} 