/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: #111;
  border-bottom: 1px solid #222;
  padding: 8px 0;
  font-size: 13px;
  color: #aaa;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-inner span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-inner .fa {
  color: #c8a96e;
}

.lang-switcher {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.lang-btn {
  background: transparent;
  border: 1px solid #333;
  color: #aaa;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: all .2s;
}

.lang-btn:hover,
.lang-btn.active {
  background: #c8a96e;
  border-color: #c8a96e;
  color: #000;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e1e1e;
  transition: box-shadow .3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px; /* A nice size for navbar */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #bbb;
  transition: color .2s;
}

.nav-links a:hover {
  color: #c8a96e;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.search-btn {
  background: linear-gradient(135deg, #1a1a1a, #141414);
  border: 1px solid #2e2e2e;
  color: #ccc;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .25s;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.search-btn .fa {
  font-size: 12px;
  color: #c8a96e;
  transition: transform .25s;
}

.search-btn:hover {
  background: linear-gradient(135deg, #c8a96e, #b8955a);
  border-color: #c8a96e;
  color: #000;
  box-shadow: 0 4px 18px rgba(200, 169, 110, 0.3);
  transform: translateY(-1px);
}

.search-btn:hover .fa {
  color: #000;
  transform: scale(1.15);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.search-bar {
  display: none;
  padding: 12px 24px;
  background: #111;
  border-top: 1px solid #222;
}

.search-bar.open {
  display: flex;
  gap: 8px;
}

.search-bar input {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.search-bar input:focus {
  border-color: #c8a96e;
}

.search-bar button {
  background: #c8a96e;
  border: none;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

/* ===== BUTTONS ===== */
.btn-wp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  transition: all .2s;
  border: none;
  cursor: pointer;
}

.btn-wp::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 20%; height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  animation: lux-shimmer 6s infinite;
}

.btn-wp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-wp.large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-wp.small {
  padding: 8px 16px;
  font-size: 13px;
  margin-top: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  border: 2px solid #c8a96e;
  transition: all .2s;
}

.btn-outline:hover {
  background: #c8a96e;
  color: #000;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  color: #c8a96e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.section-header p {
  color: #888;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== P-HERO (LUXURY ARCH CONCEPT) ===== */
.p-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #050505;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}

.p-hero-glow {
  display: none;
}

.p-hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.p-hero-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-hero-right {
  position: relative;
  padding: 20px;
}

.p-hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 11 / 14; /* Taller 'uzunlamasına' form factor */
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 
              0 0 40px rgba(200,169,110,0.15);
  border: 4px solid #1a1a1a; /* Thicker premium frame */
  background: #000; /* Backdrop for contain bars */
}

.p-video-slider {
  display: flex;
  width: 400%; /* 3 videos + 1 duplicate */
  height: 100%;
  animation: p-auto-slide 24s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

.p-slide {
  width: 25%;
  height: 100%;
  flex-shrink: 0;
}

.p-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Don't crop videos */
}

@keyframes p-auto-slide {
  0%, 30%    { transform: translateX(0); }
  33%, 63%   { transform: translateX(-25%); }
  66%, 96%   { transform: translateX(-50%); }
  100%       { transform: translateX(-75%); } /* Loop point at 4th slide (duplicate of 1st) */
}

/* Watermark moved to a background element in this layout */
.p-hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: 40%; height: 40%;
  background: radial-gradient(circle, rgba(200,169,110,0.03) 0%, transparent 70%);
  z-index: 1;
}

/* Redundant p-hero-inner and content removed */


.p-hero-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start; /* Left align by default */
  gap: 8px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  color: #c8a96e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.p-dot {
  width: 6px;
  height: 6px;
  background: #c8a96e;
  border-radius: 50%;
  box-shadow: 0 0 10px #c8a96e;
}

.p-hero-seo {
  font-size: 20px;
  font-weight: 500;
  color: #c8a96e;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.p-hero-title {
  font-size: 84px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #e3cd98 0%, #c8a96e 50%, #997a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-hero-desc {
  color: #aaa;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.p-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.p-btn-solid, .p-btn-reservation-hero, .p-btn-whatsapp {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c8a96e, #b8955a);
  color: #000;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.p-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
}

.p-btn-solid::after, .p-btn-reservation-hero::after, .p-btn-whatsapp::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 20%; height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  animation: lux-shimmer 4s infinite;
}

@keyframes lux-shimmer {
  0% { left: -60%; }
  15% { left: 160%; }
  100% { left: 160%; }
}

.p-btn-solid:hover, .p-btn-reservation-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(200, 169, 110, 0.3);
  color: #000;
}

