/* HotelRanker - Premium Casino Hotel Information for Poland */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --accent-color: #e74c3c;
  --gold-color: #f39c12;
  --text-light: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #7f8c8d;
  --border-color: #bdc3c7;
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  --gradient-gold: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  padding-top: 20px; /* Account for fixed navbar */
}

/* Responsive Typography */
h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* Fix Bootstrap's font-size issue */
html {
  font-size: 16px !important;
}

/* Responsive font sizing */
@media (max-width: 768px) {
  html {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px !important;
  }
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-light);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: var(--gradient-gold);
  color: var(--text-dark);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

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

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Hero Section */
.luxury-hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  color: var(--text-light);
}

.hero-subtitle {
  display: block;
  font-size: 18px;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-main {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  display: block;
  font-size: 24px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-light);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.8;
}

/* Navigation */
.hotelranker-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hotelranker-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hotelranker-navbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hotelranker-navbar-logo {
  height: 40px;
  width: auto;
}

.hotelranker-navbar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.hotelranker-navbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hotelranker-nav-link-pill {
  color: var(--text-light);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hotelranker-nav-link-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.hotelranker-nav-link-cta {
  background: var(--gradient-accent);
  color: var(--text-light);
  font-weight: 600;
}

.hotelranker-nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hotelranker-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 1001;
}

.hotelranker-navbar-toggle-bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hotelranker-navbar-toggle.active .hotelranker-navbar-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hotelranker-navbar-toggle.active .hotelranker-navbar-toggle-bar:nth-child(2) {
  opacity: 0;
}

.hotelranker-navbar-toggle.active .hotelranker-navbar-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Featured Hotels Section */
.featured-hotels {
  padding: 100px 0;
  background: #f8fafc;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.hotel-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.hotel-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.hotel-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.hotel-content {
  padding: 30px;
}

.hotel-header {
  margin-bottom: 20px;
}

.hotel-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hotel-location {
  color: var(--text-muted);
  font-size: 14px;
}

.hotel-location i {
  margin-right: 8px;
  color: var(--accent-color);
}

.hotel-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hotel-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.highlight-item i {
  color: var(--accent-color);
  width: 16px;
}

.hotel-amenities h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.amenity-tag {
  background: #f1f5f9;
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

.hotel-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background: white;
}

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

.feature-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon i {
  font-size: 32px;
  color: var(--text-dark);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Experience Section */
.experience-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: var(--text-light);
}

.experience-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.experience-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.experience-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

.feature i {
  color: var(--gold-color);
  font-size: 20px;
}

.experience-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-element {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.visual-element i {
  font-size: 80px;
  color: var(--gold-color);
}

/* Cities Section */
.cities-section {
  padding: 100px 0;
  background: white;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.city-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.city-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.city-icon i {
  font-size: 24px;
  color: white !important;
}

.fa-briefcase {
  color: white !important;
}

.city-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.city-card p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.5;
}

.hotel-count {
  background: var(--gradient-accent);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Guide Section */
.guide-section {
  padding: 100px 0;
  background: #f8fafc;
}

.guide-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.guide-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.guide-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.guide-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tip {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--text-dark);
}

.tip i {
  color: var(--accent-color);
  font-size: 18px;
}

.guide-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guide-icon {
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-icon i {
  font-size: 60px;
  color: white !important;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hotelranker-footer h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-color);
}

.hotelranker-footer p {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hotelranker-footer-links {
  list-style: none;
}

.hotelranker-footer-links li {
  margin-bottom: 10px;
}

.hotelranker-footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.hotelranker-footer-links a:hover {
  opacity: 1;
  color: var(--gold-color);
}

.hotelranker-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.hotelranker-footer-disclaimer {
  text-align: center;
  margin-bottom: 30px;
}

.hotelranker-navbar-home-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotelranker-footer-disclaimer p {
  margin-bottom: 10px;
}

.hotelranker-footer-disclaimer a {
  color: var(--gold-color);
  text-decoration: none;
}

/* Cookie Consent Popup */
.hotelranker-cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-heavy);
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
}

.hotelranker-cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hotelranker-cookie-text h5 {
  margin: 0 0 8px 0;
  color: var(--gold-color);
  font-size: 16px;
  font-weight: 600;
}

.hotelranker-cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

.hotelranker-cookie-text a {
  color: var(--gold-color);
  text-decoration: none;
}

.hotelranker-cookie-actions {
  flex-shrink: 0;
}

.hotelranker-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotelranker-btn-primary {
  background: var(--gradient-accent);
  color: var(--text-light);
}

.hotelranker-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hotelranker-visible {
  display: block;
}

.hotelranker-hidden {
  display: none;
}

/* Legal Pages Styles */
.hotelranker-section {
  padding: 100px 0;
  background: #ffffff;
}

.hotelranker-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotelranker-legal-section {
  margin-bottom: 40px;
}

.hotelranker-legal-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.hotelranker-legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  margin-top: 30px;
}

.feature-icon i {
  color: white !important;
}

.hotelranker-legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-top: 20px;
}

.hotelranker-legal-section p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.hotelranker-legal-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.hotelranker-legal-section li {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.hotelranker-legal-section strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Booking Inquiry Page Styles */
.booking-inquiry-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(26, 26, 46, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 46, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(26, 26, 46, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(26, 26, 46, 0.1);
}

.contact-form h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(26, 26, 46, 0.1);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.form-message-success {
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message-error {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Long word handling for mobile */
@media (max-width: 768px) {
  .hotelranker-legal-section h1,
  .hotelranker-legal-section h2,
  .hotelranker-legal-section h3,
  .hotelranker-legal-section p,
  .hotelranker-legal-section li {
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .hotelranker-legal-section h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .hotelranker-legal-section h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }

  .hotelranker-legal-section h3 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}

/* Mobile Menu Styles */
@media (max-width: 1099px) {
  .hotelranker-navbar-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hotelranker-navbar-right.active {
    right: 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hotelranker-navbar-right a {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .hotelranker-navbar-right a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .hotelranker-navbar-toggle {
    display: flex;
  }

  .hotelranker-navbar-inner {
    position: relative;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px; /* Smaller navbar on mobile */
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  .hero-main {
    font-size: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hotelranker-navbar-inner {
    padding: 15px 20px;
  }

  .hotelranker-navbar-toggle {
    display: flex;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .luxury-hero {
    padding: 100px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .experience-features {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .guide-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .guide-tips {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-main {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hotel-actions {
    flex-direction: column;
  }

  .cities-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .guide-tips {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking-inquiry-section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
  }

  .contact-icon {
    align-self: center;
  }
}
