@charset "UTF-8";

/* ==========================================================================
   KMS PANEL DOM - LUXURY ARCHITECTURAL DESIGN SYSTEM
   Colors:
   - Charcoal Slate: rgb(24, 24, 26) / #18181a
   - Champagne Gold: rgb(255, 244, 198) / #fff4c6
   - Rich Accent Gold: #d4af37 / #e6ca65 / #fbbf24
   ========================================================================== */

:root {
  /* Core Base Colors */
  --bg-main: #18181a;            /* rgb(24, 24, 26) */
  --bg-surface: #1f1f23;         /* Layered container */
  --bg-card: #25252b;            /* Cards */
  --bg-card-hover: #2e2e36;      /* Card hover state */
  --bg-elevated: #33333d;        /* Modals & Dropdowns */
  --bg-glass: rgba(24, 24, 26, 0.88);
  --bg-glass-card: rgba(37, 37, 43, 0.7);

  /* Gold Spectrum */
  --gold-champagne: #fff4c6;     /* rgb(255, 244, 198) */
  --gold-primary: #e6ca65;       /* Vibrant warm gold */
  --gold-rich: #d4af37;          /* Classic architectural gold */
  --gold-star: #f59e0b;          /* Solid star gold */
  --gold-dark: #aa8420;          /* Deep bronze gold */
  --gold-glow: rgba(230, 202, 101, 0.25);
  --gold-subtle: rgba(255, 244, 198, 0.08);

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #fff4c6 0%, #e6ca65 45%, #c59b27 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #fff4c6 30%, #d4af37 100%);
  --card-gradient: linear-gradient(180deg, rgba(45, 45, 54, 0.65) 0%, rgba(30, 30, 35, 0.95) 100%);
  --hero-glow: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
               radial-gradient(circle at 20% 80%, rgba(255, 244, 198, 0.06) 0%, transparent 50%);

  /* Typography Colors */
  --text-main: #f9fafb;
  --text-secondary: #e5e7eb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-gold: #fff4c6;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-gold: rgba(255, 244, 198, 0.25);
  --border-gold-hover: rgba(255, 244, 198, 0.55);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(230, 202, 101, 0.25);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', var(--font-main);
  --font-accent: 'Cinzel', serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === CSS Reset & Core === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

section, header, footer, .container, .hero-grid, .service-grid, .gallery-grid, .contact-grid {
  max-width: 100%;
}

/* Section Anchor Scroll Offset */
section[id], header[id] {
  scroll-margin-top: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #33333d;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-rich);
}

::selection {
  background: rgba(230, 202, 101, 0.35);
  color: var(--gold-champagne);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* === Layout & Containers === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

.section-bg-darker {
  background-color: #141416;
}

.section-bg-surface {
  background-color: var(--bg-surface);
}

/* === Section Header & Description with Generous Spacing === */
.section-header {
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4.5rem;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 1.15rem;
}

.kicker-index {
  font-family: var(--font-heading);
  color: var(--gold-primary);
  font-weight: 800;
}

.kicker-line {
  width: 2rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 1.35rem;
  line-height: 1.18;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Section Description with Distinct Bottom Spacing */
.section-desc {
  font-size: 1.05rem;
  max-width: 680px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3.5rem !important;
}

@media (min-width: 768px) {
  .section-desc {
    font-size: 1.125rem;
    margin-bottom: 4.5rem !important;
  }
}

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

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 244, 198, 0.1);
  border: 1px solid rgba(255, 244, 198, 0.25);
  border-radius: var(--radius-full);
  color: var(--gold-champagne);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === Solid Filled Stars Styling === */
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--gold-star);
}

.review-stars svg,
.review-stars i {
  width: 16px;
  height: 16px;
  fill: var(--gold-star) !important;
  color: var(--gold-star) !important;
  stroke: var(--gold-star) !important;
  display: inline-block;
}

.star-icon-filled {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
  color: #f59e0b;
  display: inline-block;
  vertical-align: middle;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 768px) {
  .btn {
    white-space: normal;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }
}

.btn-primary {
  background: var(--gold-gradient);
  color: #141416;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 202, 101, 0.45);
  background: var(--gold-gradient-hover);
  color: #0c0c0e;
}

.btn-primary:hover::after {
  left: 160%;
}

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

.btn-secondary {
  background: rgba(45, 45, 54, 0.7);
  backdrop-filter: blur(12px);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(55, 55, 65, 0.9);
  border-color: var(--border-gold);
  color: var(--gold-champagne);
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
  }
}

