/* ==========================================================================
   LogicHub - F.Z.E | Master Corporate Stylesheet
   UAE Corporate Luxury Light Theme (Pure White, Soft Slate, Warm Gold, Deep Charcoal)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Light Theme Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-light-alt: #F1F5F9;

  /* Gold Metallic Palette (Optimized for High Contrast on White) */
  --gold-primary: #B8860B;
  --gold-light: #D4AF37;
  --gold-dark: #8C6509;
  --gold-glow: rgba(184, 134, 11, 0.2);
  --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #996515 100%);
  --gold-gradient-hover: linear-gradient(135deg, #C9971C 0%, #E5C158 50%, #AA761B 100%);

  /* Text Colors */
  --text-white: #0F172A;
  --text-main: #334155;
  --text-muted: #64748B;
  --text-dark: #0F172A;
  --text-dark-muted: #64748B;

  /* Borders & Accents */
  --border-subtle: #E2E8F0;
  --border-gold: rgba(184, 134, 11, 0.35);
  --border-gold-strong: rgba(184, 134, 11, 0.7);
  --shadow-gold: 0 10px 30px -10px rgba(184, 134, 11, 0.2);
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-card-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(184, 134, 11, 0.15);

  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --header-height: 80px;
  --max-width: 1280px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--gold-primary);
  color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
  border: 2px solid #F1F5F9;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  color: var(--text-white);
  line-height: 1.25;
}

h5, h6, .font-subheading {
  font-family: var(--font-subheading);
  letter-spacing: 0.01em;
}

p {
  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;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

/* ==========================================================================
   Luxury Accents, Badges & Gradients
   ========================================================================== */

.gold-gradient-text {
  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;
  font-family: var(--font-subheading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
}

.gold-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 6px var(--gold-primary);
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1.25rem 0;
}
.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* Glassmorphism Card (White Theme) */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-subheading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.28);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background: #F8FAFC;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: rgba(184, 134, 11, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navbar (White Theme)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  height: 72px;
}

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

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

.brand-logo svg, .brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0F172A;
  line-height: 1;
}

.brand-title span {
  color: var(--gold-primary);
}

.brand-sub {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

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

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

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

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

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

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

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.mobile-toggle:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Mobile Drawer (White Theme) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-subtle);
  z-index: 1100;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(15, 23, 42, 0.15);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

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

.mobile-nav-link {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

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

/* ==========================================================================
   Hero Section (White Theme)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #FFFFFF;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(circle at 85% 20%, rgba(184, 134, 11, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(241, 245, 249, 0.8) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.96) 100%),
    url('../assets/images/hero_bg.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
}

.hero-headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.18;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #0F172A;
}

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

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.75;
}

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

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   Section Layouts & Grids (White Theme)
   ========================================================================== */

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

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

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #0F172A;
}

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

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

/* Services Grid (10 Cards) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #CBD5E1;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0F172A;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-subheading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Featured Editorial Cards
   ========================================================================== */

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.editorial-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.editorial-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.88) 80%);
}

.editorial-card:hover .editorial-bg {
  transform: scale(1.06);
}

.editorial-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card-hover);
}

.editorial-content {
  position: relative;
  z-index: 3;
}

.editorial-tag {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F3E5AB;
  margin-bottom: 0.5rem;
  display: block;
}

.editorial-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.editorial-text {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Why LogicHub / Core Values
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.why-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFFFFF;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0F172A;
}

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

/* ==========================================================================
   Portfolio Filter & Gallery
   ========================================================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  font-family: var(--font-subheading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.85) 85%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

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

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}

.portfolio-category {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F3E5AB;
  margin-bottom: 0.35rem;
}

.portfolio-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.portfolio-card-desc {
  font-size: 0.875rem;
  color: #E2E8F0;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   Call To Action (CTA) Banner (White Theme)
   ========================================================================== */

.cta-banner {
  background: 
    radial-gradient(circle at 10% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 50%, rgba(241, 245, 249, 0.9) 0%, transparent 70%),
    #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 5.5rem 3.5rem;
  }
}

.cta-banner h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: #0F172A;
}

@media (min-width: 768px) {
  .cta-banner h2 {
    font-size: 3.25rem;
  }
}

.cta-banner p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* ==========================================================================
   Contact Section & Direct Action Channels (White Theme)
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.25fr;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-channel-card {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  transition: var(--transition-fast);
}

.contact-channel-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-card-hover);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #16A34A;
}

.channel-icon.email {
  background: rgba(184, 134, 11, 0.12);
  color: var(--gold-primary);
}

.channel-icon.location {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.channel-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: #0F172A;
}

.channel-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
  padding: 2.5rem;
  background: #FFFFFF;
}

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

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

.form-label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
  background: #FFFFFF;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

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

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

/* ==========================================================================
   Footer (White Theme)
   ========================================================================== */

.site-footer {
  background: #F8FAFC;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem 0;
  position: relative;
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1.25fr;
  }
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #0F172A;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

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

.footer-license-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.footer-license-box p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer-license-box strong {
  color: #0F172A;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   Modals & Lightbox (White Theme)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: #FFFFFF;
}

/* ==========================================================================
   Toast Notification (White Theme)
   ========================================================================== */

.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold-primary);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 320px;
  max-width: 440px;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-text h5 {
  font-size: 0.95rem;
  color: #0F172A;
  margin-bottom: 2px;
}

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

/* ==========================================================================
   Back To Top Floating Button (White Theme)
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* Page Header Hero (for Inner Pages) */
.page-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background: 
    radial-gradient(circle at 50% 0%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
    #F8FAFC;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-hero-title {
  font-size: 2.75rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #0F172A;
}

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

.page-hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--gold-primary);
}
.breadcrumb span {
  color: var(--gold-primary);
}

/* ==========================================================================
   Floating WhatsApp Direct Widget
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #25D366;
  color: #FFFFFF !important;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #FFFFFF !important;
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    width: 3.25rem;
    height: 3.25rem;
    justify-content: center;
  }
  .whatsapp-float span {
    display: none;
  }
}

