/* ============================================================
   DYNASOL WORKSPACE — STYLESHEET
   Table of contents:
   1. Design tokens & resets
   2. Typography & layout utilities
   3. Buttons & interactions
   4. Preloader / progress bar / cursor
   5. Navigation
   6. Hero
   7. Reveal-on-scroll system
   8. Why choose us
   9. About
   10. Amenities
   11. Gallery / carousel / lightbox
   12. Pricing
   13. Who this is for
   14. Testimonials
   15. Location
   16. FAQ accordion
   17. Contact form
   18. WhatsApp float + footer
   19. Responsive
   20. Reduced motion / accessibility
============================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  --primary: #0B3D91;
  --primary-dark: #082a66;
  --primary-light: #1c5cc9;
  --secondary: #FF7A00;
  --secondary-light: #ff9640;
  --bg: #ffffff;
  --accent: #F5F7FA;
  --text: #1A1A1A;
  --text-light: #666666;
  --surface: #ffffff;
  --border: rgba(11, 61, 145, 0.09);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 2px 10px rgba(11, 61, 145, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 61, 145, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 61, 145, 0.16);
  --radius-sm: 10px;
  --logo-color: #FFFFFF --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 100px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --nav-h: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

[data-theme="dark"] {
  --bg: #0a1428;
  --accent: #0f1c38;
  --text: #eef2fb;
  --logo-color: #FFFFFF --text-light: #9aa8c4;
  --surface: #101d3a;
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(16, 29, 58, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}

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

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

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

input,
select,
textarea {
  font: inherit;
  color: inherit
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ---------- 2. Typography & layout ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em
}

h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: .5rem
}

h3 {
  font-size: 1.25rem
}

p {
  color: var(--text-light)
}

section[id],
.hero {
  scroll-margin-top: var(--nav-h)
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px
}

.container-narrow {
  max-width: 820px
}

.section {
  padding: 120px 0;
  position: relative
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px
}

.section-head.light h2,
.section-head.light p {
  color: #fff
}

.section-head.light p {
  color: rgba(255, 255, 255, 0.75)
}

.section-sub {
  margin-top: 10px;
  font-size: 1.05rem
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(255, 122, 0, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.text-gradient {
  background: linear-gradient(100deg, var(--secondary), var(--primary-light) 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* dot-grid texture — recurring signature motif */
.dot-texture {
  background-image: radial-gradient(var(--border) 1.4px, transparent 1.4px);
  background-size: 26px 26px
}

.dot-texture-dark {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary) 120%);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.4px, transparent 1.4px), linear-gradient(180deg, var(--primary-dark), var(--primary) 120%);
  background-size: 26px 26px, cover;
  color: #fff;
}

.dot-texture-dark p {
  color: rgba(255, 255, 255, 0.72)
}

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.32)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.42)
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(6px)
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px)
}

.dot-texture-dark .btn-outline,
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35)
}

.hero .btn-outline:hover {
  border-color: #fff
}

.btn-block {
  width: 100%
}

.btn-ripple {
  position: relative
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple .6s var(--ease) forwards;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0
  }
}

/* ---------- 4. Preloader / progress / cursor ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.preloader.done {
  opacity: 0;
  visibility: hidden
}

.preloader-grid {
  display: grid;
  grid-template-columns: repeat(2, 16px);
  grid-template-rows: repeat(2, 16px);
  gap: 6px
}

.preloader-grid span {
  background: var(--secondary);
  border-radius: 4px;
  animation: pgrid 1.1s ease-in-out infinite
}

.preloader-grid span:nth-child(2) {
  animation-delay: .12s
}

.preloader-grid span:nth-child(3) {
  animation-delay: .24s
}

.preloader-grid span:nth-child(4) {
  animation-delay: .36s
}

@keyframes pgrid {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(.55);
    opacity: .5
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-light));
  width: 0%;
  z-index: 2000;
  transition: width .1s linear
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
  transform: translate(-50%, -50%);
  left: -400px;
  top: -400px;
  transition: opacity .3s;
}

@media (hover:none) {
  .cursor-glow {
    display: none
  }
}

/* ---------- 5. logo ---------- */

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

.logo-image {
  display: block;
  width: auto;
  height: 40px;
  max-height: 65px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
} */

