/* ═══════════════════════════════════════════
   OMSUN PREMIUM — Design System
   Inspired by flyward.com aesthetic
   ═══════════════════════════════════════════ */

:root {
  --cream: #FAF8F5;
  --sand: #F0EDE8;
  --charcoal: #1A1A1A;
  --graphite: #333333;
  --muted: #7A7A7A;
  --accent: #2563EB;
  --accent-soft: #EFF6FF;
  --warm-white: #FEFCFA;
  --border: rgba(0, 0, 0, 0.08);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--graphite);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


::selection {
  background: var(--accent);
  color: #fff;
}

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

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

ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 100px;
}


.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.logo-img {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s var(--ease);
}

.site-logo:hover .logo-img {
  transform: scale(1.02);
}


.site-nav ul {
  display: flex;
  gap: 36px;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

.site-nav a:hover {
  color: var(--charcoal);
}

.site-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--charcoal);
  padding: 12px 28px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.header-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.cta-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  text-align: center;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 2.5rem;
  display: block;
  padding: 12px 0;
  color: var(--charcoal);
}

.mobile-cta {
  display: inline-flex !important;
  align-items: center;
  background: #111 !important;
  color: #fff !important;
  padding: 10px 32px !important;
  height: 44px;
  border-radius: 100px !important;
  font-size: 1rem !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
}

.btn-dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--charcoal);
}

.btn-outline:hover {
  border-color: var(--charcoal);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.05);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-badge strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

/* ── Trusted Marquee Modern ── */
.trusted-marquee {
  padding: 60px 0;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.trusted-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 40px;
}

.trusted-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  flex-grow: 1;
  max-width: 250px;
}

.trusted-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.marquee-container {
  width: 100%;
  position: relative;
  padding: 8px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.marquee-track-modern {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  gap: 24px;
  padding: 0 12px;
}

.marquee-track-modern:hover {
  animation-play-state: paused;
}

.client-pill {
  padding: 16px 48px;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.client-pill.outline {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.client-pill span {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.client-pill:hover span {
  opacity: 1;
  color: var(--accent);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Section Commons ── */
.section {
  padding: 120px 48px;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-weight: 400;
}

.section-desc {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── Why Choose Us ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.feature-card {
  background: #fff;
  padding: 56px 40px;
  position: relative;
  transition: all 0.5s var(--ease-out);
}

.feature-card:hover {
  background: var(--accent-soft);
}

.feature-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 20px;
  right: 28px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--charcoal);
  transition: color 0.4s;
}

.feature-card:hover .feature-icon svg {
  color: #fff;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.service-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 520px;
  cursor: pointer;
  group: true;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.1) 50%, transparent 100%);
}

.service-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.service-overlay h3 {
  font-family: var(--serif);
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
}

.service-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 380px;
}

.service-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
  opacity: 0;
  transform: translateY(8px);
}

.service-arrow svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── Process ── */
.process-section {
  background: var(--charcoal);
  color: #fff;
}

.process-section .section-tag {
  color: rgba(255, 255, 255, 0.4);
}

.process-section .section-title {
  color: #fff;
}

.process-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}

.process-step {
  padding: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.process-step:first-child {
  border-left: none;
}

.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 32px;
}

.process-step h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}

/* ── CTA ── */
.cta-section {
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
  background: #3b82f6;
}

