:root {
  --primary: #2d6a4f;
  --secondary: #1d3557;
  --accent: #e63946;
  --light: #f1faee;
  --dark: #1d3557;
  --gold: #d4af37;
  --gray: #8d99ae;
  --transition: all 0.3s ease;
  --font-scale: 1;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Button Styles */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  color: var(--accent);
}

.btn-secondary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary);
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 0;
}

/* Header Styles */
header,
.contact-header,
.hotel-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav ul li.active a {
  color: var(--primary);
  font-weight: 600;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li.active a:after {
  width: 100%;
}

.header-cta .btn {
  padding: 10px 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 30px;
  padding: 8px 15px;
  width: 250px;
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 5px 10px;
  width: 100%;
  outline: none;
}

.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  z-index: 1001;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

/* Mobile Navigation Styles */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-nav-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
}

.mobile-nav-item {
  border-bottom: 1px solid #eee;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-menu.active .mobile-nav-item {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-menu.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-menu.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-item a {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45, 106, 79, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-item a:hover::before {
  left: 100%;
}

.mobile-nav-item a i {
  font-size: 1.2rem;
  margin-right: 15px;
  width: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.mobile-nav-item a span {
  font-weight: 500;
  font-size: 1rem;
}

.mobile-nav-item a:hover {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.05) 0%, rgba(45, 106, 79, 0.1) 100%);
  color: var(--primary);
  transform: translateX(5px);
}

.mobile-nav-item a:hover i {
  color: var(--secondary);
  transform: scale(1.2);
}

.mobile-nav-item.active a {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  font-weight: 600;
}

.mobile-nav-item.active a i {
  color: white;
}

.mobile-nav-item.active a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: white;
  border-radius: 2px;
}

.mobile-nav-footer {
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.mobile-contact-info {
  margin-bottom: 15px;
}

.mobile-contact-info p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  align-items: center;
}

.mobile-contact-info i {
  margin-right: 10px;
  width: 16px;
  color: var(--primary);
}

.mobile-social-links {
  display: flex;
  gap: 10px;
}

.mobile-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.mobile-social-links a:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Hero Section */
.hero,
.contact-hero,
.hotel-hero {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
  height: 90vh;
  text-align: center;
}

.contact-hero {
  background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  height: 60vh;
}

.hotel-hero {
  background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  height: 90vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero h1,
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p,
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-group label span {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.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(45,106,79,0.2);
}

/* Card Styles */
.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-img {
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: var(--secondary);
}

.card-content p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.price {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 10px 0;
}

/* Services Section */
.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  text-align: center;
  padding: 30px 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

/* Featured Section */
.featured-section {
  background-color: #f8f9fa;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Testimonials */
.testimonials,
.testimonials-section {
  background: linear-gradient(to right, var(--secondary), var(--primary));
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  opacity: 0.2;
}

.testimonials-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

.testimonials .section-title h2,
.testimonials-section .section-title h2 {
  color: white;
}

.testimonials-section .section-title:after {
  background: var(--gold);
}

.testimonials-grid,
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-content .stars {
  margin-bottom: 15px;
}

.testimonial-content .stars i {
  color: var(--gold);
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.client-avatar img,
.client-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4,
.client-info h4 {
  margin: 0;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-details p,
.client-info span {
  margin: 5px 0 0;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.8;
}

.rating-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.rating-overview .stars {
  margin-right: 10px;
}

.rating-overview .stars i {
  color: var(--gold);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 10px;
}

.blog-meta {
  display: flex;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.blog-meta span {
  margin-right: 15px;
}

.blog-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 60px 0;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
}

.newsletter-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 30px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #c1121f;
}

/* ============================================
   SCROLL TO TOP BUTTON - SIMPLE & CLEAN DESIGN
   ============================================ */

.scroll-to-top {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  width: 45px !important;
  height: 45px !important;
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 12px rgba(45, 106, 79, 0.3) !important;
  transition: all 0.3s ease !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
}

.scroll-to-top.visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.scroll-to-top:hover {
  background: var(--secondary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.4) !important;
}

.scroll-to-top:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(45, 106, 79, 0.3) !important;
}

.scroll-to-top i {
  font-size: 1rem !important;
  color: white !important;
  font-weight: bold !important;
}

/* Mobile scroll to top adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
  }
}

/* ============================================
   ENHANCED FOOTER STYLES
   ============================================ */

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2c4a 100%);
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-col {
  position: relative;
}

.footer-col h4 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
}