/* Tablet */
@media (max-width: 992px) {
  .logo-image {
    height: 55px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-image {
    height: 48px;
  }
}


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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: 55px;
  height: auto;
  display: block;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  /* Prevents wrapping */
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.logo-text em {
  font-style: normal;
  color: var(--secondary);
  font-weight: 600;
}


/* ---------- 5. Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(10, 20, 40, 0.75)
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--logo-color);
  transition: color .4s
}

.navbar:not(.scrolled) .logo-text {
  color: #fff
}

[data-theme="dark"] .navbar:not(.scrolled) .logo-text {
  color: #fff
}

.logo-text em {
  font-style: normal;
  color: var(--secondary)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px
}

.nav-link {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color .3s, background .3s;
}

.navbar.scrolled .nav-link {
  color: var(--text)
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.12)
}

.navbar.scrolled .nav-link:hover {
  background: var(--accent)
}

.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16)
}

.navbar.scrolled .nav-link.active {
  color: var(--primary);
  background: rgba(11, 61, 145, 0.08);
  font-weight: 600
}

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

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color .3s, color .3s, transform .3s;
}

.navbar.scrolled .theme-toggle {
  color: var(--text);
  border-color: var(--border)
}

.theme-toggle:hover {
  transform: rotate(20deg)
}

.icon-moon {
  display: none
}

[data-theme="dark"] .icon-sun {
  display: none
}

[data-theme="dark"] .icon-moon {
  display: block
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px
}

.hamburger span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s
}

.navbar.scrolled .hamburger span {
  background: var(--text)
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(8, 26, 64, 0.88), rgba(8, 26, 64, 0.72) 55%, rgba(8, 26, 64, 0.94)),
    linear-gradient(120deg, rgba(11, 61, 145, 0.55), rgba(255, 122, 0, 0.18)); */

  background: linear-gradient(180deg, rgba(5, 10, 20, 0.88), rgba(7, 34, 94, 0.72) 55%, rgba(108, 113, 122, 0.94)),
    linear-gradient(120deg, rgba(34, 49, 73, 0.521), rgba(255, 122, 0, 0.18));
}

.desk-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5
}

.desk-grid rect {
  fill: rgba(255, 255, 255, 0.06)
}

.desk-grid rect.lit {
  fill: var(--secondary-light);
  opacity: .55
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  animation: blobfloat 14s ease-in-out infinite
}

.blob-1 {
  width: 340px;
  height: 340px;
  background: var(--secondary);
  top: 8%;
  right: 6%
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: var(--primary-light);
  bottom: 6%;
  left: 4%;
  animation-delay: 3s
}

@keyframes blobfloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(20px, -30px) scale(1.12)
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  margin-bottom: 18px
}

.reveal-line {
  display: block;
  overflow: hidden
}

.reveal-line span {
  display: block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
  transition-delay: var(--d, 0s)
}

.reveal-line.in-view span {
  transform: translateY(0)
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  font-weight: 500
}

.typing {
  color: var(--secondary-light);
  font-weight: 700;
  border-right: 2px solid var(--secondary-light);
  padding-right: 3px
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 1.02rem
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18)
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #fff
}

.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.68)
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  display: block;
  position: relative
}

.wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite
}

@keyframes wheel {
  0% {
    opacity: 1;
    top: 6px
  }

  70% {
    opacity: 0;
    top: 20px
  }

  100% {
    opacity: 0;
    top: 6px
  }
}

/* ---------- 7. Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--sd, 0s)
}

.reveal[data-reveal="fade-up"] {
  transform: translateY(36px)
}

.reveal[data-reveal="fade-left"] {
  transform: translateX(-46px)
}

.reveal[data-reveal="fade-right"] {
  transform: translateX(46px)
}

.reveal[data-reveal="scale"] {
  transform: scale(.88)
}

.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1)
}

/* ---------- 8. Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

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

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.1), rgba(255, 122, 0, 0.12));
  color: var(--primary);
  margin-bottom: 18px;
  transition: transform .4s var(--ease);
}

.why-icon svg {
  width: 24px;
  height: 24px
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
  color: var(--secondary)
}

.why-card h3 {
  margin-bottom: 6px;
  font-size: 1.08rem
}

.why-card p {
  font-size: .92rem
}

/* ---------- 9. About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.about-media {
  position: relative
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover
}

.img-zoom {
  overflow: hidden
}

.about-media {
  overflow: visible
}

.about-media img {
  transition: transform .8s var(--ease)
}

.about-media:hover img {
  transform: scale(1.05)
}

.about-media-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
}

.about-media-card .stat-num {
  color: var(--primary);
  font-size: 1.8rem
}

.about-media-card span:last-child {
  font-size: .82rem;
  color: var(--text-light)
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px)
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.02rem
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500
}

.about-list svg {
  color: var(--secondary);
  flex-shrink: 0
}

.about-counters {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border)
}

.about-counters div {
  display: flex;
  flex-direction: column
}

.about-counters .stat-num {
  color: var(--primary);
  font-size: 1.7rem
}

.about-counters span:last-child {
  font-size: .82rem;
  color: var(--text-light)
}

/* ---------- 10. Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px
}

.amenity-card {
  padding: 28px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform .4s var(--ease), background .4s;
}

.amenity-card svg {
  width: 30px;
  height: 30px;
  color: var(--secondary-light);
  margin-bottom: 12px
}

.amenity-card:hover {
  transform: translateY(-6px) scale(1.03)
}

.amenity-card h4 {
  font-size: .95rem;
  font-weight: 600;
  color: #fff
}

/* ---------- 11. Gallery ---------- */
.carousel {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;

  padding: 6px 0 20px;

  scrollbar-width: none;
  box-sizing: border-box;
  width: 100%;
}

