/* ==========================================================
   ELITE HOTEL ESCORTS – ULTRA LUXURY STYLE.CSS
   Black Marble + Liquid Gold | Mobile-First | SEO-Optimized
   ========================================================== */

/* ==== RESET & BASE ==== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cinzel', 'Georgia', serif;
  line-height: 1.6;
  color: #eee;
  background: #0a0a0a;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ==== LAYOUT ==== */
.container { width: 90%; max-width: 1200px; margin: auto; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.grid-3 { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ==== TYPOGRAPHY ==== */
h1, h2, h3 { font-weight: 700; letter-spacing: 0.5px; }
h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; text-align: center; margin-bottom: 2.5rem; color: #d4af37; }
h3 { font-size: 1.5rem; color: #fff; }

/* ==== HEADER & NAV ==== */
.site-header {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.logo img { height: 55px; filter: drop-shadow(0 0 8px rgba(212,175,55,0.3)); }
.main-nav ul { display: flex; gap: 2.2rem; }
.main-nav a {
  color: #ccc; font-weight: 500; padding: 0.5rem 0;
  position: relative; transition: color 0.4s ease;
}
.main-nav a::after {
  content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: all 0.4s ease; transform: translateX(-50%);
}
.main-nav a:hover, .main-nav a.active { color: #d4af37; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-toggle {
  display: none; background: none; color: #fff; font-size: 1.8rem;
}

/* ==== HERO SECTION ==== */
.hero {
  position: relative; min-height: 85vh; background-size: cover; background-position: center;
  display: flex; align-items: center; color: #fff; text-align: center;
}
.overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(2px);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 1rem;
}
.hero p { font-size: 1.3rem; margin-bottom: 2rem; color: #ddd; }
.btn-primary, .btn-secondary {
  display: inline-block; padding: 1rem 2.5rem; border-radius: 50px;
  font-weight: 700; margin: 0.5rem; transition: all 0.4s ease;
}
.btn-primary {
  background: linear-gradient(45deg, #d4af37, #ffd700); color: #000;
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212,175,55,0.6);
}
.btn-secondary {
  background: transparent; color: #d4af37; border: 2px solid #d4af37;
}
.btn-secondary:hover {
  background: rgba(212,175,55,0.15); transform: translateY(-2px);
}

/* ==== SECTIONS ==== */
section { padding: 5rem 0; }
.contact-teaser {
  background: #111; padding: 2rem; text-align: center; border-top: 1px solid #333;
}
.contact-teaser a { color: #d4af37; font-weight: 600; }

/* ==== CARDS ==== */
.card, .value-card {
  background: #111; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4); transition: transform 0.4s ease;
  border: 1px solid rgba(212,175,55,0.1); position: relative;
}
.card:hover, .value-card:hover { transform: translateY(-8px); }
.card img { height: 200px; object-fit: cover; }
.card h3, .value-card h3 { padding: 1.5rem 1.5rem 0.5rem; }
.card p, .value-card p { padding: 0 1.5rem 1.5rem; color: #aaa; font-size: 0.95rem; }

/* ==== ABOUT PAGE ==== */
.about-content { padding: 4rem 0; }
.about-text p { font-size: 1.1rem; margin-bottom: 1.5rem; color: #ccc; }
.about-values { margin: 3rem 0; }
.about-cta { text-align: center; margin-top: 3rem; }
.about-cta h2 { margin-bottom: 1rem; }

/* ==== FOOTER ==== */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 3rem 0 2rem; color: #aaa; position: relative; overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.site-footer::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150"><defs><filter id="m"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="6"/></filter></defs><rect width="150" height="150" filter="url(%23m)" opacity="0.05"/></svg>');
  pointer-events: none;
}
.footer-container { text-align: center; position: relative; z-index: 1; }
.footer-logo img { height: 60px; margin-bottom: 1.5rem; filter: drop-shadow(0 0 10px rgba(212,175,55,0.3)); }
.footer-nav ul { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.footer-nav a { color: #ccc; transition: color 0.4s; }
.footer-nav a:hover { color: #d4af37; }
.footer-contact { margin: 1rem 0; font-size: 0.95rem; }
.footer-contact a { color: #d4af37; }
.footer-social {
  display: flex; gap: 1.8rem; justify-content: center; margin: 1.5rem 0;
}
.footer-social a {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(212,175,55,0.1);
  border: 1.5px solid rgba(212,175,55,0.2); display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}
.footer-social a:hover {
  background: rgba(212,175,55,0.25); border-color: #d4af37; transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}
.social-icon { width: 22px; height: 22px; color: #d4af37; transition: all 0.4s; }
.footer-social a:hover .social-icon { color: #ffd700; filter: drop-shadow(0 0 8px rgba(255,215,0,0.6)); }
.footer-legal { font-size: 0.88rem; margin: 1.5rem 0; }
.manage-cookies-link {
  background: transparent; color: #d4af37; border: 1.5px solid #d4af37;
  padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.manage-cookies-link:hover {
  background: rgba(212,175,55,0.15); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}

/* ==== FLOATING BUTTONS ==== */
.call-float, .whatsapp-float {
  position: fixed; right: 30px; width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 9997;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4); border: 3px solid #fff;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.call-float { bottom: 105px; background: linear-gradient(45deg, #d4af37, #ffd700); animation: callRing 2.5s infinite; }
.whatsapp-float { bottom: 30px; background: linear-gradient(45deg, #25d366, #128c7e); animation: whatsappPulse 2s infinite; }
.call-float:hover, .whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.call-icon, .whatsapp-icon { width: 34px; height: 34px; color: #fff; }
.call-icon { color: #000; }
.call-float:hover .call-icon { transform: scale(1.15) rotate(10deg); }
.whatsapp-float:hover .whatsapp-icon { transform: scale(1.15); }

.call-tooltip, .whatsapp-tooltip {
  position: absolute; right: 78px; top: 50%; transform: translateY(-50%);
  background: #111; color: #d4af37; padding: 0.6rem 1rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; white-space: nowrap; opacity: 0; visibility: hidden;
  transition: all 0.4s ease; box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(212,175,55,0.3); font-family: 'Cinzel', serif;
}
.call-tooltip::after, .whatsapp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 8px solid transparent; border-left-color: #111;
}
.call-float:hover .call-tooltip, .whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1; visibility: visible; right: 82px;
}
@keyframes callRing {
  0%, 100% { box-shadow: 0 10px 30px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 15px 40px rgba(212,175,55,0.6); }
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 15px 40px rgba(37,211,102,0.6); }
}

/* ==== COOKIE BANNER ==== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%; background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff; padding: 1.5rem 2rem; font-size: 1rem; z-index: 9998; display: none;
  align-items: center; justify-content: space-between; border-top: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.5); backdrop-filter: blur(12px);
}
#cookie-banner.show { display: flex; animation: bannerSlideUp 0.7s cubic-bezier(0.22,1,0.36,1); }
#cookie-banner p { max-width: 68%; margin: 0; }
#cookie-banner a { color: #d4af37; text-decoration: underline; }
.cookie-btn {
  background: transparent; color: #d4af37; border: 1.5px solid #d4af37; padding: 0.75rem 1.8rem;
  margin-left: 1rem; border-radius: 50px; font-weight: 600; font-size: 0.92rem;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.cookie-btn.accept { background: linear-gradient(45deg, #d4af37, #ffd700); color: #000; border: none; }
.cookie-btn:hover { background: rgba(212,175,55,0.15); transform: translateY(-2px); }
@keyframes bannerSlideUp { 
  0% { transform: translateY(100%); } 
  100% { transform: translateY(0); } 
}

/* ==== COOKIE MODAL ==== */
#cookie-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); display: none;
  align-items: center; justify-content: center; z-index: 10000; backdrop-filter: blur(12px);
}
#cookie-modal.show { display: flex; animation: modalFadeIn 0.6s cubic-bezier(0.22,1,0.36,1); }
.cookie-modal-content {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a); padding: 2.5rem; border-radius: 20px;
  max-width: 520px; width: 92%; border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.15);
}
.cookie-modal-header { 
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; 
}
.cookie-modal-header h3 {
  background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
#close-modal { background: none; color: #aaa; font-size: 1.8rem; }
#close-modal:hover { color: #d4af37; }

.cookie-option { 
  display: flex; align-items: flex-start; margin: 1.5rem 0; position: relative; 
}
.cookie-option input[type="checkbox"] {
  margin-right: 1.2rem; width: 22px; height: 22px; accent-color: #d4af37; border-radius: 6px;
  appearance: none; background: #222; border: 1.5px solid #444; cursor: pointer;
  position: relative;
}
.cookie-option input[type="checkbox"]:checked {
  background: linear-gradient(45deg, #d4af37, #ffd700); border-color: #d4af37;
}
.cookie-option input[type="checkbox"]:checked::after {
  content: 'Checkmark'; position: absolute; top: 50%; left: 50%; 
  transform: translate(-50%, -50%); color: #000; font-weight: bold; font-size: 0.9rem;
}
.cookie-option label { cursor: pointer; flex: 1; }
.cookie-option strong { color: #fff; }
.cookie-option small { display: block; color: #aaa; font-size: 0.88rem; margin-top: 0.4rem; font-style: italic; }

.cookie-modal-actions { display: flex; gap: 1rem; margin-top: 2.5rem; }
.cookie-modal-actions button {
  flex: 1; padding: 1rem 1.5rem; border-radius: 50px; font-weight: 600; min-width: 140px;
}
#save-preferences {
  background: linear-gradient(45deg, #d4af37, #ffd700); color: #000; border: none;
}
#save-preferences:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.5); }
#accept-all-cookies {
  background: transparent; color: #d4af37; border: 1.5px solid #d4af37;
}
#accept-all-cookies:hover { background: rgba(212,175,55,0.15); }

@keyframes modalFadeIn { 
  0% { opacity: 0; transform: scale(0.9); } 
  100% { opacity: 1; transform: scale(1); } 
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .main-nav ul { 
    position: fixed; top: 70px; left: -100%; width: 100%; background: #000; 
    flex-direction: column; padding: 2rem; transition: left 0.3s; 
  }
  .main-nav ul.active { left: 0; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; text-align: center; gap: 1rem; }
  .cookie-btn { margin: 0.5rem auto; width: 100%; max-width: 220px; }
  .call-float, .whatsapp-float { width: 56px; height: 56px; }
  .call-float { bottom: 90px; right: 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .call-tooltip, .whatsapp-tooltip { display: none; }
}