:root {
  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #25D366;
  --light: #f8f9ff;
  --dark: #333;
  --text: #666;
  --white: #fff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Section Styles - Enhanced */
section {
  padding: 80px 0;
  position: relative;
  margin-top: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons - Improved */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Quick Action Buttons - Fixed positioning */
.quick-actions {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.quick-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.call-btn {
  background: #007bff;
  color: var(--white);
}

.whatsapp-btn {
  background: var(--accent);
  color: var(--white);
}

.quick-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.quick-actions.hidden {
  display: none;
}

/* Navigation - Improved performance */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  will-change: transform, backdrop-filter;
}

.navbar.sticky {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-around; /* Fixed from space-around */
  align-items: center;
  height: 70px;
}

.nav-logo h2 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-logo a {
  text-decoration: none;
  color: inherit;
}

.nav-logo i {
  margin-right: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.5rem;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Logo variants */
.logo-full {
  display: inline;
}

.logo-short {
  display: none;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
  opacity: 0.8;
}

.scroll-top.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Hero Section - Optimized */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/herobackround.jpg');
  z-index: 1;
  background-size: cover;
  background-position: center bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateZ(0);
} 

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 30px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Services Preview - Enhanced */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.service-features i {
  font-size: 0.75rem;
}

/* Fleet Section - Improved */
.fleet {
  background: var(--light);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vehicle-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  background: var(--white);
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.vehicle-info {
  padding: 1.5rem;
}

.vehicle-info h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.vehicle-price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.vehicle-specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.vehicle-specs i {
  color: var(--primary);
}

.vehicle-info p {
  color: var(--text);
  margin-bottom: 1rem;
}

.fbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.fbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4); /* Fixed color value */
}

.fbtn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.fbtn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.fbtn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Testimonials - Improved */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonial-content p {
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: var(--text);
  font-size: 0.875rem;
}

/* About Section - Restructured */
.about {
  background: var(--white);
  margin-top: 50px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .section-header {
  text-align: left; /* Fixed from start */
  margin-bottom: 2rem;
}

.about-description p {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.why-choose-us {
  margin-top: 2.5rem;
}

.why-choose-us h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.3rem;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.875rem;
  color: var(--text);
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Stats Section - Enhanced */
.stats {
  background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 74, 173, 0.8)), 
              url('../images/roomheroimage.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Team Section - Improved */
.team {
  background: var(--light);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.member-img {
  width: 220px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid var(--light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-position: top;
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.team-member p {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Services Detailed - Enhanced */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) > * {
  direction: ltr;
}

.service-content h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-content h3 i {
  color: var(--primary);
}

.service-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  padding: 0.5rem 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list i {
  color: #28a745;
  font-size: 0.875rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-label {
  color: var(--text);
  font-size: 0.875rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.service-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.03);
}

/* Contact Section - Improved */

.contact{
  background: var(--light);
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary);
}

.contact-form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Location Section */
.section-location {
  padding: 5rem 0;
}

.map-container {
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer - Enhanced */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0.2rem 0;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #ccc;
}

/* Footer contact links styling */
.footer-contact a {
  color: #ccc !important;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary) !important;
}

.footer-contact a:visited {
  color: #ccc !important;
}

.footer-contact a:active {
  color: var(--primary) !important;
}

.footer-contact p a[href^="tel:"],
.footer-contact p a[href^="mailto:"] {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact p a[href^="tel:"]:hover,
.footer-contact p a[href^="mailto:"]:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #555;
  color: #ccc;
  font-size: 0.875rem;
}

/* Animation Classes - Fixed */
.animate-slide-up, .animate-fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animate-slide-up.animate-in {
  animation: slideUp 0.6s ease-out;
}

.animate-fade-in.animate-in {
  animation: fadeIn 0.6s ease-out;
}

/* POPUP background overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  animation: fadeIn 0.3s ease-in-out;
}

/* POPUP content box */
.popup-content {
  background: linear-gradient(to bottom right, #ffffff, #f2f2f2);
  margin: 10% auto;
  padding: 25px 20px;
  width: 90%;
  max-width: 420px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  font-family: "Segoe UI", sans-serif;
  animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
  from { 
    transform: scale(0.9); 
    opacity: 0; 
  }
  to { 
    transform: scale(1); 
    opacity: 1; 
  }
}

/* CLOSE button */
.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

.close:hover {
  color: #000;
}

/* OWNER box styling */
.owner-box {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fafafa;
  transition: transform 0.2s;
}

.owner-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* WHATSAPP booking button */
.whatsapp-book-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-book-btn:hover {
  background-color: #1ebe5d;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* RESPONSIVE for mobile */
@media (max-width: 600px) {
  .popup-content {
    width: 95%;
    margin: 20% auto;
    padding: 20px 15px;
  }

  .close {
    font-size: 24px;
    top: 8px;
    right: 10px;
  }

  .whatsapp-book-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px;
  }
}

/* Animation Classes - Prevent FOUC and ensure immediate visibility */
.animate-slide-up, .animate-fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Only animate when triggered */
.animate-slide-up.animate-in {
  animation: slideUp 0.6s ease-out;
}

.animate-fade-in.animate-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
  }
  to { 
    opacity: 1; 
  }
}

/* Responsive Design - Enhanced */
@media (max-width: 1024px) {
  .about-content,
  .contact-content,
  .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-item:nth-child(even) {
    direction: ltr;
  }
  
  .about-text .section-header,
  .service-content h3 {
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .service-features li {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 67%;
    max-width: 300px;
    justify-content: center;
  }

  .quick-actions {
    bottom: 100px;
    left: 20px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
  
  .logo-full {
    display: none;
  }
  
  .logo-short {
    display: inline;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .service-card,
  .contact-form-container {
    padding: 1.5rem;
  }

  .quick-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .stat-item p {
    font-size: 1rem;
  }

  .about-description p {
    text-align: center;
  }

  .why-choose-us h3 {
    text-align: center;
    font-size: 1.3rem;
  }
}

/* Animation Classes - Optimized */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Utility Classes - Added */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 1.25rem;
}

.mb-30 {
  margin-bottom: 1.875rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mt-30 {
  margin-top: 1.875rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* Print Styles */
@media print {
  .navbar,
  .quick-actions,
  .scroll-top,
  .hero-scroll {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }
  
  a {
    color: #000 !important;
    text-decoration: none !important;
  }
  
  .btn {
    display: none !important;
  }
  
  section {
    padding: 20px 0 !important;
    page-break-inside: avoid;
  }
  
  .hero {
    height: auto !important;
    min-height: auto !important;
  }
}

/* Rooms Style */

/* Hero Section */
.rhero-section {
  position: relative;
  background: linear-gradient(rgba(29, 78, 216, 0.3), rgba(29, 78, 216, 0.3)), 
              url('https://images.unsplash.com/photo-1596178067639-5c6e68aea6dc?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcontainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.rhero-content {
  padding: 5rem 0;
}

.rhero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.rhero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.rcta-button {
  background-color: white;
  color: var(--primary);
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.rcta-button:hover {
  background-color: #dbeafe;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Rooms Section */
.rooms-section, .Homestay-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.Homestay-section {
  background-color: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.room-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.room-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.room-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-image {
  transform: scale(1.05);
}

.room-content {
  padding: 1.5rem;
}

.room-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.room-price {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.location-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.location-tag {
  background-color: #dbeafe;
  color: #1e40af;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.book-button {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.book-button:hover {
  background-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Resort Section */
.reresort-section {
  padding: 4rem 0;
  background-color: white;
}

.recontainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.resection-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937;
}

.reresort-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.reresort-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.reresort-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.reresort-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reresort-card:hover .reresort-image {
  transform: scale(1.05);
}

.recard-content {
  padding: 1.5rem;
}

.reresort-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.reresort-price {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.relocation-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (min-width: 768px) {
  .rooms-grid, .reresort-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rooms-grid, .reresort-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .rhero-title {
    font-size: 2.5rem;
  }
  
  .rhero-description {
    font-size: 1.125rem;
  }
  
  .rhero-content {
    padding: 3rem 0;
  }

  .section-title, .resection-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .rhero-title {
    font-size: 2rem;
  }
  
  .rhero-description {
    font-size: 1rem;
  }

  .section-title, .resection-title {
    font-size: 1.75rem;
  }
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 10px;
  box-sizing: border-box;
}

.booking-modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  margin: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
  line-height: 1;
}

.close:hover {
  color: #000;
}

.modal-content h2 {
  margin-bottom: 30px;
  color: #333;
  text-align: center;
  font-size: 1.8rem;
  padding-right: 40px;
}

.modal-content label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.modal-content input:focus,
.modal-content select:focus {
  border-color: #4caf50;
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.modal-content button {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-height: 50px;
}

.modal-content button:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

.modal-content button:active {
  transform: translateY(0);
}

/* Tablet Styles */
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 30px 25px;
    margin: 10px;
    max-height: 85vh;
    border-radius: 12px;
  }
  
  .modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding-right: 35px;
  }
  
  .close {
    font-size: 24px;
    top: 12px;
    right: 15px;
  }
  
  .modal-content input,
  .modal-content select {
    padding: 14px 12px;
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .modal-content button {
    padding: 16px 25px;
    font-size: 16px;
    min-height: 52px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
  .booking-modal {
    padding: 5px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .modal-content {
    padding: 25px 20px;
    margin: 0;
    max-height: 90vh;
    border-radius: 10px;
    width: calc(100% - 10px);
  }
  
  .modal-content h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-right: 30px;
  }
  
  .close {
    font-size: 22px;
    top: 10px;
    right: 12px;
    padding: 8px;
  }
  
  .modal-content label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .modal-content input,
  .modal-content select {
    padding: 14px 12px;
    font-size: 16px;
    margin-bottom: 16px;
    border-radius: 6px;
  }
  
  .modal-content button {
    padding: 18px 20px;
    font-size: 15px;
    min-height: 54px;
    border-radius: 6px;
  }
}

/* Extra Small Mobile Styles */
@media screen and (max-width: 360px) {
  .modal-content {
    padding: 20px 15px;
    max-height: 92vh;
  }
  
  .modal-content h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  
  .close {
    font-size: 20px;
    top: 8px;
    right: 10px;
  }
  
  .modal-content input,
  .modal-content select {
    padding: 12px 10px;
    margin-bottom: 14px;
  }
  
  .modal-content button {
    padding: 16px 15px;
    font-size: 14px;
    min-height: 50px;
  }
}

/* Landscape Mobile Orientation */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .booking-modal {
    align-items: flex-start;
    padding-top: 10px;
  }
  
  .modal-content {
    max-height: 95vh;
    padding: 20px 25px;
  }
  
  .modal-content h2 {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .modal-content input,
  .modal-content select {
    padding: 10px 12px;
    margin-bottom: 12px;
  }
  
  .modal-content button {
    padding: 12px 20px;
    min-height: 44px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .modal-content input,
  .modal-content select {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .modal-content button {
    min-height: 48px;
  }
  
  .close {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}