/* ============================================
   All in One Deco Solutions â€” Global Styles
   Premium Corporate Interior Design Website
   ============================================ */

/* --- Font Face --- */
@font-face {
  font-family: "Helvetica Regular";
  src: url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.eot");
  src: url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.eot?#iefix") format("embedded-opentype"),
       url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.woff2") format("woff2"),
       url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.woff") format("woff"),
       url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.ttf") format("truetype"),
       url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.svg#Helvetica Regular") format("svg");
}

/* --- CSS Custom Properties --- */
:root {
  --font-helvetica: "Helvetica Regular", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --bg-main: #f0f0f0;
  --color-navy: rgba(30, 50, 90, 0.8);
  --color-navy-solid: rgba(30, 50, 90, 1);
  --color-navy-raw: 30, 50, 90;
  --color-text: #2d2d3a;
  --color-text-muted: #5E6470;
  --color-dark: #1a1a2e;
  --glass-bg: rgba(255, 255, 255, 0.3);
  --glass-bg-light: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.2);
  --radius-lg: 3rem;
  --radius-md: 1.5rem;
}

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

html {
  font-family: var(--font-helvetica);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg-main);
  color: var(--color-text);
}

ul, li {
  list-style: none;
}

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

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

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

/* --- Main Container --- */
.main {
  min-height: 100vh;
  background-color: var(--bg-main);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-outer {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background-color: var(--bg-main);
}

.hero-section {
  position: relative;
  width: 100%;
  max-width: 1536px;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(240, 240, 240, 0.45) 0%,
    rgba(240, 240, 240, 0.25) 30%,
    rgba(240, 240, 240, 0.15) 50%,
    rgba(240, 240, 240, 0.20) 70%,
    rgba(240, 240, 240, 0.40) 100%
  );
  z-index: 1;
}

.content-layer {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Fixed navbar for scrolling sections */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  background: rgba(240, 240, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar-fixed.visible {
  transform: translateY(0);
}

.navbar-spacer {
  flex: 1;
  display: none;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  color: var(--color-dark);
  font-weight: 400;
  font-size: 0.875rem;
}

.nav-item {
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-item:hover {
  opacity: 0.7;
}

.nav-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.mobile-logo span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* Desktop logo (hidden on mobile, shown on md+) */
.desktop-logo {
  display: none;
  align-items: center;
  gap: 0.625rem;
  flex: 1;
}

.desktop-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.desktop-logo span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.03em;
  line-height: 1.15;
  white-space: nowrap;
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-dark);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(240, 240, 240, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2001;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-menu-brand {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.08em;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
  color: var(--color-dark);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-item {
  padding: 1rem 0;
  font-size: 1.125rem;
  color: var(--color-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-item:hover {
  opacity: 0.7;
}

.mobile-nav-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.4;
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: 2rem;
}

/* CTA Button */
.cta-button {
  display: flex;
  align-items: center;
  background: var(--color-navy);
  color: white;
  border-radius: 9999px;
  padding: 0.375rem 1rem 0.375rem 0.5rem;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
  font-size: 0.8125rem;
  font-weight: 400;
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--color-navy-solid);
  transform: scale(1.02);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button.full-width {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  font-size: 1rem;
}

.cta-icon-circle {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.cta-button:hover .cta-icon-circle {
  background: rgba(255, 255, 255, 0.25);
}

.cta-icon-circle svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   HERO TEXT
   ============================================ */
.hero-text-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  max-width: 56rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--glass-bg-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  margin: 0 auto 0.75rem auto;
  width: fit-content;
  font-size: 0.8125rem;
  color: var(--color-text);
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
  opacity: 0;
  transform: scale(0.98);
}

.hero-description {
  font-size: 0.875rem;
  color: var(--color-dark);
  opacity: 0;
  line-height: 1.6;
  max-width: 36rem;
  font-weight: 400;
}

/* ============================================
   BOTTOM LEFT CARD
   ============================================ */
.bottom-left-card {
  position: absolute;
  bottom: 7rem;
  right: 1rem;
  left: auto;
  padding: 0.75rem;
  border-radius: 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 140px;
  width: fit-content;
  opacity: 0;
  transform: translateX(-20px);
}

.card-metric {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.card-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
  white-space: nowrap;
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--color-navy);
  color: white;
  font-size: 0.75rem;
  font-weight: 400;
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.card-cta:hover {
  background: var(--color-navy-solid);
  transform: scale(1.02);
}

.card-cta:active {
  transform: scale(0.98);
}

.card-cta svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   BOTTOM RIGHT CORNER
   ============================================ */
.bottom-right-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.75rem;
  padding-top: 1.25rem;
  padding-left: 2rem;
  background: var(--bg-main);
  border-top-left-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
}

.corner-mask-top {
  position: absolute;
  top: calc(-1 * var(--radius-md));
  right: 0;
  width: var(--radius-md);
  height: var(--radius-md);
  pointer-events: none;
}

.corner-mask-left {
  position: absolute;
  bottom: 0;
  left: calc(-1 * var(--radius-md));
  width: var(--radius-md);
  height: var(--radius-md);
  pointer-events: none;
}

.corner-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 50, 90, 0.05);
  border: 1px solid rgba(30, 50, 90, 0.1);
  flex-shrink: 0;
}

.corner-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-dark);
  opacity: 0.7;
}

