/* ==========================================================================
   STYLE SYSTEM: A TO Z OFFICE FITOUTS & MAINTENANCE
   ========================================================================== */

/* 1. CSS VARIABLES & RESET */
:root {
  /* Colors */
  --color-navy: #1B3A6B;
  --color-steel: #5B9BD5;
  --color-orange-gold: #D4820A;
  --color-white: #FFFFFF;
  --color-soft-white: #F5F8FC;
  --color-body: #3D3D3D;
  --color-light-border: #E2EAF4;

  /* Legacy/Compatibility color variables */
  --color-cyan: var(--color-steel);
  --color-charcoal: var(--color-body);
  --color-gray-light: var(--color-soft-white);
  --color-gray-mid: var(--color-light-border);
  --color-navy-dark: #0F2241;
  --color-navy-overlay: rgba(27, 58, 107, 0.85);

  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Legacy/Compatibility font variables */
  --font-headings: var(--font-heading);

  /* Layout & Transitions */
  --nav-height-desktop: 125px;
  --nav-height-mobile: 65px;
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Scroll Progress Indicator */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-steel), var(--color-orange-gold));
  z-index: 9999;
  width: 0%;
  transition: width 0.08s ease-out;
}

/* Premium Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-soft-white);
}

::-webkit-scrollbar-thumb {
  background: var(--color-steel);
  border-radius: 5px;
  border: 2px solid var(--color-soft-white);
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy);
}

/* Custom Text Highlight */
::selection {
  background-color: rgba(91, 155, 213, 0.22);
  color: var(--color-navy);
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background-color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.75;
}

#app-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Base Headings & Links */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--transition-smooth);
}

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

/* Utility Layout Classes */
.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.text-white {
  color: var(--color-white) !important;
}

.text-navy {
  color: var(--color-navy) !important;
}

.text-steel {
  color: var(--color-steel) !important;
}

.text-orange-gold {
  color: var(--color-orange-gold) !important;
}

.text-navy-dark {
  color: var(--color-navy-dark) !important;
}

.text-cyan {
  color: var(--color-steel) !important;
}

.text-large {
  font-size: 1.2em;
}

.text-gray-light {
  color: #A0AEC0 !important;
}

/* 2. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth), transform 0.15s ease-out;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
}

.btn:active {
  transform: scale(0.96) translateY(0) !important;
}

.btn-primary {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 4px 15px rgba(27, 58, 107, 0.15);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 58, 107, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline-dark:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 58, 107, 0.15);
}

.btn-arrow {
  margin-left: 8px;
  transition: transform 0.3s var(--transition-smooth);
}

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

/* 3. SECTION DESIGN SYSTEM */
section {
  position: relative;
  padding: 100px 5% 100px 5%;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--color-orange-gold);
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 22px;
}

.section-badge::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--color-orange-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 25px;
  line-height: 1.15;
  text-transform: none;
}

.section-title span.accent-word {
  color: var(--color-steel);
  font-style: italic;
}

/* 4. NAVBAR & MOBILE OVERLAY */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height-desktop);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s var(--transition-smooth);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-light-border);
}

#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: var(--nav-height-desktop);
  border-bottom: 1px solid var(--color-light-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* Logo Image rules */
.logo-img {
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Navbar & Footer logos are on dark backgrounds: show in original colors as requested */

.nav-links {
  display: flex;
  gap: 30px;
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-navy);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.03em;
}

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

/* Active underline sliding in orange gold */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-orange-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
#hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 10px;
  width: 44px;
  height: 44px;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-navy);
  margin: 6px auto;
  transition: all 0.3s var(--transition-smooth);
}

#hamburger.active {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Menu Overlay */
#mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-navy);
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}

#mobile-menu-overlay.open {
  transform: translateY(0);
}

#close-mobile-menu {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  line-height: 1;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--transition-smooth);
}

#mobile-menu-overlay.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger transition delays in JS */
.mobile-menu-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--transition-smooth);
  width: 200px;
}

#mobile-menu-overlay.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #25D366;
  /* WhatsApp Green */
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-top: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--transition-smooth);
}

.mobile-menu-whatsapp svg {
  stroke: #25D366;
}

#mobile-menu-overlay.open .mobile-menu-whatsapp {
  opacity: 1;
  transform: translateY(0);
}

