:root {
  --primary: #FD5056;
  --secondary: #1A093F;
  --text: #7A7A7A;
  --white: #FFFFFF;
  --font: 'Poppins', sans-serif;
  --container: 1140px;
  --container-wide: 1400px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6em;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font); color: var(--secondary); line-height: 1.2; }
h1 { font-size: 67px; font-weight: 700; }
h2 { font-size: 60px; font-weight: 700; }
h3 { font-size: 32px; font-weight: 700; line-height: 1em; }
h4 { font-size: 24px; font-weight: 600; }
h5 { font-size: 22px; font-weight: 600; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.section { padding: 80px 0; }
.section-light { background: var(--white); }
.text-center { text-align: center; }

.section-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 10px;
}

.section-title { color: var(--secondary); margin-bottom: 16px; }
.section-subtitle {
  font-size: 16px;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 31px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: #23104B;
  border-color: #23104B;
}
.btn-phone {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-phone:hover {
  background: rgba(255,255,255,0.1);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.header .container {
  max-width: var(--container-wide);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img { width: 180px; max-width: 100%; display: block; }
.header-logo span { display: none; }
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
}
.header-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  padding: 10px 0;
  text-transform: capitalize;
  line-height: 1.7em;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--primary);
}
.header-phone { display: none; }
.header-contact {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 31px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.header-contact:hover { background: #23104B; }

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
.nav-overlay.open { display: block; }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px 12px;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  min-height: 42px;
  transition: background 0.3s ease;
}
.hamburger:hover { background: #23104B; }
.hamburger svg { width: 26px; height: 26px; fill: #fff; display: block; }

/* Hero - Ken Burns Slideshow */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kenBurns 24s infinite;
  will-change: transform, opacity;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
@keyframes kenBurns {
  0% { opacity: 0; transform: scale(1.2); }
  5% { opacity: 1; }
  45% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  opacity: 0.5;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 60px;
  max-width: 700px;
}
.hero-content h1 {
  color: var(--white);
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 0;
  text-transform: capitalize;
}
.hero-content .hero-tagline {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (subpages) */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  width: 100%;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  opacity: 0.55;
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.page-hero-content > * {
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 0.6s ease forwards;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2em;
  animation-delay: 0.1s;
}
.page-hero-content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
  animation-delay: 0.2s;
}
.page-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  animation-delay: 0.3s;
}
.page-hero-btn:hover {
  transform: scale(1.03);
  background: #23104B;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Famous Places Grid */
.places-section { padding: 80px 0; }
.places-heading {
  font-size: 67px;
  font-weight: 700;
  color: var(--secondary);
  text-align: left;
  margin-bottom: 60px;
  line-height: 1.2em;
}
.places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.place-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.places-grid.reveal .place-card {
  opacity: 1;
  transform: translateY(0);
}
.place-card:nth-child(2) { transition-delay: 0.1s; }
.place-card:nth-child(3) { transition-delay: 0.2s; }
.place-card:nth-child(4) { transition-delay: 0.3s; }
.place-img-wrap {
  border-radius: 28px;
  overflow: hidden;
}
.place-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.place-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  text-align: left;
  margin-top: 14px;
  line-height: 1.3em;
}
.card-tall .place-img-wrap img { aspect-ratio: 3 / 4; }
.card-offset { margin-top: 80px; }
.card-offset .place-img-wrap img { aspect-ratio: 3 / 3.5; }


/* Feature Section - Heals You */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.feature-image-wrap {
  position: relative;
  background-image: url('../images/f4e913a1-group-12.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/1223bb05-group-81.png');
  background-repeat: no-repeat;
  z-index: 0;
}
.feature-image-wrap img {
  width: 85%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.feature-content {
  padding: 40px;
}
.feature-content h2 {
  font-size: 52px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 80px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 636px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-item-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item-icon .material-symbols-outlined {
  font-size: 32px;
  color: var(--secondary);
}
.feature-item-text h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}
.feature-item-text p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6em;
}

/* Ben Smim Awaits Section */
.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.awaits-section {
  background: var(--white);
  padding: 60px 0;
  overflow: hidden;
}
.awaits-heading {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
  line-height: 1.2em;
}
.awaits-subheading {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 28px;
  line-height: 1.3em;
}
.awaits-text p {
  text-align: left;
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Info Grid (3 cards) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.info-card {
  text-align: center;
  padding: 40px 28px 35px;
  background: #fff;
  border: 2px solid var(--secondary);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 9, 63, 0.1);
  border-color: var(--primary);
}
.info-card:hover::before {
  transform: scaleX(1);
}
.info-icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: #f5f2fd;
  border-radius: 16px;
  transition: all 0.4s ease;
}
.info-card:hover .info-icon-wrap {
  background: var(--primary);
}
.info-card .info-icon {
  font-size: 34px;
  color: var(--secondary);
  display: inline-block;
  transition: color 0.4s ease;
}
.info-card:hover .info-icon {
  color: #fff;
}
.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--secondary);
  margin-bottom: 12px;
}
.info-card p {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.7em;
}

