:root {
  --bg: #f8f5f0;
  --surface: #f0e8dc;
  --muted: #8b7355;
  --text: #2c1810;
  --brand: #d4a574;
  --brand-600: #b8935f;
  --brand-700: #9c7a4a;
  --card: #ffffff;
  --stroke: #e8dcc6;
  --accent: #f4e4d1;
  --shadow: rgba(139, 90, 43, 0.1);
  --shadow-hover: rgba(139, 90, 43, 0.2);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Safari ve Mac için scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  -webkit-appearance: none;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 90, 43, 0.3);
  border-radius: 4px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 90, 43, 0.5);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Safari için ek optimizasyonlar */
@supports (-webkit-backdrop-filter: blur(10px)) {
  .site-header {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

/* Base animation setup */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes - Safari uyumlu */
.animate-fade-in {
  -webkit-animation: fadeIn 0.8s ease-out;
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
  -webkit-animation: fadeInUp 0.8s ease-out;
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
  -webkit-animation: slideInLeft 0.8s ease-out;
  animation: slideInLeft 0.8s ease-out;
}

.animate-delay-1 { 
  -webkit-animation-delay: 0.1s; 
  animation-delay: 0.1s; 
}
.animate-delay-2 { 
  -webkit-animation-delay: 0.2s; 
  animation-delay: 0.2s; 
}
.animate-delay-3 { 
  -webkit-animation-delay: 0.3s; 
  animation-delay: 0.3s; 
}
.animate-delay-4 { 
  -webkit-animation-delay: 0.4s; 
  animation-delay: 0.4s; 
}

/* Loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Loader placeholder */
.loader-placeholder {
  background: var(--surface);
  border-radius: 14px;
  height: 200px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Video Section - Carousel */
.video-section {
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(139,90,43,.03), transparent);
  border-bottom: 1px solid var(--stroke);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--text);
  font-family: 'Cinzel', serif;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: visible; /* Yanlardaki slide'ları göstermek için */
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0%);
  justify-content: center;
  align-items: center;
}

.carousel-slide {
  width: 60%; /* Ana slide genişliği */
  height: 100%;
  position: absolute;
  flex-shrink: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: scale(0.75) translateX(0%);
  transform: scale(0.75) translateX(0%);
  opacity: 0.5;
  z-index: 1;
  left: 50%;
  margin-left: -30%; /* width'in yarısı */
  cursor: pointer; /* Tıklanabilir olduğunu göster */

}

.carousel-slide.active {
  transform: scale(1) translateX(0%);
  opacity: 1;
  z-index: 3;
  cursor: default; /* Aktif slide tıklanmaz */
}

.carousel-slide.prev {
  transform: scale(0.75) translateX(-80%);
  z-index: 2;
  opacity: 0.7;
}

.carousel-slide.next {
  transform: scale(0.75) translateX(80%);
  z-index: 2;
  opacity: 0.7;
}

.media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--accent) 100%);
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-wrapper.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0.6;
  z-index: 10;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Videonun üst kısmını göster */
  transition: transform 0.3s ease;
  border-radius: 12px;
  opacity: 1; /* Başlangıçta görünür yap */
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
  opacity: 1; /* Başlangıçta görünür yap */
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139,90,43,0.1), rgba(139,90,43,0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.carousel-slide:hover .media-overlay {
  opacity: 1;
}

.carousel-slide:hover .carousel-video,
.carousel-slide:hover .carousel-image {
  transform: scale(1.05);
}

.media-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 15px 15px 45px 15px;
  text-align: center;
  z-index: 5;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.media-info h4 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.media-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(15px);
  border: 1px solid var(--stroke);
  color: var(--brand);
  box-shadow: 0 4px 15px var(--shadow);
}



.carousel-btn-prev {
  left: -60px;
}