/* 5. HERO SECTION */
.hero-section {
  min-height: 100vh;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height-desktop) + 60px);
  padding-bottom: 80px;
  color: var(--color-body);
  overflow: hidden;
  position: relative;
}

/* Subtle dot grid */
.hero-dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(27, 58, 107, 0.04) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--color-orange-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-orange-gold);
  letter-spacing: 0.18em;
  margin-bottom: 25px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-orange-gold);
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse-glow 2s infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 15px;
}

.hero-headline .headline-line {
  display: block;
}

.hero-headline .highlight-story {
  color: var(--color-steel);
  font-style: italic;
  font-family: var(--font-display);
}

/* Animated Underline Rule */
.hero-accent-line-container {
  margin-bottom: 25px;
  height: 3px;
}

.hero-accent-line {
  width: 90px;
  height: 3px;
  background-color: var(--color-orange-gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-underline-rule 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 600ms;
}

@keyframes draw-underline-rule {
  to {
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: #555555;
  max-width: 580px;
  margin-bottom: 35px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

/* Filled Orange CTA */
.btn-filled-quote {
  background-color: var(--color-orange-gold);
  color: var(--color-white);
  border-color: var(--color-orange-gold);
}

.btn-filled-quote:hover {
  background-color: #bd7308;
  border-color: #bd7308;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 130, 10, 0.3);
}

/* Navy Outline CTA */
.btn-outline-work {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline-work:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 58, 107, 0.15);
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #888888;
  font-weight: 500;
}

.hero-stat-divider {
  color: var(--color-light-border);
}

.hero-stat-icon {
  margin-right: 4px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Image wrapper with frame brackets */
.hero-image-wrapper {
  width: 100%;
  max-width: 520px;
  position: relative;
  border-radius: 20px;
  border: 2px solid var(--color-steel);
  padding: 10px;
  background-color: var(--color-white);
  box-shadow: 0 20px 40px rgba(27, 58, 107, 0.1);
}

.hero-img-inner {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  transform-origin: center center;
}

/* Decorative brackets */
.corner-bracket {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--color-steel);
  z-index: 3;
  pointer-events: none;
}

.corner-bracket.top-right {
  top: -6px;
  right: -6px;
  border-left: none;
  border-bottom: none;
}

.corner-bracket.bottom-left {
  bottom: -6px;
  left: -6px;
  border-right: none;
  border-top: none;
}

/* Floating Card */
.floating-delivery-card {
  position: absolute;
  bottom: 25px;
  left: -30px;
  background: var(--color-white);
  border: 1px solid var(--color-light-border);
  padding: 14px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(27, 58, 107, 0.15);
  animation: float-bounce 4s ease-in-out infinite;
  z-index: 5;
}

.floating-checkmark {
  font-size: 16px;
  color: var(--color-orange-gold);
  background-color: rgba(212, 130, 10, 0.1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.floating-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
}

/* 6. STATS BAR SECTION */
.stats-bar-section {
  background-color: var(--color-navy-dark);
  padding: 60px 5%;
  position: relative;
  z-index: 4;
  border-bottom: 2px solid var(--color-steel);
}

.stats-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 10px 0;
}

/* Steel Blue dividers */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-steel);
  opacity: 0.5;
}

.stat-wrapper {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
}

.stat-label-large {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-white);
  display: block;
  line-height: 1.3;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-orange-gold);
  margin-top: 10px;
}

/* 7. ABOUT US SECTION */
.about-section {
  background-color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.about-watermark {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 15vw;
  font-weight: 900;
  color: var(--color-soft-white);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -5px;
  line-height: 1;
}

.about-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-accent-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-steel);
  margin-bottom: 25px;
}

.about-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-body);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about-description strong {
  color: var(--color-navy);
  font-weight: 700;
}

.about-right {
  display: flex;
  justify-content: center;
}

.tilted-frame-container {
  width: 100%;
  max-width: 440px;
  overflow: visible !important;
}

.tilted-frame {
  position: relative;
  border: 2px solid var(--color-steel);
  border-radius: 20px;
  padding: 10px;
  background-color: var(--color-white);
  transform: rotate(3deg);
  box-shadow: 0 15px 35px rgba(27, 58, 107, 0.08);
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  overflow: visible !important;
}

.tilted-frame:hover {
  transform: rotate(0deg);
  box-shadow: 0 20px 45px rgba(27, 58, 107, 0.15);
}

.about-img {
  border-radius: 12px;
  height: 400px;
  object-fit: cover;
}