.p-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.p-btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.p-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Cluster and Orbits removed for Cinematic Strips */

/* ===== ABOUT ===== */
.about {
  background: #0d0d0d;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  z-index: 1;
  animation: lux-float 6s ease-in-out infinite;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}

.about-img-wrap img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(200, 169, 110, 0.05);
}

@keyframes lux-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.about-text .section-tag {
  display: block;
  margin-bottom: 12px;
  color: #c8a96e;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  color: #888;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ccc;
}

.feature .fa {
  color: #c8a96e;
}

/* ===== RESERVATION BANNER ===== */
.reservation-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.reservation-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.reservation-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.reservation-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: #c8a96e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.reservation-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.reservation-text p {
  color: #888;
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 20px;
}

.reservation-features {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reservation-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #bbb;
}

.reservation-features li .fa {
  color: #c8a96e;
  font-size: 12px;
}

.reservation-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.res-note {
  color: #555;
  font-size: 13px;
}

/* Reservation button */
.btn-reservation {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #c8a96e, #b8955a);
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  transition: all .25s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-reservation::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 20%; height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  animation: lux-shimmer 5s infinite;
}

.btn-reservation:hover {
  background: linear-gradient(135deg, #d4b87a, #c8a96e);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}

.btn-reservation.large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Navbar reservation link */
.nav-reservation-link {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c8a96e, #b8955a) !important;
  color: #000 !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all .25s !important;
}

.nav-reservation-link::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 20%; height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(30deg);
  animation: lux-shimmer 4s infinite;
}

.nav-reservation-link:hover {
  box-shadow: 0 4px 16px rgba(200, 169, 110, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* ===== SERVICES ===== */
.services {
  background: #0a0a0a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.services-banner {
  background: rgba(200, 169, 110, 0.05);
  border-left: 4px solid #c8a96e;
  padding: 20px 24px;
  border-radius: 4px 16px 16px 4px;
  margin-bottom: 48px;
  color: #c8a96e;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.5);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(200, 169, 110, 0.15);
}

.service-card.featured {
  border-color: rgba(200, 169, 110, 0.4);
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.8));
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 110, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon .fa {
  color: #c8a96e;
  font-size: 22px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.service-duration {
  font-size: 13px;
  color: #c8a96e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: #c8a96e;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.service-link:hover {
  border-bottom-color: #c8a96e;
  padding-left: 4px;
}

.services-footer {
  margin-top: 64px;
  text-align: center;
  padding: 40px;
  background: radial-gradient(circle at center, rgba(200, 169, 110, 0.03) 0%, transparent 70%);
}

.svc-conclusion {
  color: #888;
  font-size: 16px;
  margin-bottom: 16px;
}

.svc-personal-note {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

/* ===== VIDEOS ===== */
.videos {
  background: #0d0d0d;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-placeholder {
  background: #111;
  border: 2px dashed #2a2a2a;
  border-radius: 16px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all .3s;
  color: #555;
}

.video-placeholder:hover {
  border-color: #c8a96e;
  color: #c8a96e;
}

.video-placeholder .fa {
  font-size: 40px;
}

.video-placeholder p {
  font-size: 14px;
  font-weight: 600;
  color: #888;
}

.video-placeholder span {
  font-size: 12px;
  color: #555;
}

.video-item {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid #1e1e1e;
}

.video-item .gallery-label {
  padding: 10px 14px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #1e1e1e;
}

/* Premium Gallery */
.premium-gallery {
  display: flex;
  gap: 20px;
  height: 500px;
  width: 100%;
}

.pg-item {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background: #111;
  border: 1px solid #1e1e1e;
}

.pg-item.active {
  flex: 3;
  border-color: #c8a96e;
  box-shadow: 0 10px 40px rgba(200, 169, 110, 0.2);
}

.pg-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.6s;
  pointer-events: none;
}

.pg-item.active video {
  opacity: 1;
}

.pg-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  z-index: 1;
}

.pg-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.2s;
}

.pg-item.active .pg-content {
  opacity: 1;
  transform: translateY(0);
}

.pg-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8a96e;
  font-size: 18px;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.pg-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.pg-text p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .premium-gallery {
    flex-direction: column;
    height: 600px;
  }
}

