/* kHotel Website - Main Styles */
/* Inspired by Booking.com design */

:root {
  --primary-color: #003580;
  --primary-light: #0071c2;
  --secondary-color: #febb02;
  --success-color: #008009;
  --warning-color: #ff8c00;
  --danger-color: #cc0000;
  --text-dark: #262626;
  --text-light: #6b6b6b;
  --border-color: #e7e7e7;
  --background-light: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 53, 128, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 53, 128, 0.4), 0 0 30px rgba(0, 53, 128, 0.2);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

/* Animation Classes - Safe approach */
.animate-on-scroll {
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
  opacity: 1;
}

/* Only apply initial hidden state to elements that explicitly request it */
.animate-on-scroll.fade-in-up,
.animate-on-scroll.fade-in-down,
.animate-on-scroll.fade-in-left,
.animate-on-scroll.fade-in-right,
.animate-on-scroll.scale-in,
.animate-on-scroll.slide-in-up {
  opacity: 0;
}

.animate-on-scroll.fade-in-up.animate,
.animate-on-scroll.fade-in-down.animate,
.animate-on-scroll.fade-in-left.animate,
.animate-on-scroll.fade-in-right.animate,
.animate-on-scroll.scale-in.animate,
.animate-on-scroll.slide-in-up.animate {
  opacity: 1;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out forwards;
}

.slide-in-bottom {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

.rotate-in {
  animation: rotateIn 0.8s ease-out forwards;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.glow-animation {
  animation: glow 2s ease-in-out infinite;
}

/* Staggered Animation Delays */
.animate-delay-1 {
  animation-delay: 0.1s;
}
.animate-delay-2 {
  animation-delay: 0.2s;
}
.animate-delay-3 {
  animation-delay: 0.3s;
}
.animate-delay-4 {
  animation-delay: 0.4s;
}
.animate-delay-5 {
  animation-delay: 0.5s;
}
.animate-delay-6 {
  animation-delay: 0.6s;
}

/* Hover Animations */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(0, 53, 128, 0.3);
}

/* Base Styles */
body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.khotel-website {
  min-height: 100vh;
}

/* Override Odoo's default layout styles */
#wrapwrap {
  min-height: 100vh;
}

#wrap {
  min-height: calc(100vh - 60px);
}

/* Header Styles */
.khotel-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.khotel-header .navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.khotel-header .brand-text {
  margin-left: 10px;
  font-size: 1.5rem;
}

.khotel-header .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  transition: color 0.3s ease;
}

.khotel-header .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Main Content */
.khotel-main {
  flex: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.4) 0%, rgba(0, 113, 194, 0.4) 100%),
    url("/khotel_website/static/img/home_page.webp") center center/cover no-repeat;
  margin-top: 0;
  padding: 6rem 0;
}

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 53, 128, 0.1);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Simple Clean Search Form */
.search-form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
}

/* .search-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 20px 0 0;
} */

.search-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.search-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.search-form-title i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.search-form-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
  opacity: 0.8;
}

.search-form .search-inputs {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
  justify-content: center;
}

.search-field {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

/* Field Labels */
.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Simple Form Controls */
.search-form .form-control,
.search-form .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
  height: 48px;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.search-form .form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.search-button {
  flex-shrink: 0;
}

/* Simple Search Button */
.btn-search {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  height: 48px;
  background: var(--primary-color);
  border: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.2);
  cursor: pointer;
  min-width: 120px;
}

.btn-search:hover {
  background: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
  transform: translateY(-1px);
}

.btn-search:active {
  transform: translateY(0);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-search:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Form Error States */
.form-control.error,
.form-select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-form .search-inputs {
    flex-direction: column;
    gap: 1rem;
  }

  .search-field {
    max-width: none;
  }

  .search-form-container {
    padding: 1.5rem;
    border-radius: 0;
  }
}

/* Trust Badges */
.trust-badges {
  padding: 4rem 0;
  background: var(--background-light);
}

