/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1209 50%, #0d0d0d 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.25, .46, .45, .94);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .70;
  filter: brightness(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, 0));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 60px;
  animation: heroIn 1.2s cubic-bezier(.25, .46, .45, .94);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-tag {
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  letter-spacing: .2em;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s;
}

.hero-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ===== BOOKING BAR ===== */
.booking-bar {
  background: var(--dark2);
  padding: 0 40px;
  border-bottom: 2px solid var(--gold);
}

.booking-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.booking-field label {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.booking-field input,
.booking-field select {
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.booking-field select option {
  background: var(--dark2);
  color: var(--white);
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.booking-btn {
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  padding: 0 40px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}

.booking-btn:hover {
  background: var(--gold-light);
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: var(--radius);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, .04), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover {
  border-color: rgba(201, 168, 76, .4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform .3s;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== SUITES CAROUSEL ===== */
.suites-section {
  background: var(--dark);
  padding: 100px 40px;
}

.suites-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.suites-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.suite-card {
  min-width: 320px;
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, .1);
  transition: all .3s;
  cursor: pointer;
}

.suite-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, .4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}

.suite-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.suite-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

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

.suite-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.suite-body {
  padding: 24px;
}

.suite-price {
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.suite-price strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
}

.suite-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 400;
}

.suite-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.suite-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .05em;
}

.suite-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.carousel-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, .3);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  color: var(--gold);
  font-size: 18px;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== ISTANBUL SECTION ===== */
.istanbul-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  margin-top: 50px;
}

.istanbul-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.istanbul-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.istanbul-card:hover img {
  transform: scale(1.06);
}

.istanbul-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.istanbul-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
  transition: color .3s;
}

.istanbul-card:hover h3 {
  color: var(--gold);
}

/* ===== AMENITIES ===== */
.amenities-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 100px 40px;
}

.amenities-bg {
  position: absolute;
  inset: 0;
  opacity: .15;
}

.amenities-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .7));
}

.amenities-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.amenity-item {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: var(--radius);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.amenity-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s;
}

.amenity-item:hover {
  border-color: rgba(201, 168, 76, .5);
  background: rgba(201, 168, 76, .05);
}

.amenity-item:hover::after {
  transform: scaleX(1);
}

.amenity-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.amenity-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.amenity-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ===== DEALS ===== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.deal-card {
  border: 1px solid rgba(201, 168, 76, .1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  border-color: rgba(201, 168, 76, .4);
}

.deal-img {
  height: 180px;
  overflow: hidden;
}

.deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

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

.deal-body {
  padding: 20px;
}

.deal-from {
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
}

.deal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  font-weight: 300;
  line-height: 1;
}

.deal-price s {
  font-size: 1rem;
  color: var(--text2);
  margin-left: 6px;
}

.deal-name {
  font-size: 14px;
  font-weight: 500;
  margin: 6px 0 8px;
  color: var(--text);
}

.deal-meta {
  font-size: 11px;
  color: var(--text2);
  display: flex;
  gap: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--light);
  padding: 100px 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
  position: relative;
  border-top: 3px solid var(--gold);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: .15;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 500;
  font-size: 13px;
}

.testimonial-loc {
  font-size: 11px;
  color: var(--text2);
  letter-spacing: .05em;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media(max-width:768px) {
  .hero-content {
    padding: 0 24px;
  }

  .booking-inner {
    flex-direction: column;
  }

  .booking-btn {
    padding: 16px;
    text-align: center;
  }

  .istanbul-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

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

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

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

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

  .booking-bar {
    padding: 0 20px;
  }
}

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

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

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

  .hero-actions {
    flex-direction: column;
  }

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