/* Gallery Section Home */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
  padding: 0 20px;
}
.gallery-header h2 {
  font-size: 60px;
  font-weight: 800;
  color: var(--secondary);
}
.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.gallery-btn:hover {
  background: #23104B;
}
.gallery-btn svg { display: block; }
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 20px;
}
.gallery-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}
.gallery-col {
  overflow: hidden;
  border-radius: 20px;
}
.gallery-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-col:hover img {
  transform: scale(1.05);
}
.gallery-col-58 { flex: 58%; }
.gallery-col-42 { flex: 42%; }
.gallery-col-38 { flex: 38%; }
.gallery-col-62 { flex: 62%; }

/* Testimonials */
.testimonials-section {
  background: var(--white);
  padding: 80px 0;
  overflow: hidden;
}
.testimonials-heading {
  text-align: center;
  font-size: clamp(40px, 5vw, 67px);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 48px;
}
.testimonial-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 36px;
  background: #fff;
  border: 2px solid var(--secondary);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(26, 9, 63, 0.12),
    0 8px 24px rgba(26, 9, 63, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px);
  animation: cardFadeIn 0.6s ease forwards;
}
.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 80px rgba(26, 9, 63, 0.18),
    0 12px 32px rgba(26, 9, 63, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: var(--primary);
}
.testimonial-card:active {
  transform: translateY(-6px) scale(0.98);
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary);
  opacity: 0.85;
  font-style: italic;
  margin-bottom: 32px;
  flex: 1;
}
.testimonial-author {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  font-style: normal;
}
.testimonial-location {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  margin-top: 4px;
}

/* Contact Section */
.contact-section {
  background: var(--white);
  padding: 40px 0;
}
.contact-section h2 {
  text-align: center;
  font-size: 67px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 24px;
}
.contact-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.contact-side {
  flex: 0 0 340px;
  border-radius: 20px;
  overflow: hidden;
}
.contact-side img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.contact-form-wrap {
  max-width: 500px;
  flex: 0 0 500px;
}
@media (max-width: 768px) {
  .contact-form-wrap {
    flex: 1;
    max-width: 100%;
  }
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  transition: var(--transition);
  background: #fff;
  color: #000;
  box-shadow: 0 4px 14px rgba(253, 80, 86, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #000;
  opacity: 1;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 4px 20px rgba(253, 80, 86, 0.15);
}
.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

/* CTA Section */
.cta-section {
  padding: 40px 0;
}
.cta-card {
  text-align: center;
  padding: 50px 40px;
  background: var(--secondary);
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(26, 9, 63, 0.15);
}
.cta-card h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2em;
}
.cta-sub {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3em;
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-block;
  padding: 10px 32px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #23104B;
}

