:root {
  --primary-color: #4facfe;
  --secondary-color: #00f2fe;
  --accent-color: #1a365d;
  --light-bg: #f8fafc;
  --medium-bg: #e2e8f0;
  --bright-blue: #4299e1;
  --text-light: #000000;
  --text-dark: #000000;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.9);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* navbar heights for spacing */
  --navbar-height: 80px;
  --navbar-height-mobile: 60px;
  
  /* Responsive font scaling */
  --font-size-base: clamp(14px, 2vw, 16px);
  --font-size-h1: clamp(28px, 8vw, 56px);
  --font-size-h2: clamp(24px, 6vw, 48px);
  --font-size-h3: clamp(20px, 4vw, 32px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--medium-bg) 25%, #ffffff 50%, var(--medium-bg) 75%, var(--light-bg) 100%);
  background-attachment: fixed;
  min-block-size: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
  inline-size: 100%;
  /* push content below fixed navbar */
  padding-block-start: var(--navbar-height);
}

@media (max-width: 480px) {
  main {
    padding-block-start: var(--navbar-height-mobile);
  }
}

/* Glass Effect */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

/* Utility Classes */
.container {
  inline-size: 100%;
  max-inline-size: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 5%, 20px);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-decoration: none;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
  white-space: nowrap;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.btn-large {
  padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 36px);
  font-size: clamp(15px, 2vw, 18px);
}

/* Input and Form Styles */
input,
select,
textarea {
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* Header Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--navbar-height);
  background: rgba(79, 172, 254, 0.4);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(12px, 4%, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo .logo-link {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  color: var(--primary-color);
  text-decoration: none;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.nav-logo .logo-link:hover {
  transform: scale(1.05);
}

.nav-logo .logo-image {
  height: clamp(40px, 8vw, 60px);
  width: auto;
  max-width: 250px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #4facfe;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu li {
  margin: 0;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* Home Styles */
.home {
  padding: 0;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/header.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 0 clamp(15px, 5%, 20px);
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.hero-subtitle {
  font-size: var(--font-size-h2);
  color: white;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.features {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: var(--font-size-h2);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-dark);
  opacity: 0.8;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.text-center {
  text-align: center;
}

/* Rooms Page Styles */
.rooms-page {
  padding-top: var(--navbar-height);
  width: 100%;
  overflow-x: hidden;
}

.page-header {
  padding: clamp(40px, 8vw, 60px) clamp(20px, 4%, 40px);
  text-align: center;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
  width: 100%;
}

.page-header h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: clamp(8px, 1.5vw, 15px);
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 50px);
  margin: clamp(40px, 8vw, 60px) auto;
  max-width: 1200px;
  padding: 0 clamp(20px, 4%, 40px);
  width: 100%;
}

.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(79, 172, 254, 0.25);
}

.room-image {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.room-card:hover .room-image img {
  transform: scale(1.08);
}

.room-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.room-price .price {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--secondary-color);
}

.room-price .per-night {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 500;
}

.room-content {
  padding: clamp(20px, 3vw, 30px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-content h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
}

.room-description {
  margin: 0;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.room-details {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  margin: 12px 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-size: 0.9rem;
}

.room-features {
  margin-top: auto;
}

.room-features h4 {
  margin: 0 0 8px 0;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
}

.room-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.room-features li {
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.8;
  padding: 2px 0;
}

.room-features li:before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: bold;
}

/* About Page Styles */
.about-page {
  padding-top: var(--navbar-height);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}

.about-story h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-story p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.ceo-biography {
  margin: 4rem 0;
}

.ceo-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.ceo-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.ceo-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.ceo-content h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.ceo-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-values {
  margin: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-location {
  margin: 4rem 0;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.facilities-grid h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.facilities-grid ul {
  list-style: none;
  padding: 0;
}

.facilities-grid li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.facilities-grid li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Contact Page Styles */
.contact-page {
  padding-top: var(--navbar-height);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem auto;
  max-width: 1200px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-card {
  padding: 1.5rem;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form {
  padding: 2rem;
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.map-container {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Gallery Page Styles */
.gallery-page {
  padding-top: var(--navbar-height);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-buttons button {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: var(--primary-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Booking Page Styles */
.booking-page {
  padding-top: var(--navbar-height);
}

.booking-form {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
}

.booking-form h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.payment-method-selection {
  margin: 2rem 0;
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-option.active {
  border-color: var(--primary-color);
  background: rgba(79, 172, 254, 0.1);
}

.radio-option input[type="radio"] {
  margin: 0;
}

.booking-summary {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 10px;
}

.booking-summary h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.summary-details {
  display: grid;
  gap: 0.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.summary-item.total {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.booking-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Payment Page Styles */
.google-payment-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.payment-container {
  max-width: 1000px;
  width: 100%;
  padding: 2rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.summary {
  background: rgba(248, 250, 252, 0.8);
  padding: 2rem;
  border-radius: 10px;
}

.summary h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.summary p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.payment-action {
  text-align: center;
}

.payment-action h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.instruction {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.payment-btn {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
}

.receipt-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.receipt-header {
  margin-bottom: 2rem;
}

.receipt-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.receipt-header h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.transaction-id {
  color: var(--accent-color);
  font-weight: bold;
}

.receipt-details {
  text-align: left;
  margin-bottom: 2rem;
}

.receipt-details h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.receipt-row.total-row {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.receipt-actions {
  margin-bottom: 2rem;
}

.whatsapp-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128c7e;
}

.secondary-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content,
  .payment-grid,
  .ceo-container,
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
  }

  .whatsapp-buttons {
    flex-direction: column;
  }

  .secondary-actions {
    flex-direction: column;
  }
}