/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES (Refined Dark Slate & Blue)
   ========================================================================== */
:root {
  /* Brand Core Blues */
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --deep: #060911;
  --deep-2: #0b0f19;

  /* Accents & Contrast */
  --accent: #38bdf8;
  --accent-glow: rgba(56, 189, 248, 0.25);

  /* Dark Theme Surfaces */
  --bg-main: #0a0e17;
  --bg-surface: #111827;
  --bg-surface-elevated: #1a2235;

  /* Typography Colors */
  --text: #cbd5e1;
  --text-heading: #f8fafc;
  --muted: #94a3b8;

  /* Borders & Shadows */
  --border: rgba(56, 189, 248, 0.12);
  --border-focus: rgba(56, 189, 248, 0.4);
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  --radius: 12px;
}

/* ==========================================================================
   RESET & GLOBAL DEFAULTS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  z-index: 99999;
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.loader-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.loader-spinner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(56, 189, 248, 0.15);
  border-top-color: var(--accent);
  border-right-color: var(--primary-light);
  animation: spin 1s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite;
  box-shadow: 0 0 20px var(--accent-glow);
}

.loader-spinner::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--accent);
  animation: spin-reverse 1.3s linear infinite;
}

.loader-monogram {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
  z-index: 2;
}

.loader-brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.5px;
}

.loader-brand span {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes pulse-text {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ==========================================================================
   TOP INFORMATION BAR
   ========================================================================== */
.top-bar {
  background: var(--deep);
  color: #94a3b8;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar i {
  color: var(--accent);
  margin-right: 6px;
}

.top-right {
  display: flex;
  gap: 20px;
}

.top-right a:hover {
  color: #fff;
}

/* ==========================================================================
   FROSTED GLASS NAVBAR & PERFECT VERTICAL ALIGNMENT
   ========================================================================== */
.navbar {
  background: rgba(10, 14, 23, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

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

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--text-heading);
}

.brand-copy small {
  font-size: 0.58rem;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.nav-links > a:not(.nav-login) {
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 0 4px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links > a:not(.nav-login)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}

.nav-links > a:not(.nav-login):hover,
.nav-links > a:not(.nav-login).active {
  color: var(--text-heading);
}

.nav-links > a:not(.nav-login):hover::after,
.nav-links > a:not(.nav-login).active::after {
  right: 0;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown-toggle {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 4px;
  height: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.nav-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  min-width: 210px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  z-index: 1100;

  /* Animation states */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.2s ease;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px !important;
  color: var(--text) !important;
  font-size: 0.84rem !important;
  border-radius: 7px;
  height: auto !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent) !important;
  transform: translateX(4px);
}

@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-dropdown:hover .nav-dropdown-toggle {
    color: var(--text-heading);
  }

  .nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
    color: var(--accent);
  }
}

/* Nav Actions & Login Button with Center-to-Corner Animation */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px !important;
  color: #fff !important;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  overflow: hidden;
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-login::after {
  display: none !important;
}

.nav-login::before,
.nav-login-line-bottom {
  content: '';
  position: absolute;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-login::before {
  top: 0;
}

.nav-login-line-bottom {
  bottom: 0;
}

.nav-login:hover {
  background: rgba(37, 99, 235, 0.4);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.3);
}

.nav-login:hover::before,
.nav-login:hover .nav-login-line-bottom {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-heading);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 560px;
  position: relative;
  background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=88") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 17, 0.97) 0%, rgba(10, 14, 23, 0.92) 50%, rgba(10, 14, 23, 0.7) 100%);
}

.hero-content {
  position: relative;
  padding: 80px 0;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-eyebrow {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.trust {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.84rem;
  color: #94a3b8;
}

.trust strong {
  color: var(--text-heading);
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

/* ==========================================================================
   QUICK HIGHLIGHTS
   ========================================================================== */
.highlights {
  position: relative;
  margin-top: -45px;
  z-index: 4;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.highlight-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 22px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  transition: all 0.25s ease;
  display: block;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
  background: var(--bg-surface-elevated);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.highlight-card h3 {
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 90px 0;
}

.section-surface {
  background: #0d121f;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 35px;
}

.section-copy h2,
.section-heading h2,
.center-heading h2,
.reviews-head h2,
.contact-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: var(--text-heading);
  margin-top: 4px;
}

.section-copy h2 span {
  color: var(--accent);
}

.section-copy p {
  color: var(--text);
  font-size: 0.95rem;
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.86rem;
}

.text-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   ABOUT (SPLIT LAYOUT)
   ========================================================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.image-wrap {
  position: relative;
}

.image-wrap > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.image-badge {
  position: absolute;
  right: -15px;
  bottom: 20px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.image-badge strong {
  color: var(--text-heading);
  font-size: 0.9rem;
}

.image-badge span {
  font-size: 0.72rem;
  color: var(--accent);
}

.check-list {
  list-style: none;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text);
}

.check-list i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
  background: var(--bg-surface-elevated);
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
}

.service-card a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 18px;
}

/* ==========================================================================
   WHY CHOOSE US (EDITORIAL / NUMBERED SYSTEM)
   ========================================================================== */
.center-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 45px;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.editorial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  position: relative;
  transition: all 0.25s ease;
}

.editorial-card:hover {
  border-color: var(--border-focus);
  background: var(--bg-surface-elevated);
}

.editorial-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(56, 189, 248, 0.3);
  margin-bottom: 12px;
}

.editorial-card h3 {
  font-size: 0.98rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.editorial-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.gallery-item.tall {
  grid-row: span 2;
}

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

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(6, 9, 17, 0.95));
}