.carousel-btn-next {
  right: -60px;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active {
  background: white;
  box-shadow: 0 2px 10px rgba(139, 90, 43, 0.5);
}

/* Responsive carousel */
@media (max-width: 768px) {
  .video-section {
    padding: 30px 0;
  }
  
  .carousel-container {
    margin: 0 16px;
    border-radius: 16px;
  }
  
  .carousel-wrapper {
    overflow: hidden; /* Mobilde yanlardaki slide'ları gizle */
  }
  
  .carousel-slide {
    width: 85%; /* Mobilde daha geniş */
    margin-left: -42.5%; /* width'in yarısı */
  }
  
  .carousel-slide.prev,
  .carousel-slide.next {
    transform: scale(0.8) translateX(-120%); /* Mobilde daha az görünür */
    opacity: 0.4;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn-prev {
    left: 10px;
  }
  
  .carousel-btn-next {
    right: 10px;
  }
  
  .media-info {
    padding: 12px 12px 35px 12px;
  }
  
  .media-info h4 {
    font-size: 1rem;
  }
  
  .media-info p {
    font-size: 0.8rem;
  }
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; border-radius: 8px; }
a { color: var(--text); text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.center { text-align: center; }

.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: rgba(248, 245, 240, 0.95); 
  backdrop-filter: blur(12px); 
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 2px 20px var(--shadow);
  transition: all 0.3s ease;
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: .8rem 0; 
  flex-wrap: wrap;
  gap: .5rem;
}
.brand { 
  font-family: 'Cinzel', serif; 
  font-weight: 700; 
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  display: flex; 
  gap: .6rem; 
  align-items: center;
  transition: all 0.3s ease;
}

/* Header brand logo sizing and spacing */
.brand-logo {
  height: 42px;
  width: auto;
  margin-right: .2rem;
  border-radius: 6px;
}



.brand-text {
  background: linear-gradient(45deg, var(--brand), var(--brand-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand:hover {
  transform: scale(1.05);
}



.nav { display: flex; gap: 1rem; }
.nav a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .75rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  opacity: .9;
  transition: all .25s ease;
}
.nav a:hover {
  background: var(--accent);
  border-color: var(--brand);
  opacity: 1;
  box-shadow: 0 4px 14px var(--shadow);
}
.nav a.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand-600);
  opacity: 1;
  box-shadow: 0 4px 14px var(--shadow-hover);
}
.nav .cta { background: var(--brand); color: #f5f0e8; padding: .6rem .9rem; border-radius: 999px; font-weight: 700; }
.nav .cta:hover { background: var(--brand-600); }

.hero { 
  padding: 50px 0 40px; 
  background: linear-gradient(180deg, transparent, rgba(212,165,116,0.03)); 
  border-bottom: 1px solid var(--stroke);
}
.hero-inner h1 { font-size: clamp(28px, 5vw, 44px); margin: 0 0 .4rem; }
.hero .actions { display: flex; gap: .8rem; margin-top: 1rem; }

.btn { 
  display: inline-block; 
  border: 1px solid var(--brand); 
  background: linear-gradient(135deg, var(--brand), var(--brand-600)); 
  color: white; 
  padding: .8rem 1.5rem; 
  border-radius: 12px; 
  font-weight: 600;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 44px; /* Touch-friendly minimum */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}


.btn.small { padding: .5rem .8rem; font-weight: 600; font-size: .9rem; }
.btn.outline { background: transparent; color: var(--text); border-color: var(--brand); }

.features .cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin: 28px 0; }
.card { 
  background: var(--card); 
  border: 1px solid var(--stroke); 
  padding: 20px; 
  border-radius: 16px;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mac için optimize edilmiş hover efektleri */
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-hover);
    border-color: var(--brand);
  }

  .card:hover::before {
    opacity: 1;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--shadow-hover);
    border-color: var(--brand);
  }
  

  
  .btn:hover { 
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700)); 
    border-color: var(--brand-600);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-hover);
  }

  .btn:hover::before {
    left: 100%;
  }
  
  .carousel-btn:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-hover);
  }
}

/* Touch cihazlar için basitleştirilmiş efektler */
@media (hover: none) {
  .card:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow-hover);
  }
  
  .product-card:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-hover);
  }
  
  .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--shadow-hover);
  }
}


.card h3 { margin: .2rem 0 .4rem; }

h2 { margin-top: 36px; }

.product-grid {
  margin: 16px 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}
.product-card { 
  background: var(--card); 
  border: 1px solid var(--stroke); 
  border-radius: 16px; 
  padding: 16px; 
  display: flex; 
  flex-direction: column; 
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}


.product-card img { 
  border-radius: 14px; 
  aspect-ratio: 4/3; 
  object-fit: cover; 
  background: #ede3d5;
  transition: transform 0.3s ease;
}



.product-info {
  margin: 8px 0;
  padding: 8px;
  background: var(--accent);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
}

.product-info small {
  font-size: 0.85rem;
  line-height: 1.4;
  font-style: italic;
}

.price { font-weight: 800; }
.muted { color: var(--muted); }