.carousel-track::-webkit-scrollbar {
  display: none
}

.carousel-slide {
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);

}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #202020;
  /* Combined width, style, and color */
  transition: transform .7s var(--ease);
}

.carousel-slide:hover img {
  transform: scale(1.1)
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 2;
  transition: background .3s, color .3s;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff
}

.carousel-btn.prev {
  left: 0
}

.carousel-btn.next {
  right: 0
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s, width .3s
}

.carousel-dots span.active {
  background: var(--secondary);
  width: 22px;
  border-radius: 5px
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(6, 12, 26, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}

.lightbox[hidden] {
  display: none
}

.lightbox img {
  max-width: min(900px, 90vw);
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg)
}

.lightbox-caption {
  color: #fff;
  font-weight: 500
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2)
}


/* ---------- 12.  ---------- */




.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);

  border: 2px solid #0f1f63;
  /* Black border */

  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 2;
  transition: background .3s, color .3s, border-color .3s;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: #000;
}

/* ---------- 12. Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md)
}

.price-card.featured {
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  color: #fff;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  border: none;
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-10px)
}

.price-card.featured p,
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.72)
}

.price-card.featured .price-features svg {
  color: var(--secondary-light)
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm)
}

.price-sub {
  font-size: .9rem;
  margin-bottom: 20px
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 26px
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700
}

.price-period {
  font-size: .9rem;
  color: var(--text-light)
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem
}

.price-features svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px
}

/* ---------- 13. Who this is for ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px
}

.who-card {
  padding: 30px 20px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.02rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  border: 1px solid var(--border);
  color: var(--primary);
  transition: transform .4s var(--ease), background .4s, color .4s, box-shadow .4s;
}

.who-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

/* ---------- 14. Testimonials ---------- */
/* .testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto
}

.testimonial-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg)
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 48px;
  text-align: center;
  transition: opacity .5s;
} */
/* ==========================================
   TESTIMONIAL SLIDER
========================================== */

.testimonial-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 30px 80px;
}

/* Fade edges */

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 20;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

/* ==========================================
   TRACK
========================================== */

.testimonial-track {
  display: flex;
  gap: 32px;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

/* ==========================================
   CARD
========================================== */

.testimonial-card {

  flex: 0 0 calc((100%) / 3);

  box-sizing: border-box;

  padding: 42px 34px;

  border-radius: 24px;

  background: linear-gradient(135deg,
      var(--primary),
      #8e949b);

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .12);

  transition:
    transform .45s ease,
    opacity .45s ease,
    filter .45s ease,
    box-shadow .45s ease;
}

/* ==========================================
   ACTIVE CARD
========================================== */

.testimonial-card.active {

  transform: translateY(-10px) scale(1.03);

  opacity: 1;

  filter: none;

  z-index: 5;

  box-shadow:
    0 24px 60px rgba(0, 0, 0, .25);

  border: 1px solid rgba(255, 255, 255, .14);
}

/* ==========================================
   SIDE CARDS
========================================== */

.testimonial-card:not(.active) {

  opacity: .55;

  transform: scale(.94);

  filter: grayscale(.15) brightness(.9);
}

/* ==========================================
   CONTENT
========================================== */

.quote-mark {
  color: var(--secondary-light);
  margin-bottom: 18px;
  font-size: 2rem;
}

.testimonial-card p {

  font-size: 1.05rem;

  line-height: 1.75;

  color: #fff;

  margin-bottom: 30px;

  font-weight: 500;
}

.testimonial-author {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 6px;
}

.avatar {

  width: 56px;
  height: 56px;

  border-radius: 50%;

  background: var(--secondary);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;

  margin-bottom: 10px;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .2);
}

