/* Remziye Güvenç Residence Master CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Ana Zemin: Lüks Beyaz ve Aydınlık Nötr Tonlar */
  --bg-body: #ffffff;
  --bg-surface: #f9fafb;
  --bg-surface-2: #f3f4f6;
  --bg-card: #ffffff;
  
  /* Üst Menü ve Koyu Vurgu Alanları: Derin Siyah */
  --header-bg: #09090c;
  --header-border: #18181b;
  --footer-bg: #09090c;
  --dark-section-bg: #0c0c10;
  
  /* Metin Renkleri */
  --text-dark-title: #09090b;
  --text-dark-body: #374151;
  --text-dark-muted: #6b7280;
  
  --text-light-title: #ffffff;
  --text-light-body: #e2e8f0;
  --text-light-muted: #94a3b8;
  
  /* Vurgu & Aksan Renkleri */
  --accent-black: #000000;
  --accent-gold: #c89b3c;
  --accent-gold-light: #f5eedb;
  --accent-green-wa: #25d366;
  
  /* Kenarlıklar */
  --border-light: #e2e8f0;
  --border-light-hover: #09090b;
  --border-dark: #27272a;
  
  /* Tipografi */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Gölgeler */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 18px 40px rgba(0, 0, 0, 0.09);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.35);
  
  /* Yuvarlama */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-dark-body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background-color: #050507;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #cbd5e1;
  padding: 9px 0;
  position: relative;
  z-index: 1001;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-left strong {
  color: #ffffff;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.announcement-phone strong {
  color: #ffffff;
}

.announcement-right a {
  color: #cbd5e1;
}

.announcement-right a:hover {
  color: #ffffff;
}

.announcement-right .divider {
  color: #4b5563;
}

/* ==========================================================================
   HEADER & NAVIGATION (Siyah Asil Üst Menü)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.brand-logo:hover img {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #d1d5db;
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: 12px;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-header-call:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   PAGE BANNER (İç Sayfalar Başlık Alanı)
   ========================================================================== */
.page-banner {
  background-color: #09090c;
  padding: 55px 0 60px 0;
  position: relative;
  border-bottom: 1px solid #18181b;
  color: #ffffff;
}

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

.banner-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.banner-desc {
  font-size: 1.02rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* ==========================================================================
   SECTIONS & TYPOGRAPHY
   ========================================================================== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-surface);
}

.section-dark {
  background-color: var(--dark-section-bg);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 15px;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 12px;
}

.section-dark .section-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #e5e7eb;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-dark-title);
  margin-bottom: 14px;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

.section-dark .section-desc {
  color: #94a3b8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-black {
  background-color: #000000;
  color: #ffffff;
}
.btn-black:hover {
  background-color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark {
  background: transparent;
  color: #000000;
  border: 1.5px solid #000000;
}
.btn-outline-dark:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: #000000;
}
.btn-white:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}
.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   HERO SECTION (Lüks & Aydınlık Beyaz Karşılama)
   ========================================================================== */
.hero {
  padding: 65px 0 85px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  box-shadow: var(--shadow-subtle);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.16;
  color: var(--text-dark-title);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark-body);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border-light);
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  font-weight: 600;
}

.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  aspect-ratio: 4/5;
  background: #f1f5f9;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
}

.badge-text p {
  font-size: 0.78rem;
  color: #475569;
}

/* ==========================================================================
   FOUNDER & ABOUT (Kurucu Remziye Güvenç)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.founder-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.founder-img-wrapper {
  position: relative;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  background: #f1f5f9;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.founder-info-bar {
  padding: 20px 22px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
}

.founder-title {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark-title);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.7;
  margin-bottom: 18px;
  border-left: 4px solid #000000;
  padding-left: 16px;
}

.about-text {
  font-size: 0.98rem;
  color: var(--text-dark-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ==========================================================================
   ROOMS & SUITES SHOWCASE
   ========================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}

.room-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  border-color: #0f172a;
  box-shadow: var(--shadow-card-hover);
}

.room-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #000000;
  color: #ffffff;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.room-capacity-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}

.room-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: var(--text-dark-muted);
  font-weight: 600;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--text-dark-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.room-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.room-feature-item {
  font-size: 0.8rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.room-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.room-price-info p {
  font-size: 0.72rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
}

.room-price-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
}

/* ==========================================================================
   FEATURES & SERVICES
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #000000;
  box-shadow: var(--shadow-card-hover);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #000000;
}

.feature-card:hover .feature-icon-wrapper {
  background: #000000;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dark-body);
  line-height: 1.6;
}

/* ==========================================================================
   GALLERY & MEDIA
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-dark-body);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.gallery-item-cat {
  font-size: 0.72rem;
  color: #e2e8f0;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Video Play Badge in Gallery */