.toolbar { display: flex; gap: 8px; margin: 8px 0 16px; }
.toolbar input, .toolbar select, .form input, .form select, .form textarea {
  width: 100%; 
  background: var(--surface); 
  color: var(--text);
  border: 1px solid var(--stroke); 
  border-radius: 10px; 
  padding: .7rem .8rem;
  min-height: 44px; /* Touch-friendly */
  font-size: 16px; /* Prevents zoom on iOS */
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.toolbar input:focus, .form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Mac Safari için özel düzenlemeler */
@supports (-webkit-backdrop-filter: blur(10px)) {
  .site-header {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  
  .carousel-btn {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }
}
/* (Google Form kullanılıyor) Yerel form stilleri kaldırıldı */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
/* Responsive Design - Tüm telefon boyutları için */

/* Küçük telefonlar (320px - 480px) */
@media (max-width: 480px) {
  .container { width: 95%; }
  
  .brand { 
    font-size: 1.2rem; 
    gap: .4rem;
  }
  .brand-logo { height: 30px; }
  
  .header-inner { 
    padding: .6rem 0; 
    flex-wrap: wrap;
  }
  
  .hero { 
    padding: 40px 0 30px; 
  }
  
  .hero-inner h1 { 
    font-size: 1.8rem; 
    line-height: 1.3;
  }
  
  .actions { 
    flex-direction: column; 
    gap: .6rem; 
    width: 100%;
  }
  
  .btn { 
    padding: .7rem 1.2rem; 
    font-size: .9rem;
    width: 100%;
    text-align: center;
  }
  
  .features .cards { 
    grid-template-columns: 1fr; 
    gap: 12px; 
  }
  
  .card { 
    padding: 16px; 
  }
  
  .product-grid { 
    grid-template-columns: 1fr; 
    gap: 12px; 
  }
  
  .product-card { 
    padding: 14px; 
  }
  
  .product-info { 
    padding: 6px; 
    margin: 6px 0;
  }
  
  .product-info small { 
    font-size: 0.8rem; 
  }
  
  .toolbar { 
    flex-direction: column; 
    gap: 8px; 
  }
  
  .toolbar input, .toolbar select { 
    font-size: .9rem; 
  }
  
  .site-footer .grid-3 { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
}

/* Orta boyut telefonlar (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
  .container { width: 94%; }
  
  .brand { font-size: 1.3rem; }
  .brand-logo { height: 36px; }
  
  .hero { padding: 40px 0 30px; }
  
  .hero-inner h1 { font-size: 2.2rem; }
  
  .actions { gap: .7rem; }
  
  .btn { padding: .75rem 1.3rem; }
  
  .features .cards { 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 14px; 
  }
  
  .product-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 14px; 
  }
  
  .site-footer .grid-3 { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; 
  }
}

/* Genel tablet ve büyük telefon düzenlemeleri */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  
  .nav { 
    flex-direction: column; 
    gap: .5rem; 
    width: 100%;
  }
  .nav a { padding: .55rem .75rem; border-radius: 10px; justify-content: center; }
  
  .nav .cta { 
    padding: .5rem .8rem; 
    font-size: .9rem;
    text-align: center;
  }
  
  h2 { 
    font-size: 1.5rem; 
    margin-top: 28px; 
  }
  
  .form { gap: 8px; }
  
  .form input, .form select, .form textarea { 
    padding: .7rem; 
    font-size: .9rem;
  }
}

/* Safari ve Mac için özel optimizasyonlar */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .brand {
    -webkit-font-smoothing: antialiased;
    font-weight: 600; /* Retina ekranlarda daha ince görünür */
  }
  
  .btn {
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
  }
  
  .card {
    border-width: 0.5px; /* Retina için ince border */
  }
  
  .product-card {
    border-width: 0.5px;
  }
}

/* MacBook Air/Pro için özel düzenlemeler */
@media (min-width: 1024px) and (max-width: 1440px) {
  .container {
    width: min(1200px, 90%);
  }
  
  .hero {
    padding: 70px 0 60px;
  }
  
  .hero-inner h1 {
    font-size: 3rem;
  }
  
  .features .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
  }
}

/* iMac/Studio Display için büyük ekran düzenlemeleri */
@media (min-width: 1441px) {
  .container {
    width: min(1400px, 88%);
  }
  
  .hero {
    padding: 80px 0 70px;
  }
  
  .hero-inner h1 {
    font-size: 3.5rem;
  }
  
  .features .cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
  
  .card {
    padding: 24px;
  }
  
  .product-card {
    padding: 20px;
  }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 360px) {
  .container { width: 96%; }
  
  .brand { 
    font-size: 1.1rem; 
    letter-spacing: 0.02em;
  }
  
  .hero-inner h1 { 
    font-size: 1.6rem; 
  }
  
  .card { 
    padding: 12px; 
  }
  
  .product-card { 
    padding: 12px; 
  }
  
  .btn { 
    padding: .6rem 1rem; 
    font-size: .85rem;
  }
  
  .carousel-btn { 
    width: 35px; 
    height: 35px; 
  }
  
  .media-info { 
    padding: 10px 10px 30px 10px; 
  }
  
  .media-info h4 { 
    font-size: .9rem; 
  }
  
  .media-info p { 
    font-size: 0.75rem; 
  }
}

.site-footer { border-top: 1px solid var(--stroke); margin-top: 40px; padding: 24px 0; background: rgba(237,227,213,.4); }
.site-footer h5 { margin: .2rem 0 .4rem; }
.list { margin: 0; padding: 0; list-style: none; display: grid; gap: .3rem; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 10px; }
.gallery img { border-radius: 12px; }

/* Map container styles */
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
  transition: box-shadow 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 6px 20px var(--shadow-hover);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Responsive map adjustments */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 250px;
  }
}