.btn-white {
  background: #fff;
  color: var(--charcoal);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  pointer-events: none;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 64px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.faq-item.active .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-a-inner {
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-a {
  max-height: 1000px;
  opacity: 1;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: #fff;
  padding: 100px 48px 48px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Inner Page Hero ── */
.page-hero {
  padding: 180px 48px 100px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-title {
  max-width: 700px;
  margin: 0 auto 20px;
}

.page-hero .section-desc {
  max-width: 560px;
  margin: 0 auto;
}

/* ── Contact Form ── */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
}

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

.form-select {
  appearance: none;
  cursor: pointer;
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.blog-thumb {
  height: 240px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

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

.blog-body {
  padding: 32px;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.blog-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.blog-body h3 a {
  transition: color 0.3s;
}

.blog-body h3 a:hover {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

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

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--charcoal);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Split Grid ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
}

/* ── Brand Tags ── */
.brand-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-tag {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--charcoal);
  transition: all 0.3s;
}

.brand-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Mini Stat Cards ── */
.mini-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.mini-stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.mini-stat-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.mini-stat-card span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Parallax Banner ── */
.parallax-banner {
  height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 24px;
}

.parallax-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.parallax-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ── Checklist ── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.3s;
}

.check-item:hover {
  border-color: var(--accent);
}

.check-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Services Mini Grid ── */
.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-mini-card {
  padding: 36px 28px;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.service-mini-card:hover {
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.service-mini-card .feature-icon {
  margin-bottom: 20px;
}

.service-mini-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.service-mini-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--graphite);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Stats Row ── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 0 24px;
}

.big-stat {
  text-align: center;
  color: #fff;
}

.big-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.big-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── Ultra Brands Showcase ── */
.ultra-brands-section {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ultra-brands-bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.ultra-brand-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.ultra-brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  gap: 32px;
  padding: 0 40px;
}

.ultra-brand-track:hover {
  animation-play-state: paused;
}

.ultra-brand-card {
  width: 240px;
  height: 140px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 30px;
  cursor: pointer;
}

.ultra-brand-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

.ultra-brand-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

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

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

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 40px;
  left: -40px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.about-badge svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.about-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--charcoal);
}

.about-badge span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  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;
}

/* ── Hero Overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(250, 248, 245, 1) 0%, rgba(250, 248, 245, 0.85) 40%, rgba(250, 248, 245, 0) 100%);
}

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

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 400px;
  }

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

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

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

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

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

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

  .about-img-sub {
    right: 20px;
    width: 200px;
    height: 200px;
  }

  .about-badge {
    left: 20px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .stats-row {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
    height: 80px;
  }

  .site-logo {
    font-size: 1.3rem;
  }

  .hero {
    padding: 120px 20px 60px;
    background-position: center !important;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.98) 0%, rgba(250, 248, 245, 0.9) 100%) !important;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
    margin-bottom: 20px !important;
  }

  .hero-desc {
    font-size: 1rem !important;
    margin-bottom: 32px !important;
  }

  .hero-stats {
    flex-wrap: wrap !important;
    gap: 20px 40px !important;
    margin-top: 32px !important;
    padding-top: 24px !important;
    flex-direction: row !important;
  }

  .hero-stat strong {
    font-size: 1.6rem !important;
  }

  .section {
    padding: 60px 20px;
    overflow: hidden;
  }

  .site-nav {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

  .page-hero {
    padding: 120px 20px 60px;
  }

  .site-footer {
    padding: 60px 20px 32px;
  }

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

  .stats-row {
    flex-direction: column;
    gap: 32px;
  }

  .parallax-banner {
    height: 400px;
    background-attachment: scroll;
  }

  .big-stat strong {
    font-size: 2.5rem;
  }

  /* Mobile Adjustments for Marquee & About */
  .trusted-marquee {
    padding: 40px 0;
    overflow: hidden;
  }

  .trusted-label-wrapper {
    margin-bottom: 24px;
    padding: 0 20px;
  }

  .client-pill {
    padding: 10px 24px;
  }

  .client-pill span {
    font-size: 1.1rem;
  }

  .ultra-brand-carousel {
    overflow: hidden;
    width: 100%;
  }

  .ultra-brand-card {
    width: 160px;
    height: 100px;
    padding: 20px;
  }

  .ultra-brand-track {
    gap: 15px;
  }

  .about-img-main {
    height: 280px;
  }

  .about-img-sub {
    width: 120px;
    height: 120px;
    right: 5px;
    bottom: -15px;
    border-width: 3px;
  }

  .about-badge {
    top: 15px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 10px;
  }

  .about-badge svg {
    width: 20px;
    height: 20px;
  }

  .about-badge strong {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }

  .site-logo {
    font-size: 1.15rem;
  }

  .hero-title {
    font-size: 2.4rem !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-stats {
    justify-content: space-between !important;
    gap: 15px !important;
  }

  .hero-stat {
    flex: 1;
    text-align: left;
  }

  .hero-stat strong {
    font-size: 1.4rem !important;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Salo-Inspired Grid System ── */
.salo-services-container {
  background: #fff;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.salo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  border-top: 1px solid var(--border);
}

.salo-quadrant {
  position: relative;
  height: 500px;
  padding: 80px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s var(--ease);
}

.salo-quadrant:nth-child(2n) {
  border-right: none;
}

.salo-quadrant-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
  transform: scale(1.1);
}

.salo-quadrant-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.salo-quadrant:hover .salo-quadrant-bg {
  opacity: 0.15;
  transform: scale(1);
}

.salo-quadrant:hover {
  background: #fff;
}

.salo-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.salo-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.salo-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}