/* Footer */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.footer-inner {
  padding: 64px 80px 0;
}
.footer-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 48px;
}
.footer-brand { flex: 0 1 30%; }
.footer-col { flex: 0 1 20%; }
.footer-logo {
  display: block;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 150px;
  height: auto;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--secondary);
  text-align: left;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
}
.footer-list li .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.footer-list a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-list a:hover {
  color: var(--primary);
}
.footer-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.footer-btn:hover {
  background: #23104B;
}
.footer-btn .material-symbols-outlined {
  font-size: 18px;
  color: #fff;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  background: #120A3A;
  padding: 20px 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.footer-bottom small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-bottom .coral {
  color: var(--primary);
}
.footer-bottom .white {
  color: #fff;
}

/* Thank You */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.thank-you-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  opacity: 0.85;
  z-index: 1;
}
.thank-you-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  max-width: 600px;
}
.thank-you-heading {
  color: var(--white);
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2em;
}
.thank-you-desc {
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  margin-bottom: 36px;
  line-height: 1.5em;
}

/* Page intro */
.page-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}
.page-intro h1,
.page-intro h2 { margin-bottom: 16px; }
.page-intro h1 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: #1A093F; }
.page-intro p { font-size: 16px; line-height: 1.6em; }

/* About Grid */
/* About Split Section */
.about-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: #FFFFFF;
  padding: 80px;
}
.about-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
.about-text-col {
  flex: 0 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-text-col h2 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1A093F;
  margin-bottom: 32px;
  line-height: 1.2;
}
.about-text-col p {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: #2F2F2F;
  margin-bottom: 16px;
}
.about-image-col {
  flex: 0 1 50%;
  display: flex;
  justify-content: flex-end;
}
.about-image-col img {
  width: 100%;
  max-width: 650px;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

/* Places Split Section (inverted) */
.places-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  gap: 64px;
  padding: 80px;
}
.places-image-col {
  flex: 0 1 50%;
}
.places-image-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}
.places-text-col {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.places-text-col h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1A093F;
  margin-bottom: 32px;
}
.places-text-col ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}
.places-text-col li {
  font-size: 15px;
  font-weight: 400;
  color: #2F2F2F;
  line-height: 1.6;
  padding-left: 4px;
}
.places-text-col li strong {
  display: inline;
  font-size: 18px;
  font-weight: 700;
  color: #110D3B;
}
.places-text-col li > strong:first-child {
  display: block;
  margin-bottom: 6px;
}
.places-section.reverse {
  flex-direction: row-reverse;
}
.places-text-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 16px;
}

/* Content Rows */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }
.content-row-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-row-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.content-row-text h3 { margin-bottom: 8px; }
.content-row-text p { font-size: 15px; color: var(--text); line-height: 1.7; }

/* Stay cards */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stay-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.stay-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.stay-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.stay-card-body { padding: 20px 24px 24px; }
.stay-card-body h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.stay-card-body p { font-size: 14px; color: var(--text); line-height: 1.6; }
.stay-rating { color: #FD5056; margin-bottom: 8px; font-size: 14px; }

/* Places Page */
.places-page {
  padding: 80px 0;
  background: #f8f9fa;
}
.places-page-intro {
  text-align: center;
  margin-bottom: 48px;
}
.places-page-intro h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #1A093F;
  margin-bottom: 12px;
}
.places-page-intro p {
  font-size: 16px;
  color: #2F2F2F;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.places-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.place-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.place-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.place-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.place-card-body {
  padding: 20px 24px 28px;
}
.place-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A093F;
  margin-bottom: 8px;
}
.place-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: #2F2F2F;
}

/* Place Detail */
.place-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.place-detail-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.place-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.place-detail-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.place-detail-caption {
  padding: 16px 20px 20px;
  background: var(--white);
}
.place-detail-caption h4 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.place-detail-caption p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* Gallery page */