.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.82);
  border: 2px solid #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.gallery-item:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.08);
}

/* ==========================================================================
   VIDEO TOUR SPOTLIGHT (Luminous Luxury White / Light Aesthetic)
   ========================================================================== */
.video-spotlight {
  background-color: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark-title);
  padding: 80px 0;
}

.video-box-card {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border: 1px solid var(--border-light);
  position: relative;
}

.video-box-card video {
  width: 100%;
  height: auto;
  max-height: 540px;
  display: block;
  background: #000000;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION (LUXURY FORM CARD)
   ========================================================================== */
.location-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-card-info {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* Redesigned Luxury Form Card */
.form-luxury-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-luxury-header {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.form-luxury-header h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.form-luxury-header p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
}

.luxury-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.luxury-form .form-group {
  margin-bottom: 16px;
}

.luxury-form .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.luxury-form .form-group label .req {
  color: #ef4444;
}

.luxury-form .form-control {
  width: 100%;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: #0f172a;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  transition: all var(--transition);
}

.luxury-form .form-control:focus {
  border-color: #000000;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
  outline: none;
}

.luxury-form textarea.luxury-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

.form-action-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.btn-submit-luxury {
  width: auto;
  min-width: 220px;
  padding: 13px 30px;
  font-size: 0.94rem;
}

.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.88rem;
  display: none;
}

.form-alert.success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  display: block;
}

.form-alert.error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  display: block;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ==========================================================================
   FOOTER (Koyu Lüks Taban — 100% Görünür & Net)
   ========================================================================== */
.site-footer {
  background-color: var(--footer-bg) !important;
  border-top: 1px solid #18181b;
  padding: 65px 0 28px 0;
  color: #cbd5e1 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #cbd5e1 !important;
  margin-bottom: 16px;
}

.footer-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: #94a3b8 !important;
}

.footer-links a:hover {
  color: #ffffff !important;
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
}

.f-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.f-text {
  display: flex;
  flex-direction: column;
}

.f-label {
  font-size: 0.72rem;
  color: #94a3b8 !important;
  text-transform: uppercase;
  font-weight: 700;
}

.f-val {
  color: #f1f5f9 !important;
}

.f-val-link {
  color: #f1f5f9 !important;
}

.f-val-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.f-phone-bold {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff !important;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover, .footer-bottom-links a.admin-link:hover {
  color: #ffffff !important;
}

/* ==========================================================================
   OFFICIAL WHATSAPP FLOATING BUTTON (Kusursuz & Sade)
   ========================================================================== */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.wa-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  display: block;
}

.wa-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.wa-hover-label {
  position: absolute;
  right: 70px;
  background: #09090c;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.wa-btn:hover .wa-hover-label {
  opacity: 1;
  transform: translateX(0);
}

/* Modals */
.lightbox-modal, .room-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active, .room-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-close, .modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  z-index: 10;
  transition: background var(--transition);
}

.lightbox-close:hover, .modal-close-btn:hover {
  background: #000000;
}

.room-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
}

.room-modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.room-modal-body {
  padding: 32px;
  color: var(--text-dark-title);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-announcement-bar {
    display: none;
  }
  .header-inner {
    height: 70px;
  }
  .brand-logo img {
    height: 36px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #09090c;
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    border-bottom: 1px solid #18181b;
    transform: translateY(-150%);
    transition: transform var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: block;
  }
  .header-actions .btn-header-call {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
  .hero {
    padding: 35px 0 55px 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .luxury-form .form-row {
    grid-template-columns: 1fr;
  }
  .btn-submit-luxury {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