/* === Navigation Header === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(24, 24, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 68px;
  background: rgba(20, 20, 22, 0.96);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img-wrapper {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  padding: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-img-wrapper {
    width: 48px;
    height: 48px;
  }
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
  background-color: #18181a;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--gold-champagne);
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand-title {
    font-size: 1.25rem;
  }
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-champagne);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-actions {
    gap: 1rem;
  }
}

/* Nav Social Buttons */
.nav-social-links {
  display: none;
  align-items: center;
  gap: 0.4rem;
}

@media (min-width: 1200px) {
  .nav-social-links {
    display: flex;
  }
}

.nav-social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 244, 198, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  transition: var(--transition-fast);
}

.nav-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-social-btn:hover {
  background: var(--gold-gradient);
  color: #141416;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.phone-quick-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 244, 198, 0.06);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

@media (min-width: 640px) {
  .phone-quick-link {
    display: flex;
  }
}

.phone-quick-link:hover {
  border-color: var(--gold-rich);
  color: var(--gold-champagne);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.18);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 18, 20, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link:hover {
  color: var(--gold-champagne);
  padding-left: 0.5rem;
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* === Status Indicator Dot === */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.status-dot.open {
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.status-dot.closed {
  background-color: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

/* === Hero Section === */
.hero-section {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--hero-glow), var(--bg-main);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 130px;
    padding-bottom: 5rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  list-style: none;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: rgba(37, 37, 43, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.hero-chip i,
.hero-chip svg {
  color: var(--gold-primary);
  width: 14px;
  height: 14px;
}

.hero-chip:hover {
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
  transform: translateY(-2px);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.15rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-champagne);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .trust-num {
    font-size: 1.6rem;
  }
}

.trust-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero Media Box */
.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.15);
  background: var(--bg-card);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

@media (min-width: 768px) {
  .hero-img {
    height: 460px;
  }
}

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

/* Floating Badges */
.floating-review-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(24, 24, 28, 0.94);
  backdrop-filter: blur(16px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

@media (min-width: 768px) {
  .floating-review-badge {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1rem 1.25rem;
  }
}

.floating-review-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 244, 198, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  flex-shrink: 0;
}

.rating-value {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-experience-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-gradient);
  color: #141416;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 3;
}

/* === Architectural Corner Accents === */
.arch-frame {
  position: relative;
}

.arch-c {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--gold-rich);
  border-style: solid;
  pointer-events: none;
  opacity: 0.6;
  z-index: 4;
}

.arch-c-tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.arch-c-tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.arch-c-bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.arch-c-br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

/* === Concise & Elegant Offer Section === */
.offer-featured-card {
  background: linear-gradient(135deg, rgba(42, 42, 50, 0.8) 0%, rgba(26, 26, 30, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.15rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.12);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

@media (min-width: 768px) {
  .offer-featured-card {
    padding: 2.25rem;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .offer-featured-card {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 3rem;
    margin-bottom: 2.5rem;
  }
}

.offer-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle at right, rgba(230, 202, 101, 0.12), transparent 70%);
  pointer-events: none;
}

.offer-featured-info {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-featured-info h3 {
  font-size: 1.45rem;
  color: var(--gold-champagne);
  margin-bottom: 0.875rem;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .offer-featured-info h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}

.offer-featured-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .offer-featured-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
}

.offer-featured-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .offer-featured-bullets {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}

.offer-featured-bullets li {
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.offer-featured-bullets li i,
.offer-featured-bullets li svg {
  color: var(--gold-primary);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.offer-featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

@media (min-width: 768px) {
  .offer-featured-img {
    height: 360px;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--card-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.service-card-img-wrapper {
  width: 100%;
  height: 195px;
  background: radial-gradient(circle at center, rgba(255, 244, 198, 0.05) 0%, rgba(20, 20, 24, 0.7) 100%), #1c1c21;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base);
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-card-features li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-card-features li i,
.service-card-features li svg {
  color: var(--gold-primary);
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* === Why Choose Us (Dlaczego My) === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.why-card {
  background: var(--card-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 244, 198, 0.08);
  border: 1px solid rgba(255, 244, 198, 0.2);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.why-card:hover .why-icon {
  background: var(--gold-gradient);
  color: #141416;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.why-card h4 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Process Steps === */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  position: relative;
  transition: var(--transition-base);
}

.process-step-card:hover {
  border-color: var(--gold-rich);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.process-step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

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

/* === Realizacje (Unified Gallery & Lightbox) === */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 18, 22, 0.95) 0%, rgba(18, 18, 22, 0.3) 50%, transparent 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-champagne);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.gallery-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  margin: auto;
}

@media (min-width: 768px) {
  .lightbox-content {
    grid-template-columns: 1.2fr 0.8fr;
    max-height: 85vh;
  }
}

.lightbox-img-box {
  background: #0d0d0f;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  max-height: 480px;
}

.lightbox-img-box img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
}

.lightbox-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lightbox-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(24, 24, 26, 0.92);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover,
.lightbox-close-btn:active {
  background: var(--gold-gradient);
  color: #141416;
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .lightbox-modal {
    padding: 1rem 0.75rem;
    align-items: flex-start;
  }
  .lightbox-content {
    max-height: none;
    border-radius: var(--radius-lg);
  }
  .lightbox-img-box {
    max-height: 300px;
  }
  .lightbox-img-box img {
    max-height: 300px;
  }
  .lightbox-details {
    padding: 1.25rem 1rem;
  }
  .lightbox-close-btn {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
}

/* === Instagram / Facebook Showcase Section === */
.instagram-banner {
  background: linear-gradient(135deg, rgba(40, 40, 48, 0.8) 0%, rgba(24, 24, 26, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 100%;
}

@media (min-width: 768px) {
  .instagram-banner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 3.5rem 3rem;
  }
}

.instagram-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .instagram-banner-copy {
    align-items: flex-start;
    text-align: left;
  }
}

.instagram-banner-copy h3 {
  font-size: 1.45rem;
  color: var(--gold-champagne);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .instagram-banner-copy h3 {
    font-size: 2rem;
  }
}

.instagram-banner-copy p {
  color: var(--text-muted);
  max-width: 500px;
  font-size: 0.95rem;
}

.banner-buttons-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .banner-buttons-row {
    width: auto;
    justify-content: flex-end;
  }
}

/* === Google Reviews Section === */
.reviews-summary-card {
  background: var(--card-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .reviews-summary-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
  }
}

.reviews-big-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.big-rating-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-champagne);
  line-height: 1;
}

@media (min-width: 768px) {
  .big-rating-number {
    font-size: 4rem;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  background: var(--card-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-base);
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-quote-icon {
  color: rgba(255, 244, 198, 0.2);
  width: 24px;
  height: 24px;
}

.review-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.review-author-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.author-initial {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 244, 198, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info h5 {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.verified-badge {
  color: #22c55e;
}

/* === FAQ Accordion === */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-search-box {
  position: relative;
  margin-bottom: 2rem;
}

.faq-search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.faq-search-input:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.faq-search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  width: 18px;
  height: 18px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  background: var(--card-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.active {
  border-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-header {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
  user-select: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-body {
  max-height: 350px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === Contact & Map Section === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.contact-card-tile {
  background: var(--card-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  transition: var(--transition-fast);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-card-tile:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 244, 198, 0.08);
  border: 1px solid rgba(255, 244, 198, 0.2);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card-text span {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
}

.contact-card-text h5 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-top: 0.2rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 768px) {
  .contact-card-tile {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
  .contact-card-text h5 {
    font-size: 1.05rem;
  }
}

/* Contact Form */
.contact-form-box {
  background: var(--card-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.15rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .contact-form-box {
    padding: 2.5rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.calc-input, .calc-select, .calc-textarea {
  width: 100%;
  padding: 0.8rem 1.15rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.925rem;
  outline: none;
  transition: var(--transition-fast);
}

.calc-input:focus, .calc-select:focus, .calc-textarea:focus {
  border-color: var(--gold-champagne);
  box-shadow: 0 0 12px rgba(255, 244, 198, 0.25);
  background: #232328;
}

/* === Footer === */
.footer {
  background: #101012;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
  }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  margin-top: 1rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--gold-champagne);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--gold-champagne);
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #141416;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8125rem;
}

/* === Floating Action CTAs (Mobile & Quick Dial) === */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-phone {
  background: var(--gold-gradient);
  color: #141416;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.scroll-to-top {
  background: #1f1f25;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* === Scroll Reveal Animations === */
.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-fade.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 768px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(20px);
  }
  .reveal-left.active,
  .reveal-right.active {
    transform: translateY(0);
  }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === Toast Notification === */
.toast-msg {
  position: fixed;
  top: 90px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-rich);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--gold-champagne);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.2);
  z-index: 2500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
}

.toast-msg.show {
  transform: translateX(0);
}