.tilted-frame-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-orange-gold);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(212, 130, 10, 0.25);
  letter-spacing: 0.5px;
  z-index: 10;
  white-space: nowrap;
  line-height: 1;
}

/* 8. VISION & MISSION SECTION */
.vision-section {
  background-color: var(--color-soft-white);
  color: var(--color-body);
}

.vision-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: 60px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.vision-card {
  position: relative;
  border-radius: 12px;
  padding: 45px 35px;
  transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

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

.vision-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(91, 155, 213, 0.35);
  box-shadow: 0 15px 35px rgba(27, 58, 107, 0.08);
}

.card-white {
  border-top: 4px solid var(--color-navy);
}

.card-cyan {
  border-top: 4px solid var(--color-orange-gold);
}

.card-cyan .card-heading {
  color: var(--color-navy);
}

.card-outline {
  border-top: 4px solid var(--color-steel);
}

/* SVG border animations - kept for backward compatibility and clean logic */
.border-draw-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.svg-border {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.vision-card.animated rect {
  animation: draw-border 1.5s ease-out forwards;
}

.card-icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.card-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.card-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

/* Typewriter animation styles */
.typewriter-trigger {
  border-right: 3px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
  width: 0;
}

.typewriter-trigger.animate {
  animation: typewriter-keys 1.5s steps(25) forwards, typewriter-cursor 0.8s infinite;
}

/* 9. SERVICES SECTION */
.services-section {
  background-color: var(--color-white);
}

.services-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.blur-clear-trigger {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
}

.blur-word {
  display: inline-block;
  filter: blur(10px);
  opacity: 0;
  transition: filter 1.2s var(--transition-smooth), opacity 1.2s var(--transition-smooth);
}

.blur-word.accent-word {
  color: var(--color-steel);
  font-style: italic;
}

.blur-clear-trigger.animate .blur-word {
  filter: blur(0);
  opacity: 1;
}

.blur-clear-trigger.animate .blur-word:nth-child(2) {
  transition-delay: 0.2s;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Interactive Flip Cards */
.service-flip-card {
  perspective: 1000px;
  height: 290px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

/* Card flipped state class toggled by JS */
.service-flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Hover flip only on desktop (screen width >= 768px) and when NOT a touch-device */
@media (min-width: 768px) {
  .service-flip-card:hover:not(.touch-device) .flip-card-inner {
    transform: rotateY(180deg);
  }
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(27, 58, 107, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flip-card-front {
  background-color: var(--color-white);
  color: var(--color-body);
  border: 1px solid var(--color-light-border);
  border-top: 4px solid var(--color-steel);
  /* Card top border in steel blue */
}

.flip-card-back {
  background-color: var(--color-navy);
  /* Card back in Deep Navy */
  color: var(--color-white);
  transform: rotateY(180deg);
  border: 1px solid var(--color-steel);
  border-top: 4px solid var(--color-orange-gold);
  /* Card back top border in orange gold */
}

.service-icon {
  margin-bottom: 15px;
}

.service-icon svg path {
  stroke: var(--color-steel);
  /* Accents in Steel Blue */
}

.flip-card-front h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.flip-card-front p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.7;
}

.flip-hint {
  font-size: 12px;
  color: var(--color-orange-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 15px;
}

.flip-card-back h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-orange-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.flip-card-back ul {
  list-style: none;
}

.flip-card-back li {
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.flip-card-back li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange-gold);
  font-weight: 700;
}

.flip-hint-back {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 15px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 10. WHY CHOOSE US SECTION */
.why-section {
  background-color: var(--color-navy);
  border-top: 1px solid var(--color-steel);
}

.why-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.why-header {
  margin-bottom: 60px;
}

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

.why-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--color-steel);
  /* Card top border in steel blue */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.icon-emoji {
  font-size: 1.8rem;
}

.why-card-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  z-index: 3;
}

.why-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  position: relative;
  z-index: 3;
}

/* Hover Gradient Fill From Bottom */
.why-hover-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(0deg, rgba(91, 155, 213, 0.08) 0%, transparent 100%);
  transition: height 0.4s var(--transition-smooth);
  z-index: 2;
}

.why-card:hover .why-hover-fill {
  height: 100%;
}

/* 11. PROJECTS GALLERY SECTION */
.projects-section {
  background-color: var(--color-soft-white);
}

.projects-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 25px;
}

