:root {
  /* Ana Renk Paleti - Profesyonel Mavi Tonları */
  --primary: #2563eb;        /* Ana mavi */
  --primary-dark: #1d4ed8;   /* Koyu mavi */
  --primary-light: #3b82f6;  /* Açık mavi */
  --secondary: #64748b;      /* Gri-mavi */
  --accent: #0ea5e9;         /* Vurgu mavisi */
  
  /* Nötr Renkler */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Arka Plan Renkleri */
  --bg: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-tertiary: var(--gray-100);
  --surface: rgba(255,255,255,0.95);
  
  /* Metin Renkleri */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  --text-white: var(--white);
  --text-dim: rgba(255,255,255,0.85);
  
  /* Header ve Navigasyon */
  --header-bg: rgba(248, 250, 252, 0.3);
  --nav-bg: rgba(248, 250, 252, 0.4);
  
  /* Kenarlık Renkleri */
  --border-light: var(--gray-200);
  --border-medium: var(--gray-300);
  --border-dark: var(--gray-400);
  --border-white: rgba(255,255,255,0.15);
  
  /* Gölge Renkleri */
  --shadow-sm: rgba(15, 23, 42, 0.05);
  --shadow-md: rgba(15, 23, 42, 0.1);
  --shadow-lg: rgba(15, 23, 42, 0.15);
  --shadow-xl: rgba(15, 23, 42, 0.25);
  
  /* Durum Renkleri */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: var(--primary);
  
  /* Focus ve Hover */
  --focus: rgba(37, 99, 235, 0.1);
  --hover-bg: var(--gray-50);
  
  /* Container */
  --container-width: 1200px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Open Sans', 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg);
  line-height: 1.6;
}
/* Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

header.site-header.scrolled {
  background: rgba(248, 250, 252, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 28px;
  line-height: 1;
  color: var(--gray-900);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.brand:hover::before {
  opacity: 1;
}

.brand:hover {
  transform: translateY(-1px);
  color: var(--gray-900);
}

.brand-logo {
  width: 40px;
  height: 40px;
  filter: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.brand:hover .brand-logo {
  transform: scale(1.05) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

.brand-text {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.brand:hover .brand-text {
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}
nav.primary-nav { display: contents; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--gray-900);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:active {
  transform: translateY(0);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--gray-900);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.nav-toggle:hover::before {
  opacity: 1;
}

.nav-toggle:hover {
  transform: scale(1.05);
}

.nav-toggle:focus { 
  outline: 2px solid var(--focus); 
  outline-offset: 2px; 
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.nav-toggle .bar::before { 
  top: -7px; 
  transform-origin: center;
}

.nav-toggle .bar::after { 
  top: 7px; 
  transform-origin: center;
}

.nav-open .nav-toggle .bar { 
  background: transparent; 
}

.nav-open .nav-toggle .bar::before { 
  transform: translateY(7px) rotate(45deg); 
}

.nav-open .nav-toggle .bar::after { 
  transform: translateY(-7px) rotate(-45deg); 
}

/* Responsive */
@media (max-width: 900px) {
  .nav-list { gap: 28px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  nav.primary-nav { display: block; }
  .nav-list {
    position: fixed;
    right: 16px;
    left: 16px;
    top: var(--header-height, 64px);
    background: var(--header-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    gap: 8px;
    display: none;
    flex-direction: column;
    backdrop-filter: saturate(140%) blur(20px);
    -webkit-backdrop-filter: saturate(140%) blur(20px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-open .nav-list { 
    display: flex; 
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-link {
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .brand {
    font-size: 24px;
  }
  
  .brand-logo {
    width: 36px;
    height: 36px;
  }
}

/* Optional hero to visualize spacing behind the header */
.hero {
  min-height: 56vh;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url('../images/background-istanbul.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height, 64px) + 24px) 16px 48px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  padding: clamp(16px, 2vw, 24px) clamp(16px, 2.5vw, 28px);
  width: 100%;
  max-width: clamp(280px, 55vw, 380px);
  margin: 0 16px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-radius: 24px;
  z-index: -1;
}
.hero-logo {
  width: clamp(60px, 8vw, 80px);
  height: auto;
  display: block;
  margin: 0 auto 16px auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.hero-title {
  margin: 0 0 12px 0;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.hero-subtitle {
  margin: 0 0 24px 0;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.8;
  letter-spacing: 0.3px;
}
.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.btn-primary::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;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.btn-primary:active { transform: translateY(-1px); }

@media (max-width: 768px) {
  .hero { min-height: 46vh; padding: calc(var(--header-height, 64px) + 16px) 16px 36px; }
  .hero-logo { margin-bottom: 8px; }
  .btn { width: 100%; }
}

/* Property Listing Section */
.property-listing {
  padding: 80px 16px;
  background: var(--bg);
  min-height: auto;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 60px 0;
  letter-spacing: -1px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.property-card {
  background: var(--bg);
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-lg);
  border-color: var(--border-medium);
}

.property-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.property-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--bg);
}

.property-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.property-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px 0;
  font-weight: 400;
  flex-grow: 1;
}

.property-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: var(--hover-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--shadow-sm);
}

.feature-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.feature-item span:last-child {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
}

.btn-reservation {
  background: var(--primary);
  color: var(--text-white);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--shadow-md);
  align-self: stretch;
  margin-top: auto;
}

.btn-reservation:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-lg);
  background: var(--primary-dark);
}

.btn-reservation:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .property-listing {
    padding: 30px 16px 40px;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .property-image {
    height: 180px;
  }
  
  .property-content {
    padding: 20px;
  }
  
  .property-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .property-description {
    font-size: 13px;
    margin-bottom: 18px;
  }
  
  .property-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }
  
  .feature-item {
    padding: 8px 12px;
  }
  
  .btn-reservation {
    padding: 12px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .property-listing {
    padding: 20px 12px 30px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .property-content {
    padding: 16px;
  }
  
  .property-title {
    font-size: 16px;
  }
  
  .property-description {
    font-size: 12px;
  }
  
  .feature-item span:last-child {
    font-size: 11px;
  }
}

/* Information Section */
.info-section {
  padding: 80px 16px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  z-index: 0;
}

.info-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.info-text {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.info-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 30px 0;
  letter-spacing: -1px;
  line-height: 1.2;
}

.info-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
  font-weight: 400;
}

.info-description:last-of-type {
  margin-bottom: 0;
}

.email-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.info-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.highlight-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow-lg);
  border-color: var(--border-medium);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.highlight-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.highlight-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.cta-description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--hover-bg);
  border-color: var(--border-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--shadow-sm);
}

