@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Playwrite+DE+SAS:wght@100..400&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #E67E22;
  --primary-orange-dark: #D35400;
  --primary-orange-light: #F39C12;
  --primary-turquoise: #1ABC9C;
  --primary-turquoise-dark: #16A085;
  --dark-bg: #0F172A;
  --light-bg: #FFF9F0;
  --card-bg: #FFFFFF;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --gold: #F1C40F;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

body {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEFE0 100%);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-orange);
  box-shadow: 0 0 12px rgba(230, 126, 34, 0.3);
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.05);
  border-color: var(--primary-turquoise);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFE8C5, var(--primary-orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--primary-orange-light);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

.nav-links li a {
  color: #FFE8CF;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 0;
  transition: var(--transition);
  position: relative;
  font-size: 1rem;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-turquoise));
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover { color: var(--primary-orange-light); }

.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 0.4rem; }
.dropdown > a i { font-size: 0.75rem; transition: transform 0.3s; }
.dropdown:hover > a i, .dropdown.active > a i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(20, 30, 45, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 0.8rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  list-style: none;
  border: 1px solid rgba(230, 126, 34, 0.3);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu, .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  color: #F0E6D2;
  transition: var(--transition);
}

.dropdown-menu li a i { width: 24px; color: var(--primary-orange); }
.dropdown-menu li a:hover {
  background: rgba(230, 126, 34, 0.2);
  color: white;
  padding-left: 2rem;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, #0F2027 0%, #1A2F35 50%, #0F2027 100%);
  overflow: hidden;
  border-radius: 0 0 100px 100px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg) scale(0.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 60px;
  color: #FFE8C5;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 150, 0.2);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hero-badge i { color: var(--primary-orange); }

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary-orange-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  color: white;
  padding: 16px 36px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 36px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounceDown 2s infinite;
}

.hero-scroll i { font-size: 1.2rem; }

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== CONTACT PAGE ========== */
.contact-page {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: -40px auto 0;
  padding: 0 2rem 4rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(2px);
  border-radius: 64px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}

/* Left Panel */
.contact-hero {
  background: linear-gradient(145deg, #0F2027, #1A3A40);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: slowRotate 25s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-wrapper {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 3px solid rgba(255, 215, 150, 0.3);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.logo-wrapper:hover { transform: scale(1.03); border-color: var(--primary-orange); }
.logo-wrapper img { width: 140px; height: auto; border-radius: 50%; transition: var(--transition); }

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #FFE8C5;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 2;
}

.tagline {
  color: rgba(255, 245, 200, 0.7);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--primary-orange-light); }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

.contact-cta {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 28px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover { transform: scale(1.05); background: #20b859; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 28px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-call:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); }

/* Right Panel */
.contact-details {
  padding: 3rem 3rem;
  background: white;
}

.contact-header h2 {
  font-size: 2.2rem;
  color: var(--primary-orange-dark);
  margin-bottom: 0.3rem;
}

.subhead {
  color: var(--text-light);
  border-left: 3px solid var(--primary-turquoise);
  padding-left: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #FEF9F2;
  padding: 1rem 1.5rem;
  border-radius: 80px;
  transition: var(--transition);
  border: 1px solid rgba(230, 126, 34, 0.1);
}

.contact-method:hover {
  transform: translateX(8px);
  background: white;
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-orange);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
}

.method-info h3 { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.method-info a { color: var(--primary-orange-dark); text-decoration: none; font-weight: 600; transition: var(--transition); }
.method-info a:hover { color: var(--primary-orange); }

.divider {
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-turquoise));
  margin: 1.5rem 0;
  border-radius: 2px;
}

.services-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-title i { color: var(--primary-orange); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  list-style: none;
  margin-bottom: 2rem;
}

.services-grid li {
  background: #F0F7F4;
  padding: 0.8rem 1rem;
  border-radius: 60px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  transition: var(--transition);
}

.services-grid li i { color: var(--primary-orange); width: 20px; }
.services-grid li:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-3px);
}
.services-grid li:hover i { color: white; }

.cta-contact {
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.08), rgba(230, 126, 34, 0.08));
  border-radius: 32px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(230, 126, 34, 0.15);
}