/* ===== GALLERY ===== */
.gallery {
  background: #0a0a0a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: #111;
  border: 2px dashed #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #555;
  transition: all .3s;
}

.gallery-item:hover .gallery-placeholder {
  border-color: #c8a96e;
  color: #c8a96e;
}

.gallery-placeholder .fa {
  font-size: 32px;
}

.gallery-placeholder p {
  font-size: 13px;
}

.gallery-label {
  background: #111;
  padding: 10px 14px;
  font-size: 13px;
  color: #888;
  border: 1px solid #1e1e1e;
  border-top: none;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}

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

/* ===== REVIEWS ===== */
.reviews {
  background: #0d0d0d;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 28px;
  transition: border-color .3s;
}

.review-card:hover {
  border-color: #c8a96e;
}

.stars {
  color: #c8a96e;
  font-size: 18px;
  margin-bottom: 14px;
}

.review-card p {
  color: #999;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: #c8a96e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 16px;
}

.reviewer strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.reviewer span {
  font-size: 12px;
  color: #666;
}

/* ===== CONTACT ===== */
.contact {
  background: #0a0a0a;
}

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

.contact-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: all .3s;
  min-width: 0;
  word-break: break-word;
}

.contact-card:hover {
  border-color: #c8a96e;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(200, 169, 110, 0.08);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 169, 110, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.contact-card-icon .fa,
.contact-card-icon .fab {
  color: #c8a96e;
  font-size: 22px;
}

.contact-card-icon.wp-icon {
  background: rgba(37, 211, 102, 0.12);
}

.contact-card-icon.wp-icon .fab {
  color: #25d366;
}

.contact-card strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.contact-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.5;
}

.contact-card p a {
  color: #c8a96e;
  transition: color .2s;
}

.contact-card p a:hover {
  color: #fff;
}

.contact-card-wp {
  border-color: rgba(37, 211, 102, 0.2);
}

.contact-card-wp:hover {
  border-color: #25d366;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
  max-width: 520px;
}

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

.contact-item .fa {
  color: #c8a96e;
  font-size: 20px;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-item p {
  color: #888;
  font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #666;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-grid a:hover {
  color: #c8a96e;
}

.footer-grid>div:first-child p {
  color: #666;
  font-size: 14px;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 20px 0;
  text-align: center;
  color: #444;
  font-size: 13px;
}

/* ===== WP FLOAT ===== */
.wp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all .3s;
}

.wp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

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

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #c8a96e;
  border: none;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .p-hero {
    padding: 120px 24px 60px;
  }

  .p-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .p-hero-content {
    align-items: center;
  }

  .p-hero-title {
    font-size: 56px;
  }

  .p-hero-desc {
    text-align: center;
  }

  .p-hero-btns {
    justify-content: center;
  }

  .p-hero-watermark {
    width: 90vw;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .reservation-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .reservation-features {
    justify-content: center;
  }

  .reservation-text p {
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    padding: 20px 24px;
    border-bottom: 1px solid #222;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px 16px;
  }

  .contact-card-wp .btn-wp {
    font-size: 13px;
    padding: 10px 16px;
    width: 100%;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .p-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .p-hero-left {
    text-align: center;
    align-items: center;
  }

  .p-hero-title {
    font-size: 44px;
    margin: 0 auto 24px;
  }

  .p-hero-desc {
    margin: 0 auto 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}