.projects-title-wrapper {
  flex: 1;
  min-width: 250px;
}

/* Filter tabs styles */
.filter-tabs-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.filter-tabs-wrapper::-webkit-scrollbar {
  display: none;
  /* Safari & Chrome */
}

.filter-tabs {
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--color-light-border);
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  /* Pill capsule style */
  cursor: pointer;
  color: var(--color-body);
  transition: all 0.3s var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-steel);
  color: var(--color-navy);
  background-color: rgba(91, 155, 213, 0.1);
  box-shadow: 0 4px 12px rgba(91, 155, 213, 0.1);
}

/* Accordion Expand Projects Gallery Layout */
.projects-accordion-layout {
  display: flex;
  width: 100%;
  height: 380px;
  gap: 15px;
  margin-top: 45px;
  overflow: hidden;
}

.accordion-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.25, 1), transform 0.6s ease, border-color 0.3s ease;
}

.accordion-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 3;
}

/* Default expanded panel when not hovering the grid */
.accordion-panel.active {
  flex: 5;
  border-color: var(--color-steel);
}

/* Reset to equal width on container hover so hover state works cleanly */
@media (hover: hover) {
  .projects-accordion-layout:hover .accordion-panel {
    flex: 1;
    border-color: rgba(255, 255, 255, 0.08);
  }

  /* Expand hovered panel */
  .projects-accordion-layout .accordion-panel:hover {
    flex: 5 !important;
    border-color: var(--color-steel);
  }

  .accordion-panel:hover .accordion-img {
    transform: scale(1.04);
  }

  .projects-accordion-layout:hover .accordion-panel.active .accordion-overlay {
    opacity: 0;
  }

  .projects-accordion-layout .accordion-panel:hover .accordion-overlay {
    opacity: 1 !important;
  }

  .projects-accordion-layout:hover .accordion-panel.active .accordion-info {
    transform: translateY(20px);
  }

  .projects-accordion-layout .accordion-panel:hover .accordion-info {
    transform: translateY(0) !important;
  }

  .projects-accordion-layout:hover .accordion-panel.active .accordion-collapsed-label {
    opacity: 1;
  }

  .projects-accordion-layout .accordion-panel:hover .accordion-collapsed-label {
    opacity: 0 !important;
  }
}

.accordion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.25, 1);
}

/* Dynamic overlay details slide up */
.accordion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 34, 65, 0.95) 0%, rgba(15, 34, 65, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

/* Visible states for overlays */
.accordion-panel.active .accordion-overlay {
  opacity: 1;
}

/* Slide up animation for details */
.accordion-info {
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.25, 1);
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.accordion-panel.active .accordion-info {
  transform: translateY(0);
}

.accordion-category {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-orange-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.accordion-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  text-transform: none;
  line-height: 1.15;
}

.accordion-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.accordion-cta {
  font-size: 13px;
  padding: 10px 22px;
}

/* Bottom label visible when collapsed */
.accordion-collapsed-label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 3;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.accordion-panel.active .accordion-collapsed-label {
  opacity: 0;
}

/* 12. CLIENTS MARQUEE SECTION */
.clients-section {
  background-color: var(--color-white);
  padding: 70px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--color-light-border);
}

.clients-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.split-snap-trigger {
  text-align: center;
  color: var(--color-navy);
  display: flex;
  justify-content: center;
  gap: 30px;
}

.split-snap-trigger span {
  display: inline-block;
  transition: transform 1.2s var(--transition-smooth);
}

.split-snap-trigger.animate span:first-child {
  transform: translateX(-15px);
}

.split-snap-trigger.animate span:last-child {
  transform: translateX(15px);
}

/* Client Spotlight Layout */
.clients-spotlight-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 40px;
  align-items: center;
  background-color: var(--color-navy-dark);
  /* Deep dark blue dashboard card background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 45px;
  margin-top: 50px;
  box-shadow: 0 20px 50px rgba(15, 34, 65, 0.12);
  position: relative;
}

.spotlight-card {
  background: radial-gradient(circle at 10% 20%, rgba(91, 155, 213, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 130, 10, 0.05) 0%, transparent 40%),
    rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.spotlight-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-steel), var(--color-orange-gold));
  opacity: 0.8;
  z-index: 3;
}

.thumbnails-wrap-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  justify-content: flex-start;
}

.thumbnail-item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  /* Capsule pill shape */
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.thumbnail-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transform: translateY(-2px);
}