/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--secondary);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .icon { transition: var(--transition); }
.faq-item.active .faq-question .icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}
.faq-answer p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate-zoom-in { animation: zoomIn 0.8s ease forwards; }
.animate-slide-in-up { animation: slideInUp 0.6s ease forwards; }
.animate-fade-in-right { animation: fadeInRight 0.8s ease forwards; }

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 2.3rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1.2rem; }
  .hero-content h1 { font-size: 2.3rem; }
  .places-grid { grid-template-columns: repeat(2, 1fr); }
  .places-heading { font-size: 42px; }
  .card-offset { margin-top: 0; }
  .footer-row { flex-wrap: wrap; gap: 40px; }
  .footer-brand { flex: 0 1 100%; }
  .footer-col { flex: 0 1 calc(33.33% - 27px); }
  .footer-inner { padding: 48px 40px 0; }
  .header-nav { gap: 16px; }
  .header-nav a { font-size: 13px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 2.6rem; }
  h4 { font-size: 1.1rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content .hero-tagline { font-size: 18px; }
  .places-heading { font-size: 34px; }
  .feature-content h2 { font-size: 32px; margin-bottom: 30px; }

  .header-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--secondary);
    flex-direction: column;
    padding: 0;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-nav a {
    color: #fff !important;
    background: var(--secondary);
    padding: 10px 20px;
    font-size: 16px;
    margin: 0;
    border: none;
  }
  .header-nav a:hover,
  .header-nav a.active {
    color: #fff !important;
    background: var(--primary);
  }
  .hamburger { display: flex; }

  .contact-side { display: none; }
  .contact-layout { gap: 0; }
  .feature-section,
  .contact-grid,
  .about-grid,
  .content-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-row.reverse { direction: ltr; }
  .about-grid.reverse { direction: ltr; }

  .places-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .place-detail-grid { grid-template-columns: 1fr; }
  .gallery-row { flex-direction: column; }
  .gallery-col img { height: 250px; }
  .places-page-grid { grid-template-columns: 1fr; }
.footer-row { flex-direction: column; gap: 32px; }
  .footer-col { flex: 1; }
  .footer-inner { padding: 40px 24px 0; }
  .testimonial-grid { flex-direction: column; }

  .section { padding: 50px 0; }
  .feature-image-wrap img { width: 100%; }
  .feature-content { padding: 24px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .page-hero { height: 400px; border-radius: 24px 24px 0 0; }
  .page-hero-content h1 { font-size: 2.3rem; }

  .contact-section h2 { font-size: 36px; }
  .cta-card { padding: 40px 24px; }
  .cta-card h2 { font-size: 32px; }
  .cta-sub { font-size: 22px; }
  .gallery-header h2 { font-size: 36px; }
  .awaits-heading { font-size: 32px; }
  .awaits-subheading { font-size: 18px; }
  .thank-you-heading { font-size: 42px; }
  .thank-you-desc { font-size: 18px; }

  .about-section { padding: 40px 24px; flex-direction: column; }
  .about-wrapper { flex-direction: column; gap: 32px; }
  .about-text-col { flex: 0 1 100%; }
  .about-image-col { flex: 0 1 100%; justify-content: center; }
  .about-image-col img { height: 260px; }

  .places-section { padding: 40px 24px; flex-direction: column; gap: 32px; }
  .places-image-col { flex: 0 1 100%; }
  .places-text-col { flex: 0 1 100%; }
  .places-image-col img { height: 280px; }
  .places-text-col h2 { font-size: 28px; }

  .blog-post { padding: 40px 24px; }
  .blog-image { height: 250px; border-radius: 16px; }
}

@media (max-width: 480px) {
  .places-grid { grid-template-columns: 1fr; }
  .contact-section h2 { font-size: 28px; }
  .cta-card h2 { font-size: 26px; }
  .cta-sub { font-size: 18px; }
  .cta-card { padding: 32px 20px; }
  .thank-you-heading { font-size: 34px; }
  .thank-you-desc { font-size: 16px; }
  .about-section { padding: 24px 16px; }
  .about-image-col img { height: 200px; }
  .places-section { padding: 24px 16px; }
  .places-image-col img { height: 220px; }
  .blog-post { padding: 24px 16px; }
  .blog-image { height: 200px; }
}

/* Blog Post */
.blog-post {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #FFFFFF;
  padding: 64px 80px;
}
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.blog-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1A093F;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: left;
  width: 100%;
}
.blog-heading-sub {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #1A093F;
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: left;
  width: 100%;
}
.blog-heading-main {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #1A093F;
  line-height: 1.25;
  margin-bottom: 32px;
  text-align: left;
  width: 100%;
}
.blog-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2F2F2F;
  margin-bottom: 24px;
  text-align: left;
}
.blog-text strong {
  font-weight: 700;
}
.blog-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  margin: 32px 0;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}
