/* Tema 3 - Chi'es Rustic Fast Food Tasarımı */

:root {
  /* Canlı ve Neşeli Renk Paleti - Fast Food Teması */
  --primary-red: #ff4444;
  --dark-red: #cc0000;
  --primary-orange: #ff6b35;
  --accent-yellow: #ffd700;
  --accent-lime: #32cd32;

  --dark-gray: #2c2c2c;
  --charcoal: #1a1a1a;
  --wood-brown: #8b6f47;
  --burlap-beige: #d4c4a8;
  --text-white: #ffffff;
  --text-gray: #cccccc;

  /* Background Colors */
  --bg-dark: #1a1a1a;
  --bg-dark-secondary: #2c2c2c;
  --bg-light: #f5f5f5;
  --bg-light-secondary: #ffffff;

  /* Text Colors */
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-gray-dark: #666666;
}

* {
  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 (Güzelleştirilmiş) */
.hero-rustic {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-rustic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-rustic-bg::before {
  display: none;
}

.hero-rustic-bg::after {
  display: none;
}

.hero-rustic-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.rustic-circle-logo {
  width: 140px;
  height: 140px;
  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 35px;
  border: 6px solid rgba(212, 196, 168, 0.5);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.6),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
  position: relative;
  animation: logoPulse 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.rustic-circle-logo:hover {
  transform: scale(1.1) rotate(360deg);
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.6),
      inset 0 2px 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.8),
      inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
}

.rustic-circle-logo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(212, 196, 168, 0.4);
  animation: logoRotate 4s linear infinite;
}

@keyframes logoRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-letter {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: 2;
  position: relative;
}

.hero-title-rustic {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 196, 168, 0.3);
  animation: titleFadeIn 1s ease-out;
  line-height: 1.1;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-rustic {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: subtitleFadeIn 1.2s ease-out;
  position: relative;
}

.hero-subtitle-rustic::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-red),
    transparent
  );
  animation: expandLine 1s ease-out 1.5s backwards;
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline-rustic {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  animation: taglineFadeIn 1.4s ease-out;
  position: relative;
  padding-top: 20px;
}

.hero-tagline-rustic::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-red);
  font-size: 1.2rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

@keyframes taglineFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hero-title-rustic {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }

  .hero-subtitle-rustic {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-tagline-rustic {
    font-size: 1.1rem;
  }

  .rustic-circle-logo {
    width: 100px;
    height: 100px;
  }

  .logo-letter {
    font-size: 3rem;
  }

  .hero-rustic-bg {
    background-attachment: scroll;
  }
}

/* Products Section - Rustic */
.products-rustic-section {
  background: var(--charcoal);
  padding: 0;
}

.products-rustic-header {
  background: var(--charcoal);
  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(255, 68, 68, 0.5);
}

.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(255, 68, 68, 0.5);
}

.carousel-nav-btn:hover {
  background: var(--dark-red);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 68, 68, 0.7);
}

/* 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(255, 68, 68, 0.5);
  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);
}

/* Restoran Özellikleri Section - Rustic Style (Yatay Düzen) */
.features-rustic-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--dark-gray) 50%,
    var(--charcoal) 100%
  );
}

.features-rustic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(139, 111, 71, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 68, 68, 0.15) 0%,
      transparent 50%
    );
  z-index: 1;
}

.features-rustic-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(139, 111, 71, 0.03) 2px,
    rgba(139, 111, 71, 0.03) 4px
  );
  opacity: 0.5;
}

.features-icon-rustic {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5);
  position: relative;
  animation: pulse-rustic 2s ease-in-out infinite;
}

.features-icon-rustic::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(212, 196, 168, 0.3);
  animation: rotate-rustic 3s linear infinite;
}

.features-icon-rustic i {
  font-size: 2rem;
  color: var(--text-white);
  z-index: 2;
  position: relative;
}

@keyframes pulse-rustic {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes rotate-rustic {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.features-list-rustic {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item-rustic-simple {
  margin-bottom: 80px;
  position: relative;
}

.feature-item-rustic-simple:last-child {
  margin-bottom: 0;
}

.feature-image-simple-rustic {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.feature-img-simple-rustic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.85);
}

.feature-item-rustic-simple:hover .feature-img-simple-rustic {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.feature-content-simple-rustic {
  padding: 20px 0 20px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title-simple-rustic {
  color: var(--burlap-beige);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.feature-item-rustic-simple:hover .feature-title-simple-rustic {
  color: var(--primary-red);
}

.feature-desc-simple-rustic {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-item-rustic-simple:hover .feature-desc-simple-rustic {
  color: var(--burlap-beige);
}

/* Responsive */
@media (max-width: 991.98px) {
  .features-rustic-section {
    padding: 60px 0;
  }

  .feature-item-rustic-simple {
    margin-bottom: 50px;
  }

  .feature-image-simple-rustic {
    height: 250px;
    margin-bottom: 30px;
  }

  .feature-content-simple-rustic {
    padding: 0;
    text-align: center;
  }

  .feature-title-simple-rustic {
    font-size: 1.6rem;
  }

  .feature-desc-simple-rustic {
    font-size: 1rem;
  }
}

/* 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(255, 68, 68, 0.4);
}

.gallery-item-rustic img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item-info {
  padding: 15px;
  background: #fff;
  border-top: 2px solid var(--primary-red);
}

.gallery-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.gallery-item-description {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
  line-height: 1.5;
}

/* 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-rustic {
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }

  .hero-rustic-bg {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    height: 100%;
    width: 100%;
  }

  .hero-rustic-content {
    min-height: 100vh;
    max-height: 100vh;
    padding: 40px 0;
    overflow: hidden;
  }

  .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;
    margin-bottom: 10px;
  }

  .section-subtitle-rustic {
    margin-bottom: 0;
  }

  .products-rustic-header {
    padding: 50px 0 20px;
    overflow: visible;
  }

  .products-rustic-header::before {
    display: none;
  }

  .products-rustic-header::after {
    display: none;
  }

  .menu-icon-rustic {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    margin-top: 0;
    position: relative;
    z-index: 2;
  }

  .menu-icon-rustic i {
    font-size: 2rem;
  }

  .products-rustic-content {
    padding-top: 10px;
  }

  /* Mobil Carousel - Touch Swipe */
  .products-carousel-wrapper {
    position: relative;
    padding: 0;
    overflow: hidden;
    margin: 0;
    padding-bottom: 20px;
  }

  .products-carousel-wrapper::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    width: auto;
    height: 4px;
    background: rgba(204, 204, 204, 0.6);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .products-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .products-carousel::-webkit-scrollbar {
    display: none;
  }

  .products-carousel-track {
    display: flex;
    gap: 6px;
    padding: 0 10px;
    width: max-content;
  }

  .product-item-rustic {
    min-width: calc((100vw - 32px - 6px) / 2);
    max-width: calc((100vw - 32px - 6px) / 2);
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    aspect-ratio: 5 / 6;
    display: flex;
    flex-direction: column;
  }

  /* Mobilde yön butonlarını gizle */
  .carousel-nav-btn {
    display: none !important;
  }

  .product-image-rustic {
    flex: 1;
    overflow: hidden;
    min-height: 0;
    max-height: 65%;
  }

  .product-image-rustic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-name-rustic {
    font-size: 0.8rem;
    padding: 8px 6px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    background: #000;
    margin: 0;
    flex-shrink: 0;
  }

  .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(255, 68, 68, 0.5);
}

/* 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(255, 68, 68, 0.2) 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(255, 68, 68, 0.6);
}

.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(255, 68, 68, 0.4);
  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(255, 68, 68, 0.08) 10px,
    rgba(255, 68, 68, 0.08) 20px
  );
  opacity: 0.3;
}

.reservation-contact-card-rustic:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 35px rgba(255, 68, 68, 0.6);
  border-color: rgba(255, 68, 68, 0.7);
}

.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(255, 68, 68, 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(255, 68, 68, 0.4);
  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(255, 68, 68, 0.08) 10px,
    rgba(255, 68, 68, 0.08) 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(255, 68, 68, 0.4);
  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(255, 68, 68, 0.3);
}

.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(255, 68, 68, 0.5);
}

.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(255, 68, 68, 0.7);
}

/* 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;
  }
}