.testimonial-author strong {
  color: #fff;
  font-size: 1rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
}

.stars {

  color: var(--secondary-light);

  margin-top: 8px;

  letter-spacing: 3px;

  font-size: .95rem;
}

/* ==========================================
   DOTS
========================================== */

.testimonial-dots {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 10px;

  margin-top: 32px;
}

.testimonial-dots span {

  width: 8px;
  height: 8px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .25);

  cursor: pointer;

  transition: all .3s ease;
}

.testimonial-dots span:hover {

  background: rgba(255, 255, 255, .45);
}

.testimonial-dots span.active {

  width: 28px;

  background: var(--secondary);

  border-radius: 999px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:992px) {

  .testimonial-slider {
    padding: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 32px)/2);
  }
}

@media (max-width:768px) {

  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    display: none;
  }
}

/* ---------- 15. Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.location-info .eyebrow {
  display: inline-block;
  margin-bottom: 16px
}

.location-info h2 {
  margin-bottom: 28px
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px
}

.location-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.location-list svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px
}

.location-list strong {
  display: block;
  margin-bottom: 2px
}

.location-list span {
  color: var(--text-light);
  font-size: .94rem
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px
}

/* ---------- 16. FAQ ---------- */
.accordion-item {
  border-bottom: 1px solid var(--border)
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  text-align: left;
}

.accordion-trigger svg {
  transition: transform .4s var(--ease);
  color: var(--secondary);
  flex-shrink: 0
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg)
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease)
}

.accordion-panel p {
  padding: 0 4px 22px;
  font-size: .96rem
}

/* ---------- 17. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px
}

.contact-info h2 {
  margin-bottom: 16px
}

.contact-info>p {
  margin-bottom: 30px
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px
}

.contact-list svg {
  color: var(--secondary);
  flex-shrink: 0
}

.contact-list a:hover {
  color: var(--primary)
}

.contact-form {
  padding: 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md)
}

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

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group label {
  font-size: .85rem;
  font-weight: 600
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.1);
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #e0483e
}

.form-error {
  font-size: .78rem;
  color: #e0483e;
  min-height: 1em
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin .7s linear infinite
}

#cfSubmit.loading .btn-text {
  opacity: .6
}

#cfSubmit.loading .btn-spinner {
  display: inline-block
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.form-status {
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 600;
  min-height: 1.2em
}

.form-status.success {
  color: #1a9e5c
}

.form-status.error {
  color: #e0483e
}

/* ---------- 18. WhatsApp + footer ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 900;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(1.9);
    opacity: 0
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .82rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0)
}

.footer {
  padding: 80px 0 0;
  position: relative
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12)
}

.footer-brand p {
  margin-top: 14px;
  margin-left: 70px;
  max-width: 280px;
  font-size: .9rem
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: .95rem
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: .92rem;
  margin-bottom: 10px;
  transition: color .3s
}

.footer-col a:hover {
  color: var(--secondary-light)
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0
}

.footer-social a:hover {
  background: var(--secondary)
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.6)
}

.footer-legal {
  display: flex;
  gap: 20px
}

.footer-legal a:hover {
  color: #fff
}

.back-to-top {
  position: absolute;
  top: -24px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .3s;
}

.back-to-top:hover {
  transform: translateY(-4px)
}

/* ---------- 19. Responsive ---------- */
/* @media (max-width:1024px) {

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr
  }

  .price-card.featured {
    transform: none
  }

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

@media (max-width:860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0)
  }

  .nav-link {
    color: var(--text) !important;
    padding: 14px 16px
  }

  .nav-link.active {
    background: var(--accent) !important;
    color: var(--primary) !important
  }

  .hamburger {
    display: flex
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .nav-cta {
    display: none
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .section {
    padding: 80px 0
  }

  .hero-stats {
    gap: 22px 34px
  }

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

  .contact-form {
    padding: 26px
  }

  .about-media-card {
    right: 0;
    bottom: -18px;
    padding: 16px 18px
  }
} */

/* ==========================================================
   19. RESPONSIVE
========================================================== */

/* ==============================
   TABLETS (1024px and below)
==============================*/