.cta-contact p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cta-contact p i { color: var(--primary-orange); margin-right: 8px; }

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover { transform: scale(1.04); background: #20b859; }

/* ========== MAPS SECTION ========== */
.maps-section {
  background: #0F2F28;
  border-radius: 48px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.maps-section:hover { transform: translateY(-5px); }

.maps-container {
  padding: 2rem;
  background: linear-gradient(115deg, #05221b, #0A2F26);
  text-align: center;
}

.maps-title {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.maps-title i { color: var(--primary-orange); }

.maps-sub {
  color: rgba(255, 245, 210, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.map-wrapper {
  border-radius: 32px;
  overflow: hidden;
  border: 3px solid var(--primary-orange);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  display: block;
}

.maps-footer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 245, 200, 0.6);
}

/* ========== BOOKING FORM ========== */
.booking-form-section {
  background: linear-gradient(125deg, #0E2F24, #041911);
  border-radius: 48px;
  padding: 48px;
  color: white;
  box-shadow: var(--shadow-lg);
}

.booking-header {
  text-align: center;
  margin-bottom: 30px;
}

.booking-header h2 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.booking-header h2 i { color: var(--primary-orange); }

.booking-header p { color: rgba(255, 255, 255, 0.6); }

.booking-form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group { flex: 1; min-width: 200px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-group label i { color: var(--primary-orange); margin-right: 6px; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border-radius: 60px;
  border: none;
  background: #FEF8F0;
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  border: none;
  padding: 16px 32px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  color: white;
  margin-top: 30px;
  width: 100%;
  transition: var(--transition);
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.4);
}

.booking-feedback { margin-top: 12px; text-align: center; font-size: 0.95rem; }

/* ========== FOOTER ========== */
.footer {
  background: #0A1510;
  color: #EDE3D4;
  position: relative;
  overflow: hidden;
  border-radius: 48px 48px 0 0;
  margin-top: 40px;
}

.footer-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-fill { fill: #0A1510; }

.footer-main { padding: 40px 48px 30px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(230, 126, 34, 0.3);
  transition: var(--transition);
}

.footer-logo img:hover {
  transform: scale(1.08);
  border-color: var(--primary-orange);
}

.footer-logo span {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5BC0A8, var(--primary-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand p { color: #A8B5B0; line-height: 1.8; font-size: 0.95rem; max-width: 320px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: #CFD8D1;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-orange);
  color: #0A1510;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h4 i { color: var(--primary-orange); }

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: #A8B5B0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-col ul li a i {
  font-size: 0.6rem;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-orange);
  transform: translateX(6px);
}

.footer-col ul li a:hover i { transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--primary-orange);
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
}

.footer-contact-item a,
.footer-contact-item span {
  color: #CFD8D1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover { color: var(--primary-orange); }

.footer-newsletter-text {
  color: #A8B5B0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 60px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease;
}

.footer-newsletter-form:focus-within { border-color: var(--primary-orange); }

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}

.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.3); }

.footer-newsletter-form button {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  border: none;
  padding: 12px 20px;
  border-radius: 60px;
  color: #0A1510;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.footer-news-feedback { margin-top: 10px; font-size: 0.9rem; min-height: 24px; }

.footer-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-note i { color: var(--primary-orange); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { color: #8A9B94; font-size: 0.9rem; }
.footer-bottom p strong { color: white; }
.footer-bottom p i { display: inline-block; animation: heartBeat 1.5s ease-in-out infinite; }

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #8A9B94;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--primary-orange); }
.footer-bottom-links a:hover::after { width: 100%; }

.back-home {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--primary-orange);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
  transition: var(--transition);
}

.back-home:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(145deg, #0F172A, #1A2635);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 1.5rem;
    transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--primary-orange);
  }
  .nav-links.active { right: 0; }
  .nav-links li { width: 100%; text-align: center; }
  .dropdown { width: 100%; }
  .dropdown > a { justify-content: center; }
  .dropdown-menu {
    position: static;
    background: rgba(30, 40, 55, 0.95);
    opacity: 1;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease, visibility 0.2s;
    margin-top: 0.5rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border: none;
  }
  .dropdown.active .dropdown-menu {
    visibility: visible;
    transform: scaleY(1);
    max-height: 300px;
    padding: 0.5rem 0;
  }
  .brand-name { font-size: 1.1rem; }

  .hero-content h1 { font-size: 2.8rem; }
  .contact-page { padding: 0 1rem 2rem; }
  .contact-details { padding: 2rem 1.5rem; }
  .contact-hero { padding: 2rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-main { padding: 30px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px; }
  .footer-social { justify-content: center; }
  .footer-logo { justify-content: center; }
  .footer-brand p { max-width: 100%; }
  .footer-col h4 { justify-content: center; }
  .footer-col ul li a { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .footer-newsletter-form { flex-direction: row; }
  .booking-form-section { padding: 30px 20px; }
  .maps-container { padding: 1.5rem; }
  .map-wrapper iframe { height: 250px; }
  .contact-cta { flex-direction: column; width: 100%; }
  .contact-cta a { justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .footer-newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 10px;
  }
  .footer-newsletter-form input {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 60px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-newsletter-form button { width: 100%; padding: 14px; }
  .footer-social a { width: 48px; height: 48px; font-size: 1.3rem; }
}