.footer-col p {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.7;
  color: #ddd;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col ul li a {
  color: #cdd;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-radius: 5px;
}

.footer-col ul li a i {
  margin-right: 12px;
  color: var(--accent);
  width: 20px;
  text-align: center;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  opacity: 1;
  padding-left: 10px;
  background: rgba(255,255,255,0.05);
}

.footer-col ul li a:hover i {
  color: var(--gold);
  transform: scale(1.1);
}

/* Contact Info Styles */
.contact-info li {
  display: flex;
  margin-bottom: 18px;
  align-items: flex-start;
  padding: 12px 0;
}

.contact-info i {
  margin-right: 15px;
  color: var(--accent);
  width: 20px;
  text-align: center;
  margin-top: 3px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: white;
  text-decoration: underline;
}

.phone-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-group a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.phone-group a:hover {
  color: var(--gold);
}

/* Social Links */
.social-links {
  display: flex;
  margin-top: 25px;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.social-links a:nth-child(2):hover {
  background: #e4405f; /* Instagram */
}

.social-links a:nth-child(3):hover {
  background: #ff0000; /* YouTube */
}

.social-links a:nth-child(4):hover {
  background: #1da1f2; /* Twitter */
}

/* Newsletter Styles */
.footer-newsletter {
  display: flex;
  margin-top: 25px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
}

.footer-newsletter:focus-within {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 2px var(--accent);
}

.footer-newsletter input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  color: white;
  font-size: 0.95rem;
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.7);
}

.footer-newsletter button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  min-width: 50px;
}

.footer-newsletter button:hover {
  background: #c1121f;
  transform: scale(1.05);
}

/* Trust Badges */
.trust-badges {
  margin-top: 30px;
  display: grid;
  gap: 15px;
}

.trust-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: var(--transition);
  border-left: 3px solid var(--accent);
}

.trust-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.trust-item i {
  color: var(--gold);
  margin-right: 12px;
  font-size: 1.1rem;
}