.thumbnail-item.active {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: var(--color-navy-dark);
  font-weight: 700;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}

.spotlight-badge {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 130, 10, 0.4);
  color: var(--color-orange-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--color-orange-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-orange-gold);
  animation: badge-pulse-glow 1.5s infinite ease-in-out;
  display: inline-block;
}

@keyframes badge-pulse-glow {

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

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 12px var(--color-orange-gold);
  }
}

.spotlight-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.spotlight-content.fade-in {
  animation: fade-in-up-card 0.4s var(--transition-smooth) forwards;
}

@keyframes fade-in-up-card {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spotlight-logo-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  padding: 8px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 220px;
  height: 55px;
  margin-left: auto;
  margin-right: auto;
}

.spotlight-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #FFFFFF 40%, #D4820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.15;
}

.spotlight-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.spotlight-watermark {
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-size: 13rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
  user-select: none;
  line-height: 1;
  transition: transform 0.5s var(--transition-smooth), opacity 0.5s var(--transition-smooth);
}

.spotlight-content.fade-in~.spotlight-watermark {
  animation: watermark-fade-in 0.5s var(--transition-smooth) forwards;
}

@keyframes watermark-fade-in {
  from {
    opacity: 0;
    transform: scale(0.8) translate(10px, 10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
}

.spotlight-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(91, 155, 213, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.spotlight-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  z-index: 3;
}

.spotlight-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-steel), var(--color-orange-gold));
  box-shadow: 0 0 8px var(--color-orange-gold);
}

.spotlight-progress-fill.active {
  width: 100%;
  transition: width 3s linear;
}

/* 13. TEAM SECTION */
.team-section {
  background-color: var(--color-soft-white);
}

.team-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.draw-underline-trigger {
  position: relative;
  display: inline-block;
}

.draw-underline-trigger::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: var(--color-steel);
  transition: width 1.5s var(--transition-smooth);
}

.draw-underline-trigger.animate::after {
  width: 100%;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.team-card {
  background: linear-gradient(145deg, var(--color-white) 0%, var(--color-soft-white) 100%);
  border: 1px solid rgba(91, 155, 213, 0.12);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 34, 65, 0.03);
  transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 155, 213, 0.45);
  box-shadow: 0 20px 45px rgba(27, 58, 107, 0.1);
}

.team-avatar-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-white);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(27, 58, 107, 0.08);
  transition: transform 0.5s var(--transition-smooth);
}

.rohit-avatar {
  object-position: center top;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

/* Spinning Ring */
.spinning-ring {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 194px;
  height: 194px;
  border: 2px solid transparent;
  border-top-color: var(--color-steel);
  border-bottom-color: var(--color-steel);
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.8s var(--transition-smooth);
  filter: drop-shadow(0 0 4px rgba(91, 155, 213, 0.3));
}

.team-card:hover .spinning-ring {
  animation: spin-clockwise 2.5s linear infinite;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-role {
  display: inline-block;
  background-color: rgba(212, 130, 10, 0.05);
  border: 1px solid rgba(212, 130, 10, 0.15);
  color: var(--color-orange-gold);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.team-card:hover .team-role {
  background-color: var(--color-orange-gold);
  color: var(--color-white);
  border-color: var(--color-orange-gold);
  box-shadow: 0 4px 10px rgba(212, 130, 10, 0.25);
}

/* 14. CONTACT SECTION & FORMS */
.contact-section {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-light-border);
}

.contact-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-split-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-methods {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-method-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 6px 15px rgba(27, 58, 107, 0.02);
  transition: border-color 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}

.contact-method-card:hover {
  border-color: var(--color-steel);
  transform: translateX(5px);
}

.method-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(91, 155, 213, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-steel);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-method-card:hover .method-icon-box {
  transform: scale(1.15) rotate(5deg);
  animation: mini-bounce 0.5s ease infinite alternate;
}

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

.method-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
  font-weight: 700;
  margin-top: 3px;
}

/* Map Card */
.contact-map-panel {
  display: flex;
}

.map-card {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: 0 15px 35px rgba(27, 58, 107, 0.08);
}

/* Contact Form styling */
.contact-form-row {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(27, 58, 107, 0.04);
}

.form-container {
  width: 100%;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-soft-white);
  padding-bottom: 15px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--color-light-border);
  background-color: var(--color-soft-white);
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-body);
  border-radius: 4px;
  transition: all 0.3s var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-steel);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.15);
}