/* Responsive Design for Info Section */
@media (max-width: 1024px) {
  .info-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .info-title {
    font-size: 36px;
  }
  
  .cta-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 60px 16px;
  }
  
  .info-text {
    margin-bottom: 50px;
  }
  
  .info-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  
  .info-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .info-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .highlight-card {
    padding: 28px 20px;
  }
  
  .highlight-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .highlight-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .highlight-card p {
    font-size: 14px;
  }
  
  .cta-section {
    margin-top: 30px;
  }
  
  .cta-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .cta-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .info-section {
    padding: 40px 12px;
  }
  
  .info-title {
    font-size: 28px;
  }
  
  .info-description {
    font-size: 15px;
  }
  
  .highlight-card {
    padding: 24px 16px;
  }
  
  .highlight-icon {
    font-size: 36px;
  }
  
  .highlight-card h3 {
    font-size: 18px;
  }
  
  .highlight-card p {
    font-size: 13px;
  }
  
  .cta-section {
    margin-top: 24px;
  }
  
  .cta-title {
    font-size: 20px;
  }
  
  .cta-description {
    font-size: 14px;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 80px 16px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.gallery-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 50px 0;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--shadow-sm);
  border: 1px solid var(--border-light);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-lg);
  border-color: var(--border-medium);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-section {
    padding: 60px 16px;
  }
  
  .gallery-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 500px;
  }
  
  .gallery-section {
    padding: 50px 16px;
  }
  
  .gallery-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .gallery-item {
    aspect-ratio: 16/10;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 12px;
  }
  
  .gallery-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .gallery-icon {
    width: 50px;
    height: 50px;
  }
  
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }
}

/* Location Map Section */
.location-section {
  padding: 80px 16px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.location-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 60px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-md);
  background: var(--bg);
  border: 1px solid var(--border-light);
}

.location-map {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.location-pin {
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
}

.pin-icon {
  font-size: 20px;
}

.pin-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.location-info {
  display: grid;
  gap: 24px;
}

.address-card,
.directions-card,
.transport-card,
.landmarks-card {
  background: var(--bg);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.address-card h3,
.directions-card h3,
.transport-card h3,
.landmarks-card h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

.directions-list,
.transport-list,
.landmarks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.directions-list li,
.transport-list li,
.landmarks-list li {
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  line-height: 1.5;
}

.directions-list li:last-child,
.transport-list li:last-child,
.landmarks-list li:last-child {
  border-bottom: none;
}

.directions-list strong,
.transport-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.location-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px;
  border-radius: 20px;
  color: var(--text-white);
}

.location-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.location-cta p {
  font-size: 16px;
  margin: 0 0 24px 0;
  opacity: 0.9;
}

/* Reservation Form Section */
.reservation-section {
  padding: 80px 16px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.reservation-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 50px 0;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.reservation-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 30px 0;
  letter-spacing: -0.3px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-md);
  border-color: var(--border-medium);
}

