:root {
  --color-bg: #0a0a0a;
  --color-surface: rgba(255, 255, 255, 0.03);
  --color-surface-hover: rgba(255, 255, 255, 0.06);
  --color-primary: #c6a255;
  --color-primary-light: #d9b96e;
  --color-primary-dark: #b08a3a;
  --color-secondary: #ede0c8;
  --color-text: #f5f5f5;
  --color-text-muted: #8a8a8a;
  --color-border: rgba(198, 162, 85, 0.12);
  --color-border-hover: rgba(198, 162, 85, 0.4);

  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(198, 162, 85, 0.08);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-light);
  text-decoration: none;
}

/* ===================== HEADER ===================== */
header {
  position: relative;
  padding: 28px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0));
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--color-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.header-logo {
  max-width: 260px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(198, 162, 85, 0.2));
  animation: logoReveal 1.5s ease-out;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    filter: drop-shadow(0 0 0px rgba(198, 162, 85, 0));
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(198, 162, 85, 0.2));
    transform: scale(1);
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px 100px;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(198, 162, 85, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(198, 162, 85, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(198, 162, 85, 0.06) 0%, transparent 40%),
    linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.92)),
    url('../assets/luxury_interior_hero.png') center/cover no-repeat;
  overflow: hidden;
}

/* Animated gold particles canvas */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* Decorative corner accents */
.hero::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-left: 1px solid var(--color-primary);
  border-top: 1px solid var(--color-primary);
  opacity: 0.3;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  opacity: 0.3;
  z-index: 1;
}

/* ===================== BADGE ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(198, 162, 85, 0.12), rgba(198, 162, 85, 0.04));
  color: var(--color-primary);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 35px;
  border: 1px solid rgba(198, 162, 85, 0.25);
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite, fadeSlideDown 1s ease-out;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198, 162, 85, 0); }
  50% { box-shadow: 0 0 20px 0 rgba(198, 162, 85, 0.1); }
}

/* ===================== HERO HEADING ===================== */
.hero h1 {
  font-size: 5rem;
  margin-bottom: 25px;
  color: var(--color-secondary);
  animation: slideUp 1s ease-out;
  letter-spacing: -1px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative divider under heading */
.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 0 auto 30px auto;
  position: relative;
  animation: slideUp 1.1s ease-out;
}

.hero-divider::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  font-size: 8px;
  background: var(--color-bg);
  padding: 0 10px;
}

.hero p.subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 55px auto;
  animation: slideUp 1.2s ease-out;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ===================== SERVICES ===================== */
.services-section-title {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  animation: slideUp 1.3s ease-out;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  animation: slideUp 1.4s ease-out;
}

.service-tag {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: #bbb;
  transition: var(--transition);
  cursor: default;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-tag i {
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(198, 162, 85, 0.08), transparent);
  transition: left 0.5s ease;
}

.service-tag:hover::before {
  left: 100%;
}

.service-tag:hover {
  border-color: var(--color-border-hover);
  color: var(--color-primary);
  background: rgba(198, 162, 85, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(198, 162, 85, 0.1);
}

/* ===================== CONTACT CARDS ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 750px;
  animation: slideUp 1.6s ease-out;
}

.contact-card {
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  background: var(--color-surface-hover);
}

.contact-card h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-card h3 i {
  font-size: 0.95rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 162, 85, 0.1);
  border-radius: 8px;
  color: var(--color-primary);
}

.contact-card p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  margin-bottom: 10px;
}

.contact-card p strong {
  color: #ccc;
  font-weight: 500;
}

.contact-card ul {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  list-style: none;
}

.contact-card ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-card ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-card ul li span:last-child {
  color: #ccc;
  font-weight: 500;
}

/* ===================== RATING SECTION ===================== */
.rating-section {
  margin-top: 60px;
  text-align: center;
  animation: slideUp 1.8s ease-out;
  padding: 35px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.rating-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.rating-stars i {
  color: var(--color-primary);
  font-size: 1.3rem;
  filter: drop-shadow(0 0 4px rgba(198, 162, 85, 0.4));
}

.rating-score {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 4px;
}

.rating-score span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.rating-joke {
  font-size: 0.9rem;
  color: var(--color-primary-light);
  font-style: italic;
  opacity: 0.85;
}

/* ===================== FOOTER ===================== */
footer {
  text-align: center;
  padding: 50px 20px;
  background: var(--color-bg);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-links {
  margin-top: 12px;
}

footer a {
  color: var(--color-text-muted);
  margin: 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

footer a:hover {
  color: var(--color-primary);
}

/* ===================== FLOATING BUTTONS ===================== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  color: #fff;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  animation: whatsappBounce 2s ease-in-out 3s;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: btnRing 2s ease-out infinite;
}

.phone-float {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 4px 20px rgba(198, 162, 85, 0.3);
  font-size: 22px;
}

.phone-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(198, 162, 85, 0.3);
  animation: btnRing 2.5s ease-out infinite;
}

@keyframes btnRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-12px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-6px); }
}

.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
  text-decoration: none;
}

.whatsapp-float:hover {
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.phone-float:hover {
  box-shadow: 0 6px 25px rgba(198, 162, 85, 0.5);
}

/* ===================== ANIMATIONS ===================== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: 0;
  }
  
  .hero {
    padding: 50px 16px 70px;
    min-height: auto;
  }

  .hero::before, .hero::after {
    width: 30px;
    height: 30px;
    top: 20px;
    left: 20px;
  }

  .hero::after {
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
  }

  .header-logo {
    max-width: 200px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 5px;
  }

  .service-tag {
    padding: 14px 16px;
    font-size: 0.85rem;
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    min-width: 0;
  }

  .service-tag i {
    font-size: 1.2rem;
    color: var(--color-primary);
  }

  .services-list {
    gap: 8px;
    margin-bottom: 45px;
  }

  .service-tag:nth-child(1) { animation: tagPop 0.4s ease-out 0.1s both; }
  .service-tag:nth-child(2) { animation: tagPop 0.4s ease-out 0.15s both; }
  .service-tag:nth-child(3) { animation: tagPop 0.4s ease-out 0.2s both; }
  .service-tag:nth-child(4) { animation: tagPop 0.4s ease-out 0.25s both; }
  .service-tag:nth-child(5) { animation: tagPop 0.4s ease-out 0.3s both; }
  .service-tag:nth-child(6) { animation: tagPop 0.4s ease-out 0.35s both; }
  .service-tag:nth-child(7) { animation: tagPop 0.4s ease-out 0.4s both; }
  .service-tag:nth-child(8) { animation: tagPop 0.4s ease-out 0.45s both; }

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

  .floating-buttons {
    bottom: 20px;
    right: 16px;
    gap: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .phone-float {
    font-size: 20px;
  }

  .hero p.subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
}

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

  .badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }
}