.gallery-item figcaption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 35px;
}

.rating-box {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 12px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 10px;
}

.rating-box strong {
  font-size: 1.8rem;
  color: var(--accent);
  grid-row: span 2;
  line-height: 1;
}

.rating-box small {
  color: var(--muted);
  font-size: 0.72rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-top strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-heading);
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid var(--border);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.review-card p {
  color: #cbd5e1;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.55;
}

/* ==========================================================================
   CONTACT STRIP / FINAL CTA
   ========================================================================== */
.contact-strip {
  background: linear-gradient(115deg, var(--deep-2), #101c36);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #fff;
  padding: 65px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.light-eyebrow {
  color: var(--accent);
}

.contact-strip p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-top: 4px;
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--deep);
  color: #94a3b8;
  padding: 65px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .brand-copy strong {
  color: #fff;
}

.site-footer .brand-copy small {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.25fr;
  gap: 40px;
  padding-bottom: 45px;
}

.footer-brand-link {
  margin-bottom: 14px;
}

.footer-brand > p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 320px;
}

.site-footer h4 {
  color: var(--text-heading);
  font-size: 0.88rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.74rem;
  color: #64748b;
}

.footer-bottom strong {
  color: var(--accent);
}

/* ==========================================================================
   FLOATING WHATSAPP & REVEAL SYSTEM
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 1100;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.mobile-link {
  display: none;
}

.center-actions {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================================
   OWNER & LEADERSHIP PROFILE CARD
   ========================================================================== */
.owner-profile-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
  max-width: 960px;
  margin: 0 auto;
}

.owner-avatar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.owner-avatar-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  box-shadow: 0 0 20px var(--accent-glow);
}

.owner-tag {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}

.owner-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.owner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.owner-header h3 {
  font-size: 1.45rem;
  color: var(--text-heading);
  line-height: 1.2;
}

.owner-designation {
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 600;
}

.owner-bio {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.owner-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.owner-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.owner-meta-item i {
  color: var(--accent);
  font-size: 1rem;
}

.owner-meta-item small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.owner-meta-item strong {
  font-size: 0.82rem;
  color: var(--text-heading);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.8rem;
}

/* ==========================================================================
   INNER PAGE HERO
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 78px;
  background:
    radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(115deg, var(--deep), var(--deep-2));
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 760px;
  margin-top: 12px;
  color: var(--text-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.page-hero p {
  max-width: 650px;
  margin-top: 15px;
  color: var(--text);
  font-size: 1rem;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-form-card {
  padding: 30px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-card form {
  display: grid;
  gap: 17px;
}

.contact-form-card label {
  display: grid;
  gap: 7px;
  color: var(--text-heading);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: var(--bg-main);
  color: var(--text-heading);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--muted);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.contact-form-card select option {
  background: var(--bg-surface);
  color: var(--text-heading);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
  .highlight-grid,
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split-section {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .top-right {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
    padding: 10px 5%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.nav-login) {
    padding: 14px 0;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links > a:not(.nav-login)::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
    height: auto;
    display: block;
  }

  .nav-dropdown-toggle {
    width: 100%;
    height: auto;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--text-heading);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    margin: 6px 0 12px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown-menu a {
    border-bottom: none;
  }

  .nav-login {
    margin: 14px 0 8px;
    width: 100%;
  }

  .highlights {
    margin-top: -20px;
  }

  .split-section,
  .contact-grid,
  .service-grid,
  .review-grid,
  .highlight-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .desktop-link {
    display: none;
  }

  .mobile-link {
    display: block;
    margin-top: 25px;
  }

  .image-wrap > img {
    height: 300px;
  }

  .image-badge {
    right: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 190px;
  }

  .gallery-item.tall {
    grid-row: auto;
    height: 220px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .owner-profile-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .owner-header {
    justify-content: center;
    text-align: center;
  }

  .owner-meta-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 12px;
  }

  .page-hero {
    padding: 72px 0 60px;
  }

  .contact-form-card {
    padding: 22px;
  }
}

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

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   MODERN INTERACTIVE ANIMATIONS & ENTRANCE SYSTEM
   ========================================================================== */

/* 1. Staggered Dynamic Reveal Types */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Slide in from Left (For image wraps / split layouts) */
.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from Right (For text copy / split layouts) */
.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 2. Shimmering Glow on Hero Accent Text */
.hero h1 span {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 50%, #93c5fd 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 4s ease-in-out infinite;
}

@keyframes shine-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* 3. Pulsing Glow on Eyebrow Badges */
.eyebrow {
  position: relative;
  transition: transform 0.3s ease;
}

.hero-eyebrow {
  animation: float-soft 3.5s ease-in-out infinite;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* 4. Interactive Magnetic Glow on Service & Highlight Cards */
.highlight-card,
.service-card,
.editorial-card,
.review-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease,
              background 0.3s ease !important;
}

.highlight-card:hover,
.service-card:hover,
.editorial-card:hover {
  transform: translateY(-7px) scale(1.015) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 
              0 0 20px rgba(56, 189, 248, 0.15) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
}

/* Interactive Icon Spin & Glow on Card Hover */
.highlight-card:hover .icon,
.service-card:hover .icon {
  transform: rotate(6deg) scale(1.1);
  background: rgba(37, 99, 235, 0.3);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon {
  transition: all 0.3s ease;
}

/* 5. Ambient Pulse on Floating Action Buttons */
.floating-whatsapp {
  animation: pulse-ring 2.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}