.corner-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.corner-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
}

.corner-subtitle {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.corner-subtitle:hover {
  opacity: 0.7;
}

.corner-subtitle svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   SHARED â€” SECTION STYLES
   ============================================ */
.section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(var(--color-navy-raw), 0.06);
  border: 1px solid rgba(var(--color-navy-raw), 0.1);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 38rem;
  font-weight: 400;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: white;
  border-radius: 2rem;
  margin: 0 1.25rem;
  padding: 3rem 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: var(--bg-main);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(var(--color-navy-raw), 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-dark);
  opacity: 0.75;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.project-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0,0,0,0.6) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.project-card:hover .project-card-overlay {
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0,0,0,0.7) 100%
  );
}

.project-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 0.6875rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  width: fit-content;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.project-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: white;
  border-radius: 2rem;
  margin: 0 1.25rem;
  padding: 3rem 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: var(--bg-main);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  counter-increment: step;
}

.step-number {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 50%;
  background: rgba(var(--color-navy-raw), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-dark);
}

.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.cta-card {
  background: var(--color-dark);
  border-radius: 2rem;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(var(--color-navy-raw), 0.4) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.cta-card .section-label {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.cta-card .section-label svg {
  opacity: 0.5;
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  position: relative;
}

.cta-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--color-dark);
  border-radius: 9999px;
  padding: 0.75rem 2rem 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.cta-btn-light:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-btn-light:active {
  transform: scale(0.98);
}

.cta-btn-light svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.footer-brand-header img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0;
  line-height: 1.2;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 24rem;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--color-dark);
}

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

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col li:hover {
  color: var(--color-dark);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 1rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links span {
  cursor: pointer;
  transition: color 0.2s;
}

.footer-bottom-links span:hover {
  color: var(--color-dark);
}

/* ============================================
   ANIMATIONS â€” Keyframes
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.8; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-badge     { animation: fadeInUp 0.6s ease-out 0.1s forwards; }
.animate-heading   { animation: fadeInScale 0.8s ease-out 0.2s forwards; }
.animate-description { animation: fadeIn 0.8s ease-out 0.4s forwards; }
.animate-card-left { animation: slideInLeft 0.8s ease-out 0.2s forwards; }
.animate-corner    { animation: slideInUp 0.8s ease-out 0.4s forwards; }

/* ============================================
   RESPONSIVE â€” â‰¥ 640px (sm)
   ============================================ */
@media (min-width: 640px) {
  .hero-heading {
    font-size: 3.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .bottom-right-corner {
    padding: 1rem;
    padding-top: 1.5rem;
    padding-left: 2.5rem;
    border-top-left-radius: 2rem;
    gap: 1rem;
    --radius-md: 2rem;
  }

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

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

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

  .section-title {
    font-size: 2.25rem;
  }

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

/* ============================================
   RESPONSIVE â€” â‰¥ 768px (md)
   ============================================ */
@media (min-width: 768px) {
  .hero-outer {
    padding: 1.25rem;
  }

  .hero-section {
    border-radius: var(--radius-lg);
  }

  .navbar {
    padding: 1.5rem 2.5rem;
  }

  .navbar-fixed {
    padding: 1rem 2.5rem;
  }

  .navbar-spacer {
    display: none;
  }

  .desktop-logo {
    display: flex;
  }

  .nav-menu {
    display: flex;
  }

  .mobile-logo {
    display: none;
  }

  .mobile-menu-btn {
    display: none;
  }

  .cta-button {
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    gap: 0.75rem;
    font-size: 0.875rem;
  }

  .cta-icon-circle {
    width: 32px;
    height: 32px;
  }

  .cta-icon-circle svg {
    width: 16px;
    height: 16px;
  }

  .hero-text-container {
    padding-top: 2rem;
  }

  .hero-heading {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-badge {
    font-size: 0.875rem;
  }

  .bottom-left-card {
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
    padding: 1rem;
    border-radius: 1.5rem;
    min-width: 150px;
    gap: 0.5rem;
  }

  .card-metric {
    font-size: 2.5rem;
  }

  .card-label {
    font-size: 0.8125rem;
  }

  .card-cta {
    font-size: 0.8125rem;
    padding: 0.5rem 1.125rem;
  }

  .bottom-right-corner {
    padding: 1.5rem;
    padding-top: 2rem;
    padding-left: 3.5rem;
    border-top-left-radius: 3.5rem;
    gap: 1.5rem;
    --radius-md: 3.5rem;
  }

  .corner-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .corner-icon svg {
    width: 22px;
    height: 22px;
  }

  .corner-title {
    font-size: 0.9375rem;
  }

  .corner-subtitle {
    font-size: 0.8125rem;
  }

  .corner-subtitle svg {
    width: 14px;
    height: 14px;
  }

  .hero-bg {
    object-position: center center;
  }

  /* Sections */
  .section {
    padding: 6rem 2.5rem;
  }

  .services-section,
  .process-section {
    margin: 0 1.25rem;
    padding: 4rem 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

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

  .cta-section {
    padding: 5rem 2.5rem;
  }

  .cta-card {
    padding: 4rem 3rem;
    border-radius: 2.5rem;
  }

  .cta-card h2 {
    font-size: 2.5rem;
  }

  .footer {
    padding: 4rem 2.5rem 2rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    max-width: 280px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   RESPONSIVE â€” â‰¥ 1024px (lg)
   ============================================ */
@media (min-width: 1024px) {
  .hero-heading {
    font-size: 5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .bottom-left-card {
    bottom: 2.5rem;
    left: 2.5rem;
    padding: 1.25rem;
    border-radius: 2.2rem;
    min-width: 180px;
    gap: 0.75rem;
  }

  .card-metric {
    font-size: 3rem;
  }

  .card-label {
    font-size: 0.875rem;
  }

  .card-cta {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .card-cta svg {
    width: 14px;
    height: 14px;
  }

  .section-title {
    font-size: 2.75rem;
  }

  .section-subtitle {
    font-size: 1.0625rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .projects-grid .project-card:first-child {
    grid-column: span 2;
    aspect-ratio: 21/9;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem 1.5rem;
  }

  .cta-card {
    padding: 5rem 4rem;
    border-radius: 3rem;
  }

  .cta-card h2 {
    font-size: 3rem;
  }
}

/* ============================================
   RESPONSIVE â€” â‰¥ 1280px (xl)
   ============================================ */
@media (min-width: 1280px) {
  .services-section,
  .process-section {
    max-width: 1280px;
    margin: 0 auto;
  }

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

/* ============================================
   FOUNDERS NOTE SECTION
   ============================================ */
.founders-section {
  background: white;
  border-radius: 2rem;
  margin: 4rem 1.25rem 0 1.25rem;
  padding: 3rem 1.5rem;
}

.founders-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.founders-text {
  flex: 1;
}

.founders-quote {
  font-size: 1.125rem;
  color: var(--color-dark);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-navy);
}

.founders-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.founders-profile {
  display: flex;
  flex-direction: column;
}

.founders-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-dark);
}

.founders-title {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.founders-seal-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(30, 50, 90, 0.02);
  border-radius: 50%;
  border: 1px dashed rgba(30, 50, 90, 0.1);
  padding: 0.5rem;
}

.founders-seal {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(30, 50, 90, 0.15));
  transition: transform 0.3s ease;
}

.founders-seal-wrapper:hover .founders-seal {
  transform: rotate(15deg) scale(1.05);
}

@media (min-width: 768px) {
  .founders-section {
    padding: 5rem 3.5rem;
    margin: 6rem 1.25rem 0 1.25rem;
  }
  
  .founders-container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  
  .founders-quote {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .founders-section {
    max-width: 1280px;
    margin: 6rem auto 0 auto;
  }
}

/* ============================================
   INQUIRY FORM OVERLAY (PAGE)
   ============================================ */
.inquiry-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(240, 240, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.inquiry-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-container {
  width: 100%;
  max-width: 680px;
  margin: auto;
  background: white;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 80px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.inquiry-overlay.open .inquiry-container {
  transform: translateY(0);
}

.inquiry-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  border: 1px solid rgba(0,0,0,0.03);
}

.inquiry-close:hover {
  background: rgba(0,0,0,0.06);
  transform: scale(1.05);
}

.inquiry-close svg {
  width: 20px;
  height: 20px;
}

.inquiry-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.inquiry-header h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-half {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-group-half {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-main);
  color: var(--color-dark);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-navy-solid);
  background-color: white;
}

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

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  border-radius: 0.875rem;
  background: var(--color-navy-solid);
  color: white;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  background: #152545;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 50, 90, 0.2);
}

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

.form-submit-btn svg {
  width: 16px;
  height: 16px;
}

/* Success View */
.inquiry-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon-circle {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(34, 197, 94);
  margin-bottom: 1.5rem;
}

.success-icon-circle svg {
  width: 2.5rem;
  height: 2.5rem;
}

.inquiry-success h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.inquiry-success p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-close-btn {
  padding: 0.75rem 2rem;
  background: var(--color-navy-solid);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.2s;
}

.success-close-btn:hover {
  transform: scale(1.03);
}

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


/* ============================================
   LEGAL DOCUMENT MODAL (Privacy Policy & T&C)
   ============================================ */
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(15, 20, 35, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
@media (min-width: 640px) {
  .legal-overlay { align-items: center; padding: 2rem; }
}
.legal-overlay.open { opacity: 1; pointer-events: auto; }

.legal-panel {
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  background: #fafafa;
  border-radius: 1.75rem 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 60px rgba(0,0,0,0.18);
}
@media (min-width: 640px) {
  .legal-panel {
    border-radius: 1.75rem;
    max-height: 88vh;
    transform: translateY(20px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.14);
  }
}
.legal-overlay.open .legal-panel { transform: translateY(0); }

.legal-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: white;
  flex-shrink: 0;
  gap: 1rem;
}
@media (min-width: 640px) {
  .legal-panel-header { padding: 2rem 2.5rem 1.25rem 2.5rem; }
}
.legal-panel-title { display: flex; flex-direction: column; gap: 0.375rem; }
.legal-panel-title h2 { font-size: 1.25rem; font-weight: 600; color: var(--color-dark); line-height: 1.2; }
@media (min-width: 640px) { .legal-panel-title h2 { font-size: 1.5rem; } }

.legal-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(30,50,90,0.07);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}
.legal-panel-close {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  transition: background-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.legal-panel-close:hover { background: rgba(0,0,0,0.07); transform: scale(1.05); }
.legal-panel-close svg { width: 18px; height: 18px; }

.legal-panel-body {
  overflow-y: auto;
  padding: 1.5rem;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) { .legal-panel-body { padding: 2rem 2.5rem 3rem 2.5rem; } }

.legal-panel-body::-webkit-scrollbar { width: 5px; }
.legal-panel-body::-webkit-scrollbar-track { background: transparent; }
.legal-panel-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 10px; }
.legal-panel-body::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

.legal-doc { color: var(--color-text); font-size: 0.875rem; line-height: 1.7; }
.legal-doc .legal-intro {
  font-size: 0.9375rem;
  color: var(--color-dark);
  line-height: 1.65;
  padding: 1.25rem 1.5rem;
  background: rgba(30,50,90,0.04);
  border-radius: 1rem;
  border-left: 3px solid var(--color-navy-solid);
  margin-bottom: 2rem;
}
.legal-doc h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-doc h3::before {
  content: '';
  display: inline-block;
  width: 3px; height: 1em;
  background: var(--color-navy-solid);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-doc p { margin-bottom: 0.875rem; color: var(--color-text-muted); }
.legal-doc ul { margin: 0.625rem 0 1rem 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-doc ul li { padding-left: 1.375rem; position: relative; color: var(--color-text-muted); }
.legal-doc ul li::before { content: '—'; position: absolute; left: 0; color: var(--color-navy-solid); opacity: 0.5; font-weight: 600; }
.legal-doc .legal-highlight {
  background: rgba(30,50,90,0.04);
  border: 1px solid rgba(30,50,90,0.08);
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  font-size: 0.875rem;
  color: var(--color-dark);
}
.legal-doc .legal-highlight strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 0.375rem; }
.legal-doc hr { border: none; border-top: 1px solid rgba(0,0,0,0.07); margin: 2rem 0; }
.legal-doc .legal-contact-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.legal-doc .legal-contact-block strong { font-size: 0.9375rem; color: var(--color-dark); margin-bottom: 0.5rem; display: block; }
.legal-doc .legal-contact-block a { color: var(--color-navy-solid); text-decoration: underline; text-underline-offset: 3px; }

.legal-panel-footer {
  padding: 1rem 1.5rem;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0; gap: 1rem; flex-wrap: wrap;
}
@media (min-width: 640px) { .legal-panel-footer { padding: 1.25rem 2.5rem; } }
.legal-panel-footer p { font-size: 0.75rem; color: var(--color-text-muted); flex: 1; }
.legal-panel-footer-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: var(--color-navy-solid);
  color: white;
  font-size: 0.8125rem; font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s, background-color 0.15s;
  white-space: nowrap; border: none; font-family: inherit;
}
.legal-panel-footer-btn:hover { background: #152545; transform: scale(1.03); }
