/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #ffb03b;
  --secondary-color: #33b6b4;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Section Titles */
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-title h2 span {
  color: var(--primary-color);
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
}

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Gy (gap-y) utility */
.gy-4 {
  margin-top: -1rem;
}

.gy-4 > [class*="col-"] {
  padding-top: 1rem;
}

/*--------------------------------------------------------------
# Header - Responsive Updates
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(37, 32, 32, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}

#header.header-scrolled {
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.95);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#header .logo {
  margin: 0;
  z-index: 1001;
}

#header .logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-primary {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  font-family: "Satisfy", cursive;
}

.logo-secondary {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
  font-family: "Satisfy", cursive;
}

/* Navbar - Desktop */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar li {
  position: relative;
}

.navbar a.nav-link {
  display: block;
  padding: 10px 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 4px;
  position: relative;
}

.navbar a.nav-link:hover,
.navbar a.nav-link.active {
  color: var(--primary-color);
  background: rgba(255, 176, 59, 0.1);
}

.navbar a.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.navbar a.nav-link:hover::after,
.navbar a.nav-link.active::after {
  width: 80%;
}

.navbar .btn-order-now {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.navbar .btn-order-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 176, 59, 0.3);
  color: white;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-nav-toggle i {
  font-size: 28px;
  color: white;
  transition: color 0.3s ease;
}

.mobile-nav-toggle:hover i {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  #navbar ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 24, 22, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 30px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
  }

  #navbar ul.mobile-nav-active {
    right: 0;
  }

  #navbar li {
    width: 100%;
    margin-bottom: 10px;
  }

  #navbar a.nav-link {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-transform: none;
    font-weight: 500;
  }

  #navbar a.nav-link:hover,
  #navbar a.nav-link.active {
    color: var(--primary-color);
    background: transparent;
    padding-left: 10px;
  }

  #navbar a.nav-link::after {
    display: none;
  }

  .navbar .btn-order-now {
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }

  .mobile-nav-toggle {
    display: block;
    position: relative;
  }

  .mobile-nav-toggle i {
    font-size: 28px;
  }

  .mobile-nav-toggle.active i.bi-list {
    display: none;
  }

  .mobile-nav-toggle i.bi-x {
    display: none;
  }

  .mobile-nav-toggle.active i.bi-x {
    display: block;
  }

  /* Body scroll lock */
  body.mobile-nav-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  #navbar ul {
    width: 250px;
    padding: 70px 20px 30px;
  }

  .logo-primary,
  .logo-secondary {
    font-size: 20px;
  }

  #header .logo a img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  #navbar ul {
    width: 100%;
    padding: 80px 20px 40px;
  }

  #header .container {
    padding: 0 15px;
  }
}

/*--------------------------------------------------------------
# Hero Section - Responsive Updates
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-container {
  width: 100%;
  height: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fallback slide backgrounds */
.slide-1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slide/slide-1.jpg") center/cover no-repeat;
}

.slide-2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slide/slide-4.jpg") center/cover no-repeat;
}

.slide-3 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slide/slide-5.jpg") center/cover no-repeat;
}

/* Fallback if images don't load */
.slide-1,
.slide-2,
.slide-3 {
  background-color: #1a1816;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  padding: 0 20px;
  text-align: center;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-content h2 span {
  color: var(--primary-color);
  display: inline-block;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
  padding: 0 10px;
}

.btn-hero {
  display: inline-block;
  padding: 12px 35px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid var(--primary-color);
  font-size: 14px;
}

.btn-hero:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 176, 59, 0.3);
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 176, 59, 0.8);
  border-radius: 50%;
  transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: white !important;
  opacity: 0.5 !important;
  margin: 0 6px !important;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1 !important;
  transform: scale(1.2);
}

