/* style.css - Premium Real Estate Landing Page */
:root {
  --primary-color: #0b2c24; /* Deep forest green for luxury real estate */
  --secondary-color: #d4af37; /* Metallic gold for accents */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-gray: #f2f2f2;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--primary-color);
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-contact {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-contact:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(11, 44, 36, 0.25), rgba(11, 44, 36, 0.25)), url('assets/images/hero.png') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--secondary-color);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-color);
}

/* Section Common */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Premium Section */
.about-premium {
  background: #152624;
  color: #fff;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: #fff;
}
.about-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-buttons {
  margin-top: 35px;
  display: flex;
  gap: 15px;
}
.btn-gold {
  display: inline-block;
  background: #c19b5e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}
.btn-gold:hover {
  background: #a88349;
}
.btn-white {
  display: inline-block;
  background: #fff;
  color: #152624;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}
.btn-white:hover {
  background: #eee;
}

/* Highlights Section */
.highlights {
  background: #1a2b29; /* Dark premium background */
  color: #fff;
  overflow: hidden;
}
.highlight-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.highlight-images {
  position: relative;
  height: 500px;
}
.img-box {
  position: absolute;
  width: 70%;
  border-radius: 8px;
  z-index: 2;
}
.img-box img {
  width: 100%;
  border-radius: 8px;
  display: block;
  position: relative;
  z-index: 3;
}
.img-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  z-index: 1;
}
.img-box-1 {
  top: 0;
  left: 0;
}
.img-box-2 {
  bottom: 0;
  right: 0;
  z-index: 4;
}
.img-box-2 .img-frame {
  top: auto;
  left: auto;
  bottom: -15px;
  right: -15px;
}

.highlight-content .pre-title {
  color: #ccc;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.highlight-content h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #fff;
}
.highlight-list {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}
.highlight-list li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  color: #ddd;
}
.highlight-list li i {
  color: #d4af37; /* Gold checkmark */
  margin-right: 15px;
  font-size: 1.2rem;
}
.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}
.btn-outline:hover {
  background: #fff;
  color: #1a2b29;
}

/* Pricing / Configurations */
.pricing {
  background: #0d1b1a; /* Dark premium */
}
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.pricing-card {
  background: #112322;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  width: calc(50% - 15px);
  min-width: 350px;
  box-shadow: inset 0 0 0 5px #112322, inset 0 0 0 6px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.8);
}
.pricing-card::before, .pricing-card::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--secondary-color);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.pricing-card:hover::before, .pricing-card:hover::after {
  opacity: 1;
}
.pricing-card::before {
  top: 10px; left: 10px;
  border-right: none; border-bottom: none;
}
.pricing-card::after {
  bottom: 10px; right: 10px;
  border-left: none; border-top: none;
}
.residence-type {
  color: var(--secondary-color);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.pricing-card h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
}
.price-val {
  color: var(--secondary-color);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.size-val {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 35px;
}
.btn-outline-gold {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background: transparent;
  transition: all 0.3s;
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--secondary-color);
}

/* Amenities Section */
.amenities {
  background: url('assets/images/clubhouse.png') center/cover fixed;
  color: var(--text-light);
  position: relative;
}

.amenities::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 44, 36, 0.85);
}

.amenities .container {
  position: relative;
  z-index: 1;
}

.amenities .section-title h2 {
  color: var(--text-light);
}

.amenities .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.amenity-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.amenity-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.amenity-item h4 {
  color: var(--text-light);
  font-family: var(--font-secondary);
  font-size: 1.1rem;
}

/* Floor Plans */
.floor-plans {
  background: var(--bg-gray);
}
.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.floor-plan-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 40px 20px;
  text-align: center;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.floor-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('assets/images/floor_plan.png') center/cover;
  filter: blur(8px);
  opacity: 0.6;
  z-index: 1;
}
.floor-plan-card-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 80%;
}
.floor-plan-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}
.floor-plan-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
  font-family: var(--font-secondary);
}
.floor-plan-card .bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: #8b6d3a;
  color: white;
  padding: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
}
.floor-plan-card .btn-interested {
  background: #8b6d3a;
  color: white;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.floor-plan-card .btn-interested:hover {
  background: #6b5228;
}

/* Virtual Visit Section */
.virtual-visit {
  position: relative;
  background: url('assets/images/clubhouse.png') center/cover fixed;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
.virtual-visit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 27, 26, 0.85); /* dark overlay */
}
.virtual-visit .container {
  position: relative;
  z-index: 1;
}
.virtual-visit-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(193, 155, 102, 0.9); /* tan/gold overlay */
  padding: 60px 80px;
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
  max-width: 900px;
  margin: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.virtual-content h2 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.btn-dark {
  background: #0d1b1a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition-smooth);
}
.btn-dark:hover {
  background: #1a3330;
}
.virtual-play {
  padding-right: 50px;
}
.play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  background: #3a5059;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  color: white;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.play-btn:hover {
  background: #2a3d45;
}
.ripple {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: ripple-anim 3s infinite linear;
  pointer-events: none;
}
.ripple-2 { animation-delay: 1s; }
.ripple-3 { animation-delay: 2s; }