@media (max-width:1024px) {

  .container {
    padding: 0 24px;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  /* Logo */

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
  }

  .logo-image {
    width: auto;
    height: 46px;
  }

  .logo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1.05;
    font-size: .98rem;
  }

  .logo-text span {
    display: block;
  }

  /* Right Actions */

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .theme-toggle {
    order: 1;
  }

  .nav-cta {
    order: 2;
    display: inline-flex;
    padding: 11px 18px;
    font-size: .88rem;
  }

  .hamburger {
    order: 3;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  /* Navigation Drawer */

  .nav-links {

    position: fixed;

    top: 72px;

    right: 0;

    width: 320px;

    max-width: 100%;

    height: calc(100vh - 72px);

    display: flex;

    flex-direction: column;

    align-items: stretch;

    justify-content: flex-start;

    background: var(--bg);

    padding: 28px 20px;

    gap: 8px;

    transform: translateX(100%);

    transition: .35s ease;

    overflow-y: auto;

    box-shadow: -12px 0 35px rgba(0, 0, 0, .12);

    z-index: 1000;

  }

  .nav-links.open {

    transform: translateX(0);

  }

  .nav-link {

    color: var(--text) !important;

    padding: 14px 18px;

    border-radius: 12px;

    font-size: .95rem;

  }

  .nav-link:hover {

    background: rgba(0, 0, 0, .05);

  }

  .nav-link.active {

    background: var(--accent) !important;

    color: var(--primary) !important;

  }

  /* Hamburger Animation */

  .hamburger.open span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

  }

  .hamburger.open span:nth-child(2) {

    opacity: 0;

  }

  .hamburger.open span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

  }

  /* Sections */

  .about-grid,
  .location-grid,
  .contact-grid {

    grid-template-columns: 1fr;

    gap: 46px;

  }

  .pricing-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .price-card.featured {

    transform: none;

  }

  .footer-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}


/* ==============================
   MOBILE (768px and below)
==============================*/

@media (max-width:768px) {

  .container {

    padding: 0 16px;

  }

  .navbar {

    padding: 10px 15px;

  }

  .nav-container {

    gap: 10px;

  }

  /* Logo */

  .logo {

    flex: 1;

    display: flex;

    align-items: center;

    gap: 10px;

  }

  .logo-image {

    height: 40px;

  }

  /* 
  .logo-text {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 2px;

    white-space: normal;

    line-height: 1.05;

  }

  .logo-text span:first-child {

    font-size: .95rem;

    font-weight: 700;

  }

  .logo-text span:last-child {

    font-size: .72rem;

  } */

  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    white-space: normal;
    line-height: 1.05;
  }

  .logo-text span {
    display: block;
  }

  .logo-text span:first-child {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .logo-text span:last-child {
    font-size: 0.72rem;
    font-weight: 500;
  }

  .logo-text em {

    font-style: normal;

  }

  /* Actions */

  .nav-cta {

    display: none;

  }

  .theme-toggle {

    width: 36px;

    height: 36px;

  }

  .hamburger {

    width: 36px;

    height: 36px;

  }

  /* Fullscreen Menu */

  .nav-links {

    top: 64px;

    width: 100%;

    height: calc(100vh - 64px);

    right: 0;

    box-shadow: none;

    padding: 24px 18px;

  }

  .nav-link {

    padding: 15px 18px;

    font-size: 15px;

  }

  /* Layout */

  .pricing-grid {

    grid-template-columns: 1fr;

  }

  .form-row {

    grid-template-columns: 1fr;

  }

  .hero-grid {

    grid-template-columns: 1fr;

    gap: 42px;

  }

  .hero-stats {

    justify-content: center;

    gap: 18px;

  }

  .section {

    padding: 80px 0;

  }

  .footer-grid {

    grid-template-columns: 1fr;

    gap: 34px;

  }

  .contact-form {

    padding: 24px;

  }

  .about-media-card {

    right: 0;

    bottom: -16px;

  }

}


/* ==============================
   SMALL PHONES
==============================*/

@media (max-width:480px) {

  .container {

    padding: 0 14px;

  }

  .logo-image {

    height: 34px;

  }

  /* 
  .logo-text span:first-child {

    font-size: .88rem;

  }

  .logo-text span:last-child {

    font-size: .64rem;

  } */

  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    white-space: normal;
    line-height: 1.05;
  }

  .logo-text span {
    display: block;
  }

  .logo-text span:first-child {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .logo-text span:last-child {
    font-size: 0.72rem;
    font-weight: 500;
  }

  .theme-toggle {

    width: 34px;

    height: 34px;

  }

  .hamburger {

    width: 34px;

    height: 34px;

  }

  .nav-links {

    padding: 20px 16px;

  }

  .hero-title {

    font-size: 2rem;

  }

  .section {

    padding: 70px 0;

  }

  .contact-form {

    padding: 18px;

  }

  .footer {

    text-align: center;

  }

}

/* ==========================================================
   19. Responsive
========================================================== */


/* ---------- 20. Accessibility / reduced motion ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important
  }
}