.salo-quadrant:hover .salo-title {
  transform: translateY(-10px);
  color: var(--accent);
}

.salo-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}

.salo-quadrant:hover .salo-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Architectural Decorations */
.grid-label {
  position: absolute;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  text-transform: uppercase;
  z-index: 5;
}

.label-top-right {
  top: 12px;
  right: 12px;
}

.label-bottom-left {
  bottom: 12px;
  left: 12px;
}

.grid-intersection {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  z-index: 10;
  transform: translate(-50%, -50%);
}

/* Animations */
.line-draw {
  position: absolute;
  background: var(--border);
  transition: transform 1.2s var(--ease-out);
}

.line-v {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: scaleY(0);
  transform-origin: top;
}

.line-h {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.visible .line-v {
  transform: scaleY(1);
}

.visible .line-h {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .salo-grid {
    grid-template-columns: 1fr;
  }

  .salo-quadrant {
    height: auto;
    min-height: 400px;
    padding: 60px;
    border-right: none;
  }

  .salo-title {
    font-size: 2.8rem;
  }

  /* Services Page Specifics */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .about-grid>div {
    padding: 80px 48px !important;
    order: 2 !important;
  }

  .about-grid>div:last-child {
    order: 1 !important;
    min-height: 400px !important;
  }

  .salo-title {
    font-size: 3rem !important;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 160px 24px 80px !important;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem) !important;
  }

  .about-grid>div {
    padding: 60px 24px !important;
  }

  .about-grid>div:last-child {
    min-height: 300px !important;
  }

  .salo-title {
    font-size: 2.5rem !important;
    margin-bottom: 24px !important;
  }

  .section-desc {
    font-size: 1rem !important;
    margin-bottom: 32px !important;
  }

  .grid-label {
    display: none;
  }

  /* Hide labels on mobile to prevent clutter */
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 3.5rem !important;
  }

  .about-grid>div {
    padding: 48px 20px !important;
  }

  .salo-num {
    margin-bottom: 16px !important;
  }

  /* Fix inner grids like the 1fr 1fr benefits list */
  .about-grid div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}


/* ── WhatsApp Floating Button ── */
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none !important;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 20px rgba(66, 219, 135, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 0 #42db87;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  transition: all 300ms ease-in-out;
}

.contact_icon:hover {
  transform: scale(1.1);
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--sans);
}

.wa-notification-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #ff3b30;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 10;
}

@media (max-width: 768px) {
  .floating_btn {
    bottom: 20px;
    right: 20px;
    width: 65px;
  }

  .contact_icon {
    width: 50px;
    height: 50px;
  }

  .contact_icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .text_icon {
    font-size: 10px;
    margin-top: 4px;
  }
}

.my-float {
  font-size: 34px !important;
  color: #fff;
}

@media (max-width: 768px) {
  .my-float {
    font-size: 28px !important;
  }
}