/* Submit button styling */
.submit-btn {
  align-self: flex-start;
  gap: 10px;
}

.form-status-msg {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-status-msg.success {
  background-color: rgba(72, 187, 120, 0.1);
  color: #38a169;
  border: 1px solid rgba(72, 187, 120, 0.2);
}

.form-status-msg.error {
  background-color: rgba(229, 62, 62, 0.1);
  color: #e53e3e;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

/* 15. FOOTER */
.footer-section {
  background-color: var(--color-white);
  color: var(--color-body);
  padding: 70px 5% 40px;
  border-top: 3px solid var(--color-steel);
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  border-bottom: 1px solid var(--color-light-border);
  padding-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  margin-bottom: 20px;
}

.footer-logo .logo-img {
  max-height: 65px;
  width: auto;
  height: auto;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-navy);
  font-size: 0.95rem;
  margin-bottom: 15px;
  font-style: italic;
}

.footer-est {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #718096;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-body);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
}

@media (hover: hover) {
  .footer-links a:hover {
    color: var(--color-orange-gold);
    padding-left: 5px;
  }

  .info-col a:hover {
    color: var(--color-orange-gold);
  }
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-soft-white);
  border: 1px solid var(--color-light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: all 0.4s var(--transition-smooth);
}

@media (hover: hover) {
  .footer-socials a:hover {
    color: var(--color-white);
    background-color: var(--color-steel);
    border-color: var(--color-steel);
    transform: rotate(360deg);
  }
}

.footer-bottom {
  font-family: var(--font-body);
  text-align: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: #718096;
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--color-navy);
  border: 1px solid var(--color-steel);
  color: var(--color-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--transition-smooth);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background-color: var(--color-steel);
  color: var(--color-navy);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(91, 155, 213, 0.3);
}

/* 16. FLOATING ENQUIRY BUTTON & SLIDE-IN MODAL */
#floating-enquiry-trigger {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-orange-gold);
  color: var(--color-white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  z-index: 900;
  padding: 20px 10px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: -4px 0 20px rgba(212, 130, 10, 0.3);
  transition: all 0.3s var(--transition-smooth);
  animation: pulse-glow-btn 2.5s infinite;
}

#floating-enquiry-trigger .desktop-text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: block;
}

#floating-enquiry-trigger .mobile-text {
  display: none;
}

#floating-enquiry-trigger:hover {
  padding-right: 15px;
}

/* Enquiry Modal overlay & drawer */
#enquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 34, 65, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition-smooth), visibility 0.4s var(--transition-smooth);
}

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

#enquiry-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -10px 0 40px rgba(15, 34, 65, 0.15);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#enquiry-modal-overlay.open #enquiry-modal {
  transform: translateX(0);
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--color-light-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  color: var(--color-navy);
}

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

.modal-logo .logo-img {
  max-height: 45px;
  width: auto;
  height: auto;
}

#close-enquiry-modal {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-navy);
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 1;
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.modal-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-body);
  margin-bottom: 25px;
}

.modal-body .form-group {
  margin-bottom: 20px;
}

/* ==========================================================================
   17. ANIMATIONS KEYFRAMES & INTERSECTION OBSERVER CLASSES
   ========================================================================== */

/* Keyframe: pulse glow on elements */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 130, 10, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(212, 130, 10, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 130, 10, 0);
  }
}

@keyframes pulse-glow-btn {
  0% {
    box-shadow: -4px 0 15px rgba(212, 130, 10, 0.25);
  }

  50% {
    box-shadow: -4px 0 25px rgba(212, 130, 10, 0.55);
  }

  100% {
    box-shadow: -4px 0 15px rgba(212, 130, 10, 0.25);
  }
}

/* Keyframe: float bounce */
@keyframes float-bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Keyframe: spin ring */
@keyframes spin-clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Keyframe: marquee left scroll */
@keyframes marquee-scroll-l {
  0% {
    transform: translateX(0);
  }

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

  /* Accounts for gaps */
}

@keyframes marquee-scroll-r {
  0% {
    transform: translateX(calc(-50% - 20px));
  }

  100% {
    transform: translateX(0);
  }
}

/* Keyframe: typewriter steps */
@keyframes typewriter-keys {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes typewriter-cursor {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--color-steel);
  }
}