.trust-badge {
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.trust-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.05) 0%, rgba(0, 113, 194, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-badge:hover::before {
  opacity: 1;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.trust-badge:hover i {
  transform: scale(1.1);
  color: var(--primary-light);
}

.trust-badge h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.trust-badge p {
  color: var(--text-light);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Featured Properties */
.featured-properties {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* Property Cards */
.property-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
}

.property-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.05) 0%, rgba(0, 113, 194, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.property-card:hover::before {
  opacity: 1;
}

.property-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px) scale(1.02);
}

.property-image {
  position: relative;
  overflow: hidden;
}

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

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.property-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.property-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.property-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.property-title a:hover {
  color: var(--primary-color);
}

.property-type {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.property-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.feature i {
  color: var(--primary-color);
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.property-price {
  flex: 1;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-unit {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 53, 128, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, #00a8ff 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 53, 128, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 53, 128, 0.2);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  border-radius: var(--border-radius);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline-primary:hover::before {
  width: 100%;
}

.btn-outline-primary:hover {
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.2);
}

/* Form Controls */
.form-control,
.form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  font-size: 1rem;
  height: 48px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 53, 128, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 4rem 0;
  background: var(--background-light);
}

.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item i {
  color: var(--success-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.feature-item h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-light);
  margin: 0;
}

/* ===== PREMIUM $1M FOOTER DESIGN ===== */

/* Premium Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: "";
  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="premium-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-dots)"/></svg>');
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.footer-newsletter::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.newsletter-content {
  position: relative;
  z-index: 3;
}

.newsletter-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.newsletter-title i {
  color: #ffd700;
  margin-right: 1rem;
  font-size: 2.2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.newsletter-benefits {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.benefit-item i {
  color: #4ade80;
  font-size: 1rem;
}

.newsletter-form {
  position: relative;
  z-index: 3;
  margin-top: 2rem;
}

.newsletter-form-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form form {
  display: flex;
  gap: 0;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.newsletter-form form:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.newsletter-input {
  border: none;
  padding: 1.5rem 2.5rem;
  font-size: 1.1rem;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  flex: 1;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.newsletter-input:focus {
  outline: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-newsletter {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff6b6b 100%);
  border: none;
  padding: 1.5rem 3rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-newsletter:hover::before {
  left: 100%;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 50%, #ee5a24 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(238, 90, 36, 0.5);
}

.btn-newsletter i {
  margin-right: 0.8rem;
  font-size: 1rem;
}

.newsletter-privacy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter-privacy i {
  color: #4ade80;
  font-size: 1rem;
}

.newsletter-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd700;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

/* Main Footer Section */
.footer-main {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer-main::before {
  content: "";
  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="luxury-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,5 L45,25 L25,45 L5,25 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
  pointer-events: none;
}

.footer-main .container {
  position: relative;
  z-index: 2;
}

/* Brand Section */
.footer-brand {
  margin-bottom: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brand-logo i {
  font-size: 3rem;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.brand-tagline {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1e3c72;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 0.5rem;
}

.brand-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item i {
  color: #4ade80;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

/* Social Media */
.social-media {
  margin-top: 2rem;
}

.social-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1;
}

.social-link i {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

.social-link.facebook::before {
  background: linear-gradient(135deg, #3b5998 0%, #8b9dc3 100%);
}
.social-link.twitter::before {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}
.social-link.instagram::before {
  background: linear-gradient(135deg, #e4405f 0%, #f093fb 50%, #f5576c 100%);
}
.social-link.linkedin::before {
  background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}
.social-link.youtube::before {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Sections */
.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-title i {
  color: #ffd700;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

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

/* Footer Bottom */
.footer-bottom {
  background: linear-gradient(135deg, #0f1419 0%, #1a202c 100%);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 300;
}

.separator {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-right {
  text-align: right;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.payment-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.payment-icons i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-icons i:hover {
  color: #ffffff;
  transform: translateY(-2px);
  text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-newsletter {
    padding: 3rem 0;
  }

  .newsletter-title {
    font-size: 2rem;
    text-align: center;
  }

  .newsletter-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .newsletter-benefits {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .newsletter-form {
    margin-top: 2.5rem;
  }

  .newsletter-form-wrapper {
    max-width: 100%;
  }

  .newsletter-form form {
    flex-direction: column;
    border-radius: 20px;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .newsletter-input {
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }

  .btn-newsletter {
    border-radius: 15px;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .newsletter-stats {
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .brand-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .brand-name {
    font-size: 2rem;
  }

  .trust-indicators {
    justify-content: center;
    gap: 1rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-right {
    text-align: center;
    margin-top: 1rem;
  }

  .payment-methods {
    justify-content: center;
  }

  .footer-bottom-left .copyright {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .newsletter-title {
    font-size: 1.6rem;
  }

  .newsletter-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .newsletter-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .newsletter-form-responsive {
    flex-direction: column !important;
    border-radius: 20px !important;
    padding: 0.5rem !important;
  }

  .newsletter-input {
    border-radius: 15px !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
  }

  .btn-newsletter {
    border-radius: 15px !important;
    padding: 1rem 1.5rem !important;
  }

  .btn-newsletter .btn-text {
    display: inline !important;
  }
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
}

.bg-success {
  background-color: var(--success-color) !important;
}

.bg-warning {
  background-color: var(--warning-color) !important;
}

.bg-danger {
  background-color: var(--danger-color) !important;
}

.bg-info {
  background-color: var(--primary-light) !important;
}

.bg-secondary {
  background-color: var(--text-light) !important;
}

/* Layout fixes for Odoo integration */
.khotel-homepage {
  margin-top: 0;
  padding-top: 0;
}

/* Fix for covered hero section */
.khotel-website .hero-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
  z-index: 1;
}

/* Ensure main content starts immediately after header */
#wrapwrap main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Override any Odoo default spacing */
.khotel-website #wrap {
  padding-top: 0 !important;
}

/* Fix header positioning conflicts */
.khotel-header {
  position: relative !important;
  z-index: 1000;
}

/* Additional fixes for content visibility */
.khotel-homepage .hero-section {
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
}

.khotel-homepage .hero-section .container {
  max-width: 100% !important;
  padding: 0 15px !important;
}

/* Ensure search form is visible */
.search-form-container {
  display: block !important;
  visibility: visible !important;
  background: white !important;
  position: relative !important;
}

/* Ensure proper spacing between sections */
.hero-section + .trust-badges {
  margin-top: 0;
}

.trust-badges + .featured-properties {
  margin-top: 0;
}

.featured-properties + .why-choose-us {
  margin-top: 0;
}

/* Fix property footer alignment */
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* Hotel Amenities */
.hotel-amenities {
  height: 100%;
}

.amenity-card {
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
}

.amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 53, 128, 0.3);
}

.amenity-image {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-content {
  text-align: center;
  color: white;
  padding: 1rem;
  width: 100%;
}

.amenity-content i {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.amenity-content h6 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.amenity-content p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Amenity-specific styling */
.amenity-spa {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.amenity-restaurant {
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.amenity-pool {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.amenity-fitness {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

/* Guest Reviews Section */
.guest-reviews {
  background: #f8f9fa;
  padding: 80px 0;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h6 {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Hotel Statistics */
.hotel-stats {
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  color: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Special Offers */
.special-offers {
  padding: 80px 0;
  background: #f8f9fa;
}

.offer-card {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: scale(1.02);
}

.offer-romantic {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=800&h=600&fit=crop") center/cover;
}

.offer-business {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=800&h=600&fit=crop") center/cover;
}

.offer-content {
  padding: 2rem;
  color: white;
  width: 100%;
}

.offer-badge {
  background: #ff6b6b;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.offer-content h4 {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.offer-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.offer-price {
  margin-bottom: 1rem;
}

.original-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 0.5rem;
}

.sale-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
  margin-right: 0.5rem;
}

.price-unit {
  font-size: 0.9rem;
  opacity: 0.8;
}

.offer-content .btn {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.offer-content .btn:hover {
  background: white;
  transform: translateY(-2px);
}

/* About Us Page Styles */
.about-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 53, 128, 0.4), rgba(0, 113, 194, 0.4)),
    url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1920&h=1080&fit=crop") center/cover;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 53, 128, 0.1);
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  color: white;
  opacity: 0.95;
}

.our-story {
  padding: 100px 0;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #003580;
}

.story-content .lead {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.5rem;
}

.story-image img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-stats {
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  color: white;
  padding: 80px 0;
}

.mission-vision {
  padding: 100px 0;
  background: #f8f9fa;
}

.mission-card,
.vision-card {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  text-align: center;
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.mission-icon i,
.vision-icon i {
  font-size: 2rem;
  color: white;
}

.mission-card h3,
.vision-card h3 {
  color: #003580;
  margin-bottom: 1.5rem;
}

.our-services {
  padding: 100px 0;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.service-card h5 {
  color: #003580;
  margin-bottom: 1rem;
}

.room-types-showcase {
  padding: 100px 0;
  background: #f8f9fa;
}

.room-type-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.room-type-card:hover {
  transform: translateY(-5px);
}

.room-type-image {
  height: 250px;
  overflow: hidden;
}

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

.room-type-card:hover .room-type-image img {
  transform: scale(1.05);
}

.room-type-content {
  padding: 2rem;
}

.room-type-content h4 {
  color: #003580;
  margin-bottom: 1rem;
}

.room-type-features {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.room-type-features .feature {
  font-size: 0.9rem;
  color: #666;
}

.room-type-features .feature i {
  color: #003580;
  margin-right: 0.5rem;
}

/* Contact Us Page Styles */
.contact-hero {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 53, 128, 0.4), rgba(0, 113, 194, 0.4)),
    url("https://images.unsplash.com/photo-1577495508048-b635879837f1?w=1920&h=1080&fit=crop") center/cover;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 53, 128, 0.1);
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.contact-hero-subtitle {
  font-size: 1.3rem;
  color: white;
  opacity: 0.95;
}

.contact-info {
  padding: 80px 0;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.contact-icon i {
  font-size: 1.8rem;
  color: white;
}

.contact-card h4 {
  color: #003580;
  margin-bottom: 1rem;
}

.contact-departments {
  padding: 80px 0;
  background: #f8f9fa;
}

.department-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.department-card:hover {
  transform: translateY(-5px);
}

.dept-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.dept-icon i {
  font-size: 1.5rem;
  color: white;
}

.department-card h5 {
  color: #003580;
  margin-bottom: 1rem;
}

.dept-info p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #666;
}

.dept-info i {
  color: #003580;
  margin-right: 0.5rem;
  width: 16px;
}

.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-card h3 {
  color: #003580;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  padding: 2rem;
  height: 100%;
}

.contact-info-sidebar h3 {
  color: #003580;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info-sidebar .lead {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Quick Contact Methods */
.quick-contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 53, 128, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(0, 53, 128, 0.1);
  transform: translateX(5px);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.method-icon i {
  color: white;
  font-size: 1.2rem;
}

.method-info h6 {
  margin: 0 0 0.25rem 0;
  color: #003580;
  font-weight: 600;
  font-size: 0.9rem;
}

.method-info p {
  margin: 0;
  color: #495057;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us h5 {
  color: #003580;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #495057;
  font-weight: 500;
}

.feature-list li i {
  color: #28a745;
  margin-right: 0.75rem;
  font-size: 1rem;
}

/* Form Header */
.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  color: #003580;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #6c757d;
  margin: 0;
}

.contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

/* Floating Label Contact Form Styling */
.contact-form-floating {
  max-width: 100%;
}

.floating-label-group {
  position: relative;
  margin-bottom: 0;
}

.floating-input,
.floating-select,
.floating-textarea {
  width: 100%;
  padding: 0.75rem 0.75rem 0.25rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.2s ease;
  font-family: inherit;
  outline: none;
  height: 3.5rem;
}

.floating-input:focus,
.floating-select:focus,
.floating-textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.floating-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  font-size: 1rem;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.2s ease;
  background-color: transparent;
  padding: 0;
  transform-origin: left top;
}

/* When input has focus or content */
.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label,
.floating-select:focus + .floating-label,
.floating-select:not([value=""]) + .floating-label,
.floating-textarea:focus + .floating-label,
.floating-textarea:not(:placeholder-shown) + .floating-label,
.floating-label.floating-active {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: #6366f1;
  background-color: #fff;
  padding: 0 0.25rem;
  transform: scale(1);
}

/* Special handling for select with value */
.floating-select:valid:not([value=""]) + .floating-label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: #6366f1;
  background-color: #fff;
  padding: 0 0.25rem;
}

.floating-textarea {
  resize: vertical;
  min-height: 100px;
  height: auto;
  font-family: inherit;
}

.floating-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
  cursor: pointer;
}

/* Ensure proper spacing for floating labels */
.floating-label-group {
  margin-bottom: 1rem;
}

/* Captcha Section */
.captcha-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.captcha-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
}

/* Send Message Button */
.btn-send-message {
  width: 100%;
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-send-message:hover {
  background: linear-gradient(135deg, #5f4fcf 0%, #9085e8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.btn-send-message:active {
  transform: translateY(0);
}

.btn-send-message i {
  font-size: 0.9rem;
  color: #ffd700;
}

/* Form Group Spacing */
.contact-form-floating .form-group {
  margin-bottom: 0;
}

/* Consistent spacing for all form elements */
.contact-form-floating .mb-3 {
  margin-bottom: 1rem !important;
}

/* Remove extra spacing from floating label groups */
.floating-label-group {
  margin-bottom: 0;
}

/* Ensure row spacing is consistent */
.contact-form-floating .row {
  margin-bottom: 0;
}

.contact-form-floating .row .col-md-6:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .g-recaptcha {
    transform: scale(0.8);
  }

  .contact-form-floating .floating-input,
  .contact-form-floating .floating-select,
  .contact-form-floating .floating-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .floating-label {
    font-size: 0.9rem;
  }

  .floating-input:focus + .floating-label,
  .floating-input:not(:placeholder-shown) + .floating-label,
  .floating-select:focus + .floating-label,
  .floating-select:not([value=""]) + .floating-label,
  .floating-textarea:focus + .floating-label,
  .floating-textarea:not(:placeholder-shown) + .floating-label,
  .floating-label.floating-active {
    font-size: 0.7rem;
  }
}

.map-section {
  margin-top: 80px;
}

.map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.emergency-contact {
  padding: 60px 0;
  background: #f8f9fa;
}

.emergency-card {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.emergency-card h4 {
  margin-bottom: 0.5rem;
}

.emergency-card i {
  margin-right: 0.5rem;
}

.emergency-card .btn-danger {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  font-weight: 600;
}

.emergency-card .btn-danger:hover {
  background: white;
  color: #dc3545;
}

.emergency-btn {
  white-space: nowrap;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
  .emergency-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

/* Desktop and larger screens - ensure single line layout */
@media (min-width: 992px) {
  .search-form .search-inputs {
    flex-wrap: nowrap;
  }

  .search-field {
    min-width: 160px;
    max-width: 200px;
  }
}

/* Tablet screens - allow some wrapping if needed */
@media (min-width: 769px) and (max-width: 991px) {
  .search-form-container {
    padding: 2rem;
    max-width: 800px;
  }

  .search-form .search-inputs {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    grid-template-areas:
      "room-type check-in check-out"
      "adults children search-btn";
  }

  .search-field:nth-child(1) {
    grid-area: room-type;
  }
  .search-field:nth-child(2) {
    grid-area: check-in;
  }
  .search-field:nth-child(3) {
    grid-area: check-out;
  }
  .search-field:nth-child(4) {
    grid-area: adults;
  }
  .search-field:nth-child(5) {
    grid-area: children;
  }
  .search-button {
    grid-area: search-btn;
  }

  .search-form-container .floating-input {
    padding: 0.9rem 0.9rem 0.9rem 2.3rem;
  }

  .btn-search {
    padding: 0.9rem 2rem;
    height: 52px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .search-form-container {
    padding: 1.5rem;
    margin: 0 1rem;
    border-radius: 16px;
  }

  .search-form .search-inputs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .search-form-header {
    margin-bottom: 1.5rem;
  }

  .search-form-title {
    font-size: 1.3rem;
  }

  .search-form-subtitle {
    font-size: 0.9rem;
  }

  .search-field {
    min-width: 100%;
    max-width: 100%;
  }

  .search-form-container .floating-input {
    padding: 1.2rem 1rem 1.2rem 2.5rem;
    font-size: 1.1rem;
  }

  .search-form-container .floating-label {
    font-size: 1.1rem;
    left: 2.5rem;
  }

  .search-form-container .floating-input:focus + .floating-label,
  .search-form-container .floating-input:not(:placeholder-shown) + .floating-label,
  .search-form-container .floating-input:valid + .floating-label,
  .search-form-container .floating-label.floating-active {
    transform: translateY(-3rem) scale(0.85);
  }

  .search-button {
    align-self: stretch;
    margin-top: 0.5rem;
  }

  .btn-search {
    width: 100%;
    padding: 1.2rem;
    height: 60px;
    font-size: 1.2rem;
  }

  .property-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .search-form-container {
    padding: 1rem;
  }
}