/* Responsive Hero */
@media (max-width: 768px) {
  #hero {
    height: 80vh;
    min-height: 500px;
    margin-top: 60px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn-hero {
    padding: 10px 30px;
    font-size: 13px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

@media (max-width: 576px) {
  #hero {
    height: 70vh;
    min-height: 400px;
    margin-top: 60px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .btn-hero {
    padding: 10px 25px;
    font-size: 12px;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
  }
}

/*--------------------------------------------------------------
# Features Section - Responsive Updates
--------------------------------------------------------------*/
/* Alternatif Minimal Tasarım CSS */
.features-minimal {
  padding: 60px 0;
  background: white;
}

.feature-box-minimal {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.feature-box-minimal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 176, 59, 0.5),
    transparent
  );
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 176, 59, 0.1);
}

.feature-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(255, 176, 59, 0.1),
    rgba(51, 182, 180, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-icon i {
  font-size: 22px;
  color: var(--primary-color);
}

.feature-card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.feature-card-content p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

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

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

  .feature-box-minimal {
    padding: 25px 20px;
  }

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

/*--------------------------------------------------------------
# Popular Products - Responsive Updates
--------------------------------------------------------------*/
.popular {
  padding: 80px 0;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

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

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  text-transform: uppercase;
}

.product-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-color);
  line-height: 1.3;
  min-height: 48px;
}

.product-info p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.btn-order {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--secondary-color);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-order:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(51, 182, 180, 0.3);
}

