/* BútorSPA Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #061638;
  --bg-dark-alt: #0a1f4a;
  --bg-card: rgba(10, 31, 74, 0.65);
  --bg-card-hover: rgba(16, 45, 105, 0.85);
  
  --gold-primary: #d4af37;
  --gold-light: #f5e6a3;
  --gold-dark: #aa771c;
  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 30%, #b38728 70%, #aa771c 100%);
  --gold-gradient-hover: linear-gradient(135deg, #d4af37 0%, #ffffff 30%, #d4af37 70%, #b38728 100%);
  --gold-glow: rgba(212, 175, 55, 0.3);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #e2c068;

  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-bright: rgba(212, 175, 55, 0.6);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Canvas & Glows */
#bubble-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(6, 22, 56, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-1 {
  top: -100px;
  left: -100px;
}

.ambient-glow-2 {
  top: 40%;
  right: -150px;
}

.ambient-glow-3 {
  bottom: 0;
  left: 20%;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Top Header */
.top-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(6, 22, 56, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 58px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.phone-badge:hover {
  background: var(--gold-gradient);
  color: #061638;
  border-color: transparent;
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.phone-badge i {
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 3rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold-bright);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s infinite ease-in-out;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold-gradient);
  color: #061638;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-gold);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Hero Media Card */
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: var(--bg-card);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-card:hover .hero-img {
  transform: scale(1.04);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 22, 56, 0.95) 0%, rgba(6, 22, 56, 0.4) 60%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.hero-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Highlights Bar */
.highlights-bar {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.highlight-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.highlight-item:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.highlight-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.highlight-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Services Section */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(6, 22, 56, 0.8));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.service-link:hover {
  gap: 10px;
  color: #ffffff;
}

/* Callback / Inquiry Section */
.inquiry-section {
  background: linear-gradient(135deg, rgba(10, 31, 74, 0.8) 0%, rgba(6, 22, 56, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.inquiry-info h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.inquiry-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-quick-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.contact-quick-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.contact-quick-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-quick-item a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(6, 22, 56, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  background: rgba(10, 31, 74, 0.9);
}

.form-select option {
  background-color: #061638;
  color: #ffffff;
}

.btn-block {
  width: 100%;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.5rem 0 2rem 0;
  background: rgba(4, 14, 36, 0.95);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copyright strong {
  color: var(--gold-light);
}

/* Floating Call Button (Mobile FAB) */
.floating-call-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #061638;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  text-decoration: none;
  z-index: 99;
  transition: var(--transition-smooth);
  animation: pulse-ring 2s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.7);
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #061638;
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid #22c55e;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem auto;
}

.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.modal-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Keyframe Animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.5);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.3rem;
  }

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

  .highlights-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-header {
    padding: 0.9rem 0;
  }

  .phone-badge span {
    display: none;
  }

  .phone-badge {
    padding: 0.6rem;
    border-radius: 50%;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .highlights-bar {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-section {
    padding: 2rem 1.25rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }
}