@keyframes ripple-anim {
  0% { width: 100%; height: 100%; opacity: 0.8; }
  100% { width: 250%; height: 250%; opacity: 0; }
}

/* Project Gallery */
.gallery {
  background: #0d1b1a; /* Dark background similar to screenshot */
  color: #fff;
  text-align: center;
}
.gallery-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}
.gallery-subtitle {
  color: #aaa;
  margin-bottom: 40px;
}
.gallerySwiper {
  padding-bottom: 50px;
}
.gallery-img-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.gallery-img-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.gallery-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  text-align: left;
}
.gallerySwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background: #d4af37 !important;
  opacity: 1;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: #0d1b1a; /* Premium dark background */
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-animation {
  animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-image {
  flex: 1;
  background: url('assets/images/cta.jpg') center/cover;
  min-height: 400px;
  position: relative;
}
.modal-image::after {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(to right, transparent, #0d1b1a);
}
.modal-form-container {
  flex: 1;
  padding: 50px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}
.modal-close:hover {
  color: #d4af37;
}
.modal-form-container h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
}
.modal-form-container h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin-top: 10px;
}
.modal-form-container .form-group {
  position: relative;
  margin-bottom: 20px;
}
.modal-form-container .input-icon i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #d4af37;
}
.modal-form-container .input-icon input {
  padding-left: 50px !important;
}
.modal-form-container .form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 100%;
  padding: 14px 18px;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border 0.3s;
}
.modal-form-container .form-group input:focus {
  border-color: #d4af37;
  outline: none;
}
.modal-form-container .form-group input::placeholder {
  color: rgba(255,255,255,0.4) !important;
  opacity: 1;
}
.modal-form-container .phone-group {
  display: flex;
  gap: 12px;
}
.modal-form-container .phone-group select {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  cursor: pointer;
}
.modal-form-container .phone-group select option {
  background: #0d1b1a;
  color: #fff;
}
.modal-form-container .phone-group .input-icon-wrapper {
  position: relative;
  flex: 1;
}
.modal-form-container .phone-group .input-icon-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #d4af37;
}
.modal-form-container .phone-group .input-icon-wrapper input {
  padding-left: 50px !important;
}
.modal-form-container .btn {
  background: linear-gradient(135deg, #d4af37, #aa8c2c);
  color: #000;
  font-weight: bold;
  padding: 14px;
  border-radius: 6px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 10px;
  border: none;
}
.modal-form-container .btn:hover {
  background: linear-gradient(135deg, #aa8c2c, #8b6d3a);
}
#modal-message {
  margin-top: 15px;
  font-weight: 500;
  text-align: center;
}

/* Location */
.location {
  background: var(--bg-light);
}

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

.location-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-list {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.location-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.location-item:last-child {
  border-bottom: none;
}

.location-item strong {
  color: var(--primary-color);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0 30px;
}

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

.footer-info h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
}

.footer-form h3 {
  color: var(--text-light);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-secondary);
}

.footer-form .form-group input::placeholder, .footer-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Action Bar */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #c19b5e; /* Gold matching theme */
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.mobile-action-bar .action-btn {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-action-bar .action-btn:last-child {
  border-right: none;
}
.mobile-action-bar .action-btn i {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-bottom: 50px; /* Space for sticky bar */
  }
  .mobile-action-bar {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .logo-img {
    height: 32px !important;
  }
  .nav-contact {
    padding: 6px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .highlight-layout, .location-grid, .footer-grid, .about-layout {
    grid-template-columns: 1fr;
  }
  .about-buttons {
    flex-direction: column;
  }
  .about-buttons .btn-gold, .about-buttons .btn-white {
    width: 100%;
    text-align: center;
  }
  .highlight-images {
    height: 400px;
    margin-bottom: 40px;
  }
  .virtual-visit-card {
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
  }
  .virtual-play {
    padding-right: 0;
    margin-top: 40px;
  }
  .virtual-content h2 {
    font-size: 2.2rem;
  }

  /* Premium Mobile Modal Layout Tweak */
  .modal-content {
    flex-direction: column;
    max-width: 450px;
    width: 92%;
    border-radius: 16px;
  }
  .modal-image {
    min-height: 180px;
    height: 180px;
    flex: none;
    width: 100%;
  }
  .modal-image::after {
    background: linear-gradient(to bottom, rgba(13, 27, 26, 0) 30%, #0d1b1a 100%);
  }
  .modal-form-container {
    padding: 25px 24px 30px;
    flex: none;
    width: 100%;
  }
  .modal-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .modal-form-container h3::after {
    margin: 10px auto 0;
  }
  .modal-close {
    top: 15px;
    right: 15px;
    background: rgba(13, 27, 26, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff !important;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  color: #fff;
}
.whatsapp-float i {
  margin: 0;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px; /* Position above mobile action bar */
    width: 50px;
    height: 50px;
    font-size: 28px;
    right: 15px;
  }
}