/* Keyframe: draw SVG border line */
@keyframes draw-border {
  to {
    stroke-dashoffset: 0;
  }
}

/* Animation entries triggered on scroll (Intersection Observer) */
.reveal-fade-up,
.reveal-fade-up-delayed,
.reveal-fade-up-delayed2,
.reveal-fade-up-delayed3 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-clip-path {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fly-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fly-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-drop-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

/* Stagger grid reveal delays */
.reveal-stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

/* Scale trigger */
.scale-trigger {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

/* Active animation trigger classes */
.animate-in {
  opacity: 1 !important;
  transform: none !important;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}

/* Mini Bounce contact card */
@keyframes mini-bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-4px);
  }
}

/* ==========================================================================
   18. RESPONSIVE DESIGN - BREAKPOINTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLET BREAKPOINT: 768px - 1023px
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {

  /* Navbar changes */
  #navbar {
    height: var(--nav-height-mobile);
  }

  .logo-img {
    max-height: 52px;
  }

  .nav-links,
  .nav-cta {
    display: none;
    /* Hide center links and enquire trigger on navbar row */
  }

  #hamburger {
    display: block;
    /* Show hamburger right */
  }

  /* Redesigned Hero split on Tablet */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-img {
    height: 400px;
  }

  /* Stats Bar 2x2 grid */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  /* Remove vertical separator borders on tablet.
     Create horizontal/grid borders instead */
  .stat-item:nth-child(even)::after {
    display: none;
  }

  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    right: 0;
  }

  /* Vision & Mission 2+1 layout */
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Accordion Projects Layout on Tablet */
  .projects-accordion-layout {
    height: 310px;
    gap: 10px;
  }

  .accordion-collapsed-label {
    font-size: 1rem;
    bottom: 20px;
    left: 20px;
  }

  .accordion-overlay {
    padding: 25px;
  }

  /* Contact Top */
  .contact-split-top {
    gap: 30px;
  }

  .map-card {
    min-height: 300px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }

  .info-col {
    grid-column: span 2;
  }

  /* Responsive Clients Spotlight Layout on Tablet */
  .clients-spotlight-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .spotlight-card {
    order: -1;
    width: 100%;
    min-height: 280px;
  }

  .thumbnails-wrap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   MOBILE BREAKPOINT: 320px - 767px
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {

  /* Global rules */
  section {
    padding: 60px 6% 60px 6%;
  }

  .typewriter-trigger {
    white-space: normal !important;
    width: auto !important;
    border-right: none !important;
    overflow: visible !important;
    animation: none !important;
  }

  /* Navbar height */
  #navbar {
    height: var(--nav-height-mobile);
  }

  #navbar.scrolled {
    height: var(--nav-height-mobile);
  }

  /* Hero Section Mobile */
  .hero-section {
    padding-top: calc(var(--nav-height-mobile) + 30px);
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-dot-grid {
    display: none;
    /* Disable on mobile for performance */
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-right {
    display: block;
    width: 100%;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-img {
    height: 320px;
  }

  .floating-delivery-card {
    display: none;
    /* Hide floating check on mobile */
  }

  /* Stats Bar 2x2 */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none !important;
    /* Hide all line dividers */
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
    margin-top: 15px;
  }

  /* About Us Mobile */
  .about-watermark {
    display: none;
    /* Hide watermark background */
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tilted-frame-container {
    max-width: 100%;
    margin-bottom: 30px;
    /* Push the next section down to make room for absolute badge */
  }

  .tilted-frame {
    transform: none !important;
    /* Disable rotation tilt */
    overflow: visible !important;
  }

  .tilted-frame-badge {
    right: 20px;
    bottom: 20px;
    font-size: 0.75rem;
    padding: 8px 15px;
    z-index: 10;
    white-space: nowrap;
    line-height: 1;
  }

  .about-img {
    height: 300px;
  }

  /* Vision & Mission Mobile Stack */
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vision-card:last-child {
    grid-column: span 1;
    max-width: 100%;
    justify-self: stretch;
  }

  .vision-card {
    padding: 30px 25px;
  }

  /* Services Mobile Stack */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-flip-card {
    height: 350px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 24px 20px;
  }

  .flip-card-front p {
    font-size: 14px;
    line-height: 1.6;
  }

  .flip-card-back h3 {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .flip-card-back li {
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 18px;
  }

  .flip-hint-back {
    margin-top: 10px;
  }

  /* Why Choose Us Mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 30px;
  }

  .why-hover-fill {
    height: 100%;
    /* Keep static cyan tint always on mobile */
    background: linear-gradient(0deg, rgba(91, 155, 213, 0.05) 0%, transparent 100%);
  }

  /* Projects Mobile Stack */
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .filter-tabs-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .filter-tabs {
    padding-bottom: 8px;
  }

  .projects-accordion-layout {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 12px;
    margin-top: 25px;
  }

  .accordion-panel {
    flex: none !important;
    width: 100%;
    height: 90px;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.25, 1), border-color 0.3s ease;
  }

  .accordion-panel.active {
    height: 250px;
  }

  .accordion-overlay {
    padding: 16px;
  }

  .accordion-category {
    font-size: 0.65rem;
    margin-bottom: 4px;
  }

  .accordion-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .accordion-desc {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .accordion-collapsed-label {
    font-size: 1rem;
    bottom: 12px;
    left: 16px;
  }

  .accordion-info {
    max-width: 100%;
  }

  .accordion-cta {
    padding: 6px 14px;
    font-size: 11px;
  }

  /* Mobile Clients Spotlight Layout */
  .clients-spotlight-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
  }

  .spotlight-card {
    order: -1;
    width: 100%;
    min-height: 240px;
    padding: 30px 20px;
  }

  .spotlight-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .spotlight-tagline {
    font-size: 13px;
  }

  .thumbnails-wrap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }

  .thumbnail-item {
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 20px;
  }

  /* Team Mobile Stack */
  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .team-card {
    max-width: 290px;
    padding: 30px 20px;
  }

  .team-avatar-wrapper {
    width: 130px;
    height: 130px;
  }

  .spinning-ring {
    width: 142px;
    height: 142px;
    border-width: 2px;
  }

  /* Contact Mobile Stack */
  .contact-split-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .map-card {
    min-height: 250px;
  }

  .contact-form-row {
    padding: 25px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .submit-btn {
    width: 100%;
  }

  /* Footer Mobile */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-bottom: 40px;
  }

  .brand-col {
    align-items: center;
  }

  .info-col {
    grid-column: span 1;
  }

  .footer-socials {
    justify-content: center;
  }

  /* Floating Button transforms into Fixed Bottom Bar in Orange Gold */
  #floating-enquiry-trigger {
    right: 0;
    left: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    height: 60px;
    border-radius: 0;
    box-shadow: 0 -4px 15px rgba(212, 130, 10, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: pulse-glow 2.5s infinite;
  }

  #floating-enquiry-trigger .desktop-text {
    display: none;
  }

  #floating-enquiry-trigger .mobile-text {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-white);
    /* White text on Orange Gold */
  }

  #floating-enquiry-trigger:hover {
    padding-right: 0;
  }

  /* Modal turns into Bottom Sheet */
  #enquiry-modal {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 85vh;
    /* 85% of screen */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transform: translateY(100%);
    box-shadow: 0 -10px 30px rgba(15, 34, 65, 0.25);
  }

  #enquiry-modal-overlay.open #enquiry-modal {
    transform: translateY(0);
  }

  .modal-header {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 15px 20px;
  }

  .modal-body {
    padding: 20px;
  }

  /* Prevent scrolling content cutoff due to fixed bottom quote trigger bar */
  body {
    padding-bottom: 60px;
    /* Offset bottom bar height */
  }

  #back-to-top {
    bottom: 75px;
    /* Stay clear of fixed quote bar */
  }
}

/* 19. PREFERS-REDUCED-MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }

  .reveal-fade-up,
  .reveal-fade-up-delayed,
  .reveal-fade-up-delayed2,
  .reveal-fade-up-delayed3,
  .reveal-fade-left,
  .reveal-fade-right,
  .reveal-zoom-in,
  .reveal-clip-path,
  .reveal-fly-left,
  .reveal-fly-right,
  .reveal-drop-down,
  .reveal-stagger-item,
  .scale-trigger {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .typewriter-trigger {
    width: 100% !important;
    border-right: none !important;
  }

  .spinning-ring {
    animation: none !important;
  }

  .tilted-frame {
    transform: none !important;
  }
}

/* Custom Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--color-steel);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s var(--transition-smooth);
  pointer-events: none;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  color: var(--color-steel);
}