.info-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
}

.info-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.reservation-form-container {
  background: var(--bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--bg);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--focus);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.btn-submit {
  background: var(--primary);
  color: var(--text-white);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--shadow-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-lg);
  background: var(--primary-dark);
}

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

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(2px);
}

/* Responsive Design for Location Section */
@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .location-map {
    height: 350px;
  }
  
  .location-info {
    gap: 20px;
  }
  
  .address-card,
  .directions-card,
  .transport-card,
  .landmarks-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 60px 16px;
  }
  
  .location-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .location-map {
    height: 300px;
  }
  
  .location-info {
    gap: 16px;
  }
  
  .address-card,
  .directions-card,
  .transport-card,
  .landmarks-card {
    padding: 18px;
  }
  
  .address-card h3,
  .directions-card h3,
  .transport-card h3,
  .landmarks-card h3 {
    font-size: 18px;
  }
  
  .location-cta {
    padding: 30px 20px;
  }
  
  .location-cta h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 40px 12px;
  }
  
  .location-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .location-map {
    height: 250px;
  }
  
  .location-info {
    gap: 14px;
  }
  
  .address-card,
  .directions-card,
  .transport-card,
  .landmarks-card {
    padding: 16px;
  }
  
  .address-card h3,
  .directions-card h3,
  .transport-card h3,
  .landmarks-card h3 {
    font-size: 16px;
  }
  
  .address-text {
    font-size: 14px;
  }
  
  .directions-list li,
  .transport-list li,
  .landmarks-list li {
    font-size: 14px;
  }
  
  .location-cta {
    padding: 24px 16px;
  }
  
  .location-cta h3 {
    font-size: 18px;
  }
  
  .location-cta p {
    font-size: 14px;
  }
}

/* Responsive Design for Reservation Form */
@media (max-width: 1024px) {
  .reservation-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reservation-section {
    padding: 60px 16px;
  }
  
  .reservation-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .reservation-form-container {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .reservation-section {
    padding: 50px 16px;
  }
  
  .reservation-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .reservation-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .info-item {
    padding: 16px;
    gap: 12px;
  }
  
  .info-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .info-text h4 {
    font-size: 16px;
  }
  
  .info-text p {
    font-size: 13px;
  }
  
  .reservation-form-container {
    padding: 24px;
  }
  
  .reservation-form {
    gap: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .btn-submit {
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .reservation-section {
    padding: 40px 12px;
  }
  
  .reservation-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .reservation-info h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  
  .info-item {
    padding: 14px;
    gap: 10px;
  }
  
  .info-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  
  .info-text h4 {
    font-size: 15px;
  }
  
  .info-text p {
    font-size: 12px;
  }
  
  .reservation-form-container {
    padding: 20px;
  }
  
  .reservation-form {
    gap: 18px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .btn-submit {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* Footer Section */
.site-footer {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--text-white);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-white), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  margin: 0;
  letter-spacing: -0.5px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 24px 0;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-white);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-xl);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 20px 0;
  letter-spacing: -0.3px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-link:hover {
  color: var(--text-white);
  transform: translateX(4px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--text-white);
}

.footer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-features li {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-white);
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.copyright-link {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.copyright-link:hover {
  color: var(--text-white);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
  
  .site-footer {
    padding: 50px 0 0;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .site-footer {
    padding: 40px 0 0;
  }
  
  .footer-content {
    padding: 0 16px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-brand-name {
    font-size: 20px;
  }
  
  .footer-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 0;
  }
  
  .footer-content {
    gap: 24px;
    padding: 0 12px;
  }
  
  .footer-logo {
    gap: 8px;
  }
  
  .footer-logo-img {
    width: 32px;
    height: 32px;
  }
  
  .footer-brand-name {
    font-size: 18px;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .contact-item {
    gap: 10px;
    margin-bottom: 16px;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom-content {
    padding: 0 12px;
  }
  
  .copyright,
  .footer-tagline {
    font-size: 13px;
  }
}

/* Ensure in-page anchor targets are visible below the fixed header */
section { scroll-margin-top: var(--header-height, 64px); }
