/* Tema 3 - Chi'es Rustic Fast Food Tasarımı */

:root {
    --primary-red: #c41e3a;
    --dark-red: #8b1a1a;
    --dark-gray: #2c2c2c;
    --charcoal: #1a1a1a;
    --wood-brown: #8b6f47;
    --burlap-beige: #d4c4a8;
    --text-white: #ffffff;
    --text-gray: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    background: var(--charcoal);
    overflow-x: hidden;
}

/* Navbar */
.navbar-dark {
    background: var(--dark-gray) !important;
    padding: 15px 0;
}

.navbar-dark .nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover {
    color: var(--primary-red) !important;
}

.bg-dark-gray {
    background-color: var(--dark-gray) !important;
}

/* Hero Section - Rustic Style */
.hero-rustic {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.hero-rustic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
        url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1400&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-rustic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 111, 71, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.2) 0%, transparent 50%);
}

.hero-rustic-content {
    position: relative;
    z-index: 2;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.hero-logo-rustic {
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.95) 0%, rgba(212, 196, 168, 0.85) 100%);
    padding: 60px 80px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    transform: rotate(-2deg);
    border: 3px solid rgba(139, 111, 71, 0.3);
}

.hero-logo-rustic::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(139, 111, 71, 0.1) 10px,
        rgba(139, 111, 71, 0.1) 20px
    );
    border-radius: 15px;
    z-index: -1;
}

.rustic-circle-logo {
    width: 120px;
    height: 120px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 5px solid var(--dark-red);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.logo-letter {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title-rustic {
    font-size: 5rem;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle-rustic {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline-rustic {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Products Section - Rustic */
.products-rustic-section {
    background: var(--charcoal);
    padding: 0;
}

.products-rustic-header {
    background: 
        linear-gradient(to bottom, rgba(139, 111, 71, 0.4), transparent),
        url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1400&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.products-rustic-header::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--charcoal);
    clip-path: polygon(
        0% 0%,
        0% 60%,
        2% 65%,
        4% 60%,
        6% 70%,
        8% 60%,
        10% 68%,
        12% 60%,
        14% 72%,
        16% 60%,
        18% 65%,
        20% 60%,
        22% 70%,
        24% 60%,
        26% 67%,
        28% 60%,
        30% 72%,
        32% 60%,
        34% 64%,
        36% 60%,
        38% 70%,
        40% 60%,
        42% 66%,
        44% 60%,
        46% 71%,
        48% 60%,
        50% 65%,
        52% 60%,
        54% 69%,
        56% 60%,
        58% 63%,
        60% 60%,
        62% 71%,
        64% 60%,
        66% 67%,
        68% 60%,
        70% 70%,
        72% 60%,
        74% 64%,
        76% 60%,
        78% 72%,
        80% 60%,
        82% 65%,
        84% 60%,
        86% 68%,
        88% 60%,
        90% 70%,
        92% 60%,
        94% 66%,
        96% 60%,
        98% 71%,
        100% 60%,
        100% 0%
    );
}

.products-rustic-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--charcoal));
}

.menu-icon-rustic {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.menu-icon-rustic i {
    font-size: 2.5rem;
    color: white;
}

.section-title-rustic {
    color: var(--primary-red);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle-rustic {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

.products-rustic-content {
    background: var(--charcoal);
    padding: 60px 0;
}

.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.products-carousel {
    flex: 1;
    overflow: hidden;
}

.products-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.product-item-rustic {
    min-width: calc(33.333% - 14px);
    background: #000000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.product-image-rustic {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.product-image-rustic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item-rustic:hover .product-image-rustic img {
    transform: scale(1.1);
}

.product-name-rustic {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(196, 30, 58, 0.4);
}

.carousel-nav-btn:hover {
    background: var(--dark-red);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.6);
}

/* Avantajlı Menüler Section */
.advantages-rustic-section {
    background: var(--dark-gray);
    padding: 80px 0;
}

.advantage-card-rustic {
    background: var(--charcoal);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.advantage-card-rustic:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
    border-color: var(--primary-red);
}

.advantage-image-rustic {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.advantage-image-rustic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advantage-card-rustic:hover .advantage-image-rustic img {
    transform: scale(1.1);
}

.advantage-badge-rustic {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.advantage-info-rustic {
    padding: 25px;
}

.advantage-name-rustic {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.advantage-description-rustic {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.advantage-price-rustic {
    margin-bottom: 20px;
}

.price-amount {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 900;
}

.btn-advantage-rustic {
    width: 100%;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-advantage-rustic:hover {
    background: var(--dark-red);
    transform: scale(1.02);
}

/* Gallery Section */
.gallery-rustic-section {
    background: var(--charcoal);
    padding: 80px 0;
}

.gallery-item-rustic {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    background: #000;
}

.gallery-item-rustic:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3);
}

.gallery-item-rustic img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-rustic-section {
    background: var(--dark-gray);
    padding: 80px 0;
}

.contact-title-rustic {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.contact-item-rustic {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-item-rustic i {
    color: var(--primary-red);
    width: 25px;
}

/* Footer */
.footer-rustic {
    background: var(--charcoal);
    padding: 40px 0;
    border-top: 2px solid var(--primary-red);
}

.footer-text-rustic {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .product-item-rustic {
        min-width: calc(50% - 10px);
    }
    
    .hero-title-rustic {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-rustic {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-logo-rustic {
        padding: 40px 50px;
        transform: rotate(0deg);
    }
    
    .hero-title-rustic {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-rustic {
        font-size: 1.5rem;
    }
    
    .section-title-rustic {
        font-size: 2rem;
    }
    
    .product-item-rustic {
        min-width: 100%;
    }
    
    .rustic-circle-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-letter {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles */
.contact-page-rustic {
    background: #282828 !important;
    min-height: calc(100vh - 80px);
    padding: 100px 0 !important;
}

.contact-section-rustic {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-page-title-rustic {
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    color: var(--primary-red) !important;
    margin-bottom: 35px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    line-height: 1.1 !important;
    font-family: 'Arial', sans-serif !important;
}

.contact-info-list-rustic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item-rustic {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    font-family: 'Arial', sans-serif !important;
}

.contact-info-item-rustic i {
    color: var(--primary-red) !important;
    font-size: 1.2rem !important;
    min-width: 20px;
    text-align: left;
    flex-shrink: 0;
}

.contact-info-item-rustic span {
    flex: 1;
    color: #ffffff !important;
}

.contact-info-item-rustic strong {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Contact Form Styles */
.contact-form-wrapper-rustic {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form-title-rustic {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: var(--primary-red) !important;
    text-align: center;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.contact-form-title-rustic i {
    color: var(--primary-red) !important;
}

.contact-form-subtitle-rustic {
    text-align: center;
    color: #cccccc !important;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-rustic {
    margin-top: 30px;
}

.form-group-rustic {
    margin-bottom: 25px;
}

.form-label-rustic {
    display: block;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.form-label-rustic i {
    color: var(--primary-red) !important;
}

.form-control-rustic {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(231, 76, 60, 0.3) !important;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.form-control-rustic:focus {
    outline: none !important;
    border-color: var(--primary-red) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

.form-control-rustic::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control-rustic option {
    background: #282828;
    color: #ffffff;
}

.btn-contact-submit-rustic {
    background: var(--primary-red) !important;
    color: #ffffff !important;
    border: 2px solid var(--primary-red) !important;
    padding: 15px 50px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Arial', sans-serif !important;
}

.btn-contact-submit-rustic:hover {
    background: var(--dark-red) !important;
    border-color: var(--dark-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4) !important;
}

/* Location Page Styles */
.location-page-rustic {
    background: #ffffff;
    min-height: calc(100vh - 80px);
    padding: 0;
}

.location-header-rustic {
    background: white;
    border-bottom: 2px solid #f0f0f0;
}

.location-title-rustic {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.location-title-rustic i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.location-address-rustic {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.location-map-wrapper-rustic {
    width: 100%;
    height: calc(100vh - 280px);
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.location-footer-rustic {
    background: white;
    border-top: 2px solid #f0f0f0;
}

.btn-location-view-rustic {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-location-view-rustic:hover {
    background: #a01a2e;
    border-color: #a01a2e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

/* Reservation Page Styles - Rustic Fast Food */
.reservation-page-rustic {
    position: relative;
    min-height: calc(100vh - 80px);
    padding: 80px 0;
    background: var(--charcoal);
    overflow: hidden;
}

.reservation-rustic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.reservation-rustic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 111, 71, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%);
}

.reservation-main-card-rustic {
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.98) 0%, rgba(212, 196, 168, 0.95) 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    position: relative;
    border: 4px solid rgba(139, 111, 71, 0.4);
    transform: rotate(-0.5deg);
    max-width: 900px;
    margin: 0 auto;
}

.reservation-main-card-rustic::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(139, 111, 71, 0.1) 15px,
        rgba(139, 111, 71, 0.1) 30px
    );
    border-radius: 20px;
    z-index: -1;
}

.reservation-header-rustic {
    text-align: center;
    margin-bottom: 40px;
}

.reservation-icon-circle-rustic {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--dark-red);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

.reservation-icon-circle-rustic i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.reservation-title-rustic {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 3px;
    color: var(--charcoal) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.reservation-subtitle-rustic {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-contact-card-rustic {
    background: var(--charcoal);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 3px solid rgba(196, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.reservation-card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(196, 30, 58, 0.05) 10px,
        rgba(196, 30, 58, 0.05) 20px
    );
    opacity: 0.3;
}

.reservation-contact-card-rustic:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.5);
    border-color: rgba(196, 30, 58, 0.6);
}

.reservation-icon-wrapper-rustic {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.reservation-icon-circle-phone {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--dark-red);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.5);
}

.reservation-icon-circle-whatsapp {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #128C7E;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.reservation-icon-wrapper-rustic i {
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.reservation-card-title-rustic {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-red) !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.reservation-card-text-rustic {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.btn-reservation-rustic {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    border: 3px solid;
}

.btn-reservation-phone {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%) !important;
    color: #000 !important;
    border-color: #ffb300 !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-reservation-phone:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%) !important;
    border-color: #ffa000 !important;
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

.btn-reservation-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border-color: #128C7E !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-reservation-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6e5f 100%) !important;
    border-color: #0d6e5f !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Rezervasyon Formu */
.reservation-form-wrapper-rustic {
    position: relative;
    z-index: 1;
}

.reservation-form-card-rustic {
    background: var(--charcoal);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 3px solid rgba(196, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.reservation-form-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(196, 30, 58, 0.05) 10px,
        rgba(196, 30, 58, 0.05) 20px
    );
    opacity: 0.3;
}

.reservation-form-title-rustic {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reservation-form-rustic {
    position: relative;
    z-index: 1;
}

.reservation-label-rustic {
    display: block;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-input-rustic {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.reservation-input-rustic:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);
}

.reservation-input-rustic::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-reservation-submit-rustic {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    border: 3px solid var(--dark-red);
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.btn-reservation-submit-rustic:hover {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.6);
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .contact-page-rustic {
        padding: 40px 0 !important;
    }
    
    .contact-page-title-rustic {
        font-size: 2rem !important;
        margin-bottom: 25px !important;
        letter-spacing: 1px !important;
    }
    
    .contact-info-item-rustic {
        font-size: 1rem !important;
        gap: 10px;
    }
    
    .contact-info-item-rustic i {
        font-size: 1.1rem !important;
    }
    
    .contact-info-list-rustic {
        gap: 18px;
    }
    
    .contact-form-wrapper-rustic {
        padding: 25px 20px;
    }
    
    .contact-form-title-rustic {
        font-size: 1.8rem !important;
    }
    
    .contact-form-subtitle-rustic {
        font-size: 1rem;
    }
    
    .form-group-rustic {
        margin-bottom: 20px;
    }
    
    .btn-contact-submit-rustic {
        padding: 12px 40px !important;
        font-size: 1.1rem !important;
        width: 100%;
    }
    
    .location-title-rustic {
        font-size: 1.5rem;
    }
    
    .location-address-rustic {
        font-size: 1rem;
    }
    
    .location-map-wrapper-rustic {
        height: calc(100vh - 320px);
        min-height: 400px;
    }
    
    .btn-location-view-rustic {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .reservation-title-rustic {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .reservation-main-card-rustic {
        padding: 40px 25px;
        transform: rotate(0deg);
    }
    
    .reservation-icon-circle-rustic {
        width: 80px;
        height: 80px;
    }
    
    .reservation-icon-circle-rustic i {
        font-size: 2.5rem;
    }
    
    .reservation-contact-card-rustic {
        margin-bottom: 20px;
    }
    
    .reservation-form-card-rustic {
        padding: 30px 20px;
    }
    
    .reservation-form-title-rustic {
        font-size: 1.5rem;
    }
}