.trust-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer Quick Actions */
.footer-quick-actions {
  margin: 50px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.quick-action-item {
  text-align: center;
}

.footer-quick-actions .btn {
  width: 100%;
  max-width: 250px;
  padding: 15px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-quick-actions .btn i {
  margin-right: 8px;
}

.footer-quick-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Copyright Section */
.copyright {
  background: rgba(0,0,0,0.3);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ============================================
   FOOTER RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-quick-actions {
    grid-template-columns: 1fr;
    margin: 40px 0;
    padding: 30px 0;
  }
  
  .footer-quick-actions .btn {
    max-width: 100%;
  }
  
  .copyright-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .trust-badges {
    margin-top: 25px;
  }
  
  /* Header Responsive */
  header {
    padding: 15px 0;
  }
  
  .header-container {
    justify-content: space-between;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  nav ul {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Hero Responsive */
  .hero h1,
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero p,
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Featured Cards */
  .featured-cards {
    grid-template-columns: 1fr;
  }
  
  /* Section Title */
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  /* Header Extra Small Screens */
  header {
    padding: 12px 0;
  }
  
  .logo h1 {
    font-size: 1.3rem;
  }
  
  .mobile-menu-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  /* Hero Extra Small */
  .hero h1,
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero p,
  .hero-content p {
    font-size: 1rem;
  }
  
  /* Container */
  .container {
    padding: 0 15px;
  }
  
  /* Section Title */
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  /* Footer responsive */
  .footer-col h4 {
    font-size: 1.1rem;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 15px;
  }

  .footer-newsletter input {
    border-radius: 25px 25px 25px 25px;
    margin-bottom: 10px;
  }

  .footer-newsletter button {
    border-radius: 25px;
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   RESPONSIVE FONT SIZE ADJUSTMENTS
   ============================================ */

@media (max-width: 1200px) {
  :root {
    --font-scale: 0.95;
  }
}

@media (max-width: 992px) {
  :root {
    --font-scale: 0.9;
  }
  
  /* Giảm kích thước font cho tiêu đề trong kích thước này */
  .section-title h2 {
    font-size: calc(2rem * var(--font-scale));
  }
}

@media (max-width: 768px) {
  :root {
    --font-scale: 0.85;
  }

  /* Hiệu chỉnh các nút để không bị vỡ giao diện trên mobile */
  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Tối ưu kích thước tiêu đề */
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  h4 {
    font-size: 1.2rem;
  }
  
  /* Tối ưu giá phòng hiển thị */
  .room-price {
    font-size: 0.8rem !important;
    padding: 8px 12px !important;
  }
}

@media (max-width: 576px) {
  :root {
    --font-scale: 0.8;
  }
  
  /* Hiệu chỉnh nút và chữ trên điện thoại nhỏ */
  .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    max-width: 100%;
  }
  
  /* Tối ưu giá phòng hiển thị trên điện thoại nhỏ */
  .room-price {
    font-size: 0.75rem !important;
    padding: 6px 10px !important;
    bottom: 0.5rem !important;
    right: 0.5rem !important;
  }
  
  /* Tối ưu thẻ giá */
  .price-tag {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
  
  /* Tối ưu tiêu đề trên thẻ */
  .card-content h3, .card-content h4 {
    font-size: 1.1rem;
  }
}

/* Cải thiện hiển thị cho các thẻ giá trên mobile */
.price-tag, .room-price, .tour-price, .package-price {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* Đảm bảo nút không bị tràn ra khỏi container */
@media (max-width: 480px) {
  .btn {
    display: block;
    width: 100%;
  }
  
  .btn + .btn {
    margin-top: 0.5rem;
  }
}

/* Style nút giá đặc biệt */
.price-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  z-index: 10;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 85%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Style nút giá trên mobile */
@media (max-width: 768px) {
  .price-button {
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 5px;
  }
}

@media (max-width: 480px) {
  .price-button {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* Price wrapper / container */
.price-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  overflow: hidden;
  max-width: 90%;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.price-wrapper .price-label {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.price-wrapper .price-value {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  text-align: center;
}

/* Responsive cho price-wrapper */
@media (max-width: 768px) {
  .price-wrapper {
    top: 0.75rem;
    left: 0.75rem;
  }
  
  .price-wrapper .price-label {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
  
  .price-wrapper .price-value {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .price-wrapper {
    top: 0.5rem;
    left: 0.5rem;
    max-width: 85%;
  }
  
  .price-wrapper .price-label {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }
  
  .price-wrapper .price-value {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   TYPOGRAPHY CONTROL
   ============================================ */

/* Text size control */
.text-sm {
  font-size: 0.85rem;
}

.text-md {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
}

/* Font weight helpers */
.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Line height control */
.leading-tight {
  line-height: 1.2;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.7;
}

/* Text overflow control */
.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

.text-wrap {
  white-space: normal;
  word-break: break-word;
}

/* Mobile typography responsive */
@media (max-width: 768px) {
  .text-sm {
    font-size: 0.8rem;
  }
  
  .text-md {
    font-size: 0.9rem;
  }
  
  .text-lg {
    font-size: 1.1rem;
  }
  
  .text-xl {
    font-size: 1.3rem;
  }
  
  /* Button và label text size control */
  .btn, .label, .badge {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .text-sm {
    font-size: 0.75rem;
  }
  
  .text-md {
    font-size: 0.85rem;
  }
  
  .text-lg {
    font-size: 1rem;
  }
  
  .text-xl {
    font-size: 1.2rem;
  }
  
  /* Button và label text size control */
  .btn, .label, .badge {
    font-size: 0.8rem;
  }
}