/* Responsive Products - PC için optimize edilmiş */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .product-img {
    height: 250px;
  }

  .product-info h4 {
    font-size: 22px;
  }

  .product-info p {
    font-size: 16px;
  }

  .price {
    font-size: 32px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .product-img {
    height: 230px;
  }

  .product-info h4 {
    font-size: 19px;
    min-height: 52px;
  }

  .product-info p {
    font-size: 14px;
  }

  .price {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .popular {
    padding: 70px 0;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .product-img {
    height: 200px;
  }

  .product-info {
    padding: 20px;
  }

  .product-info h4 {
    font-size: 18px;
    min-height: 50px;
  }

  .product-info p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .price {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .btn-order {
    padding: 12px;
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .popular {
    padding: 60px 0;
  }

  .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-card {
    margin-bottom: 20px;
  }

  .product-img {
    height: 220px;
  }

  .product-info h4 {
    font-size: 19px;
    min-height: auto;
  }

  .product-info p {
    min-height: 80px;
  }
}

@media (max-width: 768px) {
  .popular {
    padding: 50px 0;
  }

  .col-lg-3,
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-img {
    height: 180px;
  }

  .product-info {
    padding: 15px;
  }

  .product-info h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .product-info p {
    font-size: 13px;
    margin-bottom: 12px;
    min-height: 90px;
  }

  .price {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .btn-order {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .popular {
    padding: 40px 0;
  }

  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-card {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-img {
    height: 200px;
  }

  .product-info h4 {
    font-size: 18px;
    min-height: auto;
  }

  .product-info p {
    min-height: auto;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .product-img {
    height: 180px;
  }

  .product-info h4 {
    font-size: 16px;
  }

  .product-info p {
    font-size: 13px;
  }

  .price {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# CTA Section - Responsive Updates
--------------------------------------------------------------*/
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1816 0%, #2a2826 100%);
  color: #ffffff;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  min-width: 200px;
}

.btn-cta.primary {
  background: #ffb03b;
  color: #ffffff;
}

.btn-cta.primary:hover {
  background: #e89e30;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 176, 59, 0.3);
}

.btn-cta.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .cta-buttons {
    gap: 15px;
  }

  .btn-cta {
    min-width: 180px;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .cta-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-cta {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
  }
}

/*--------------------------------------------------------------
# Footer - Responsive Updates
--------------------------------------------------------------*/
.footer {
  background: #1a1816;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

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

.footer-logo {
  font-family: "Satisfy", cursive;
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.logo-primary {
  color: #ffb03b;
  font-weight: 700;
}

.logo-secondary {
  color: #33b6b4;
  font-weight: bolder;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 14px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-size: 14px;
}

.social-link:hover {
  color: #ffb03b;
  transform: translateX(5px);
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffb03b;
}

.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.location h4 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.location p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.5;
}

.location .phone {
  color: #ffb03b;
  font-weight: 500;
}

.working-hours {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hours {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  flex-direction: column;
  gap: 5px;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #33b6b4;
  font-weight: 500;
  font-size: 14px;
}

.payment-methods {
  display: flex;
  gap: 15px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 0;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffb03b;
  padding-left: 10px;
}

.footer-links a:before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover:before {
  left: 0;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.developer a {
  color: #ffb03b;
  font-weight: 500;
  text-decoration: none;
}

.developer a:hover {
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer {
    padding: 50px 0 25px;
  }

  .footer-grid {
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-logo {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

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

  .footer-logo {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }

  .footer-title:after {
    width: 30px;
  }

  .location h4 {
    font-size: 1rem;
  }

  .location p {
    font-size: 0.9rem;
  }

  .payment-methods {
    font-size: 1.3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .social-links {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
  }

  .social-link {
    flex: 0 0 calc(50% - 8px);
  }

  .payment-methods {
    gap: 12px;
    font-size: 1.2rem;
  }

  .copyright,
  .developer {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Phone Modal - Responsive Updates
--------------------------------------------------------------*/
.phone-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.phone-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin: 20px;
}

.modal-header {
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  margin: 0;
  color: #1a1816;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #433f39;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
  background: #ffb03b;
  color: #ffffff;
}

.modal-body {
  padding: 30px;
}

.modal-description {
  color: #948c81;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

.phone-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.phone-option {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.phone-option:hover {
  border-color: #ffb03b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.option-icon {
  width: 50px;
  height: 50px;
  background: #ffb03b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.option-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.option-details {
  flex: 1;
  min-width: 0;
}

.option-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1a1816;
  font-weight: 600;
  line-height: 1.3;
}

.option-phone {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffb03b;
  margin-bottom: 5px;
  line-height: 1.3;
}

.option-address {
  font-size: 0.9rem;
  color: #948c81;
  margin: 0;
  line-height: 1.4;
}

.option-action {
  width: 40px;
  height: 40px;
  background: #33b6b4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-option:hover .option-action {
  background: #2a9a98;
}

.option-action i {
  color: #ffffff;
  font-size: 1rem;
}

/* Animation for phone call */
@keyframes ring {
  0%,
  100% {
    transform: rotate(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

.phone-option.calling .option-action {
  animation: ring 0.5s ease infinite;
  background: #ffb03b;
}

/* Branch indicator */
.phone-option::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-option[data-branch="Yüksekova"]::after {
  background: #ffb03b;
}

.phone-option[data-branch="Van Bahçıvan"]::after {
  background: #33b6b4;
}

.phone-option[data-branch="Van İki Nisan"]::after {
  background: #ff6b6b;
}

/* Modal animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 10px;
    border-radius: 16px;
  }

  .modal-header {
    padding: 20px 25px 15px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 25px;
  }

  .modal-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .phone-option {
    padding: 15px;
  }

  .option-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }

  .option-icon i {
    font-size: 1.1rem;
  }

  .option-title {
    font-size: 1rem;
  }

  .option-phone {
    font-size: 1.1rem;
  }

  .option-address {
    font-size: 0.85rem;
  }

  .option-action {
    width: 36px;
    height: 36px;
  }

  .option-action i {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .modal-header {
    padding: 18px 20px 12px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 20px;
  }

  .phone-options {
    gap: 12px;
  }

  .phone-option {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .option-icon {
    margin-right: 0;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
  }

  .option-details {
    margin-bottom: 10px;
  }

  .option-title {
    font-size: 1.1rem;
  }

  .option-phone {
    font-size: 1.2rem;
  }

  .option-address {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .modal-content {
    width: 98%;
    margin: 5px;
    border-radius: 12px;
  }

  .modal-header {
    padding: 15px 20px 10px;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 15px;
  }

  .phone-option {
    padding: 12px;
  }
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 176, 59, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
  color: white;
}

.back-to-top i {
  font-size: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }

  .back-to-top i {
    font-size: 18px;
  }
}
