/* ==========================================================================
   STARDUST COMPANY PROFILE - FULL-WIDTH APPLE FROSTED GLASS NAVBAR & FOOTER
   Full Wall-to-Wall Width with Translucent Backdrop Blur (Apple Style)
   ========================================================================== */

@font-face {
  font-family: 'LINE Seed Sans TH';
  src: url('../fonts/LINESeedSansTH_W_Th.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed Sans TH';
  src: url('../fonts/LINESeedSansTH_W_Th.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed Sans TH';
  src: url('../fonts/LINESeedSansTH_W_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed Sans TH';
  src: url('../fonts/LINESeedSansTH_W_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed Sans TH';
  src: url('../fonts/LINESeedSansTH_W_XBd.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed Sans TH';
  src: url('../fonts/LINESeedSansTH_W_He.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark-primary: #031422;
  --bg-dark-card: rgba(255, 255, 255, 0.04);
  --border-card: rgba(255, 255, 255, 0.08);

  --color-orange: #F26522;
  --color-gold: #FFB800;
  --color-mint: #00B894;
  --color-cyan: #0099C4;

  --text-white: #FFFFFF;
  --text-light: #FFFFFF;
  --text-muted: #94A3B8;

  --font-main: 'LINE Seed Sans TH', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --header-height: 70px;
  --footer-height: 65px;
  --container-max-width: 1240px;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --apple-blur: blur(20px) saturate(180%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-primary);
  color: var(--text-white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 10%, #08253c 0%, #031422 70%, #010a12 100%);
  min-height: 100vh;
  position: relative;
}

/* Ambient Glowing Background Particles */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 85% 20%, rgba(242, 101, 34, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(0, 184, 148, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(0, 153, 196, 0.12) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.25;
}

.text-orange { color: var(--color-orange); }
.text-cyan { color: var(--color-cyan); }
.text-gold { color: var(--color-gold); }
.text-mint { color: var(--color-mint); }

.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 900px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   FULL-WIDTH APPLE TRANSLUCENT FROSTED GLASS HEADER (NAVBAR)
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(3, 20, 34, 0.75);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .brand-logo {
  opacity: 1;
  pointer-events: auto;
}

.brand-logo:hover {
  opacity: 0.85;
}

.brand-logo-center {
  position: absolute;
  left: 50%;
  top: calc(50% + 55px);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .brand-logo-center {
  opacity: 0;
  pointer-events: none;
}

.stardust-nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.stardust-center-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .brand-logo-center {
    top: calc(50% + 50px);
  }
  .stardust-center-logo {
    height: 52px;
  }
}

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

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-white);
}

.brand-subtitle {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-wrapper {
  position: relative;
}

.menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-trigger:hover {
  background: rgba(242, 101, 34, 0.2);
  border-color: var(--color-orange);
}

.hamburger-icon {
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-orange);
  border-radius: 2px;
}

/* Translucent Frosted Glass Dropdown Overlay Menu (Client Mockup Spec) */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 270px;
  max-height: calc(100vh - var(--header-height) - 1.5rem);
  overflow-y: auto;
  background: rgba(3, 20, 34, 0.95);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-normal);
}

.nav-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-list a {
  display: block;
  font-size: 1.35rem;
  font-weight: 300;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.25;
  transition: color 0.2s ease, padding 0.2s ease;
}

.dropdown-list a:hover,
.dropdown-list a.active {
  color: #F26522;
  font-weight: 400;
  background: transparent;
  padding-left: 0;
}

/* --------------------------------------------------------------------------
   FULL-WIDTH APPLE TRANSLUCENT FROSTED GLASS BOTTOM BAR
   -------------------------------------------------------------------------- */
.bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--footer-height);
  z-index: 1000;
  background: rgba(3, 20, 34, 0.65);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}

.bottom-nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 30px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  max-width: 48%;
}

.nav-btn > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.nav-btn > span {
  flex-shrink: 0;
  font-size: 1.05rem;
}

@media (hover: hover) and (pointer: fine) {
  .nav-btn:hover {
    color: var(--color-orange);
    background: rgba(255, 255, 255, 0.08);
  }
}

.nav-btn-label {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-btn-title {
  font-size: clamp(0.75rem, 2.2vw, 0.9rem);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* --------------------------------------------------------------------------
   SECTIONS COMMON LAYOUT
   -------------------------------------------------------------------------- */
.section {
  min-height: 100vh;
  padding: calc(var(--header-height) + 2.5rem) 0 calc(var(--footer-height) + 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   EXACT PDF SECTION BACKGROUND COLORS & SLIDE MASTER IMAGES
   ========================================================================== */
#hero {
  background: url('../images/hero_bg.jpg') no-repeat center bottom / cover !important;
  position: relative;
  overflow: hidden;
}
#about { background-color: #001D2D; }
#strategy {
  background-color: #01091E !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
}
#ceo-message { background-color: #001623; }
#core-business { background-color: #001521; }

/* Extra Bottom Space on Desktop for Background Image Sections (Except Hero) */
@media (min-width: 1025px) {
  .about-section-pdf,
  .strategy-hybrid-section,
  .ceo-section-pdf,
  .core-section-pdf,
  #recognition {
    padding-bottom: calc(var(--footer-height) + 7.5rem) !important;
  }
  
  /* Extra Large Bottom Space for Why Choose Us (Section 11) */
  #why-us {
    padding-bottom: 16rem !important;
  }
}

/* ==========================================================================
   SECTION 4: CEO MESSAGE - PDF SLIDE 04 EXACT REPLICA STYLES
   ========================================================================== */
.ceo-section-pdf {
  background: url('../images/section-4-bg.jpg') no-repeat center bottom / cover !important;
  position: relative;
  overflow: hidden;
}

.ceo-container-pdf {
  position: relative;
  z-index: 2;
}

.ceo-grid-pdf {
  display: grid;
  grid-template-columns: 46% 48%;
  gap: 6%;
  align-items: flex-start;
  min-height: 520px;
}

/* Left Column */
.ceo-left-col {
  display: flex;
  flex-direction: column;
}

.ceo-header-pdf {
  margin-bottom: 2rem;
}

.ceo-title-bold {
  display: block;
  font-size: clamp(2.5rem, 4vw, 1.8rem);
  font-weight: 700; /* LINESeedSansTH-Bold */
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.0;
}

.ceo-title-thin {
  display: block;
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 100; /* LINESeedSansTH-Thin */
  letter-spacing: 0.16em;
  color: #FFFFFF;
  line-height: 1.0;
}

.ceo-left-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ceo-left-text p {
  font-size: clamp(0.88rem, 1.35vw, 0.98rem);
  line-height: 1.85;
  color: #FFFFFF;
  font-weight: 400; /* LINESeedSansTH-Regular */
}

/* Right Column */
.ceo-right-col {
  display: flex;
  flex-direction: column;
  /* padding-top: 9.7rem; */
}

.ceo-right-intro {
  font-size: clamp(0.88rem, 1.35vw, 0.98rem);
  line-height: 1.85;
  color: #FFFFFF;
  font-weight: 400; /* LINESeedSansTH-Regular */
  margin-bottom: 2rem;
}

.ceo-highlight-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700; /* LINESeedSansTH-Bold */
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.ceo-highlight-title .hl-orange { color: #F36F21; }
.ceo-highlight-title .hl-gold   { color: #FAB914; }
.ceo-highlight-title .hl-mint   { color: #2BA88D; }
.ceo-highlight-title .hl-blue   { color: #2888B3; }

.ceo-right-sub {
  font-size: clamp(0.88rem, 1.35vw, 0.98rem);
  line-height: 1.85;
  color: #FFFFFF;
  font-weight: 400; /* LINESeedSansTH-Regular */
}

/* Responsive for CEO Message */
@media (max-width: 1024px) {
  .ceo-grid-pdf {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: unset;
  }
  .ceo-right-col {
    padding-top: 0;
  }
}

/* ==========================================================================
   SECTION 5: 5 CORE BUSINESS - PDF SLIDE 05 EXACT REPLICA STYLES
   ========================================================================== */
.core-section-pdf {
  background: url('../images/section-5-bg.jpg') no-repeat center bottom / cover !important;
  position: relative;
  overflow: hidden;
}

.core-container-pdf {
  position: relative;
  z-index: 2;
}

.core-grid-pdf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 2.0rem;
  align-items: flex-start;
}

.core-card-pdf {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  margin: 0 !important;
}

.core-card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3rem;
  padding: 0 !important;
}

.core-num {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 700; /* LINESeedSansTH-Bold */
  line-height: 1.0;
  margin-bottom: 0.1rem;
}

.core-title {
  font-size: clamp(0.85rem, 1.18vw, 0.98rem);
  font-weight: 800; /* LINESeedSansTH-ExtraBold */
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

.core-subtext {
  font-size: clamp(0.75rem, 0.98vw, 0.82rem);
  font-weight: 400; /* LINESeedSansTH-Regular */
  margin-bottom: 0.2rem;
}

/* Card Theme Colors matching PDF */
.card-theme-orange .core-num,
.card-theme-orange .core-title,
.card-theme-orange .core-subtext {
  color: #F36F21;
}

.card-theme-gold .core-num,
.card-theme-gold .core-title,
.card-theme-gold .core-subtext {
  color: #FAB914;
}

.card-theme-mint .core-num,
.card-theme-mint .core-title,
.card-theme-mint .core-subtext {
  color: #2BA88D;
}

.card-theme-cyan .core-num,
.card-theme-cyan .core-title,
.card-theme-cyan .core-subtext {
  color: #2888B3;
}

/* Bullet List - Zero padding, zero margin, zero gap */
.core-list {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.core-list li {
  font-size: clamp(0.74rem, 0.95vw, 0.82rem);
  font-weight: 400; /* LINESeedSansTH-Regular */
  color: #FFFFFF !important;
  line-height: 1.25;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 !important;
  padding: 0 !important;
}

.core-list li::before {
  content: "•";
  font-size: 0.85rem;
  line-height: 1.1;
  flex-shrink: 0;
}

.card-theme-orange .core-list li::before { color: #F36F21; }
.card-theme-gold .core-list li::before   { color: #FAB914; }
.card-theme-mint .core-list li::before   { color: #2BA88D; }
.card-theme-cyan .core-list li::before   { color: #2888B3; }

/* MD Quote Block */
.core-md-card-pdf {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid #ffffff;
}

.md-intro-text {
  font-size: clamp(0.78rem, 1.05vw, 0.86rem);
  font-weight: 400; /* LINESeedSansTH-Regular */
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 1.0rem;
}

.md-quote-text {
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  font-weight: 700; /* LINESeedSansTH-Bold */
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.md-sign-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.md-name {
  font-size: 0.88rem;
  font-weight: 700; /* LINESeedSansTH-Bold */
  color: #F36F21; /* Signature Orange */
}

.md-title, .md-company {
  font-size: 0.75rem;
  font-weight: 400; /* LINESeedSansTH-Regular */
  color: #FFFFFF;
  line-height: 1.35;
}

/* Responsive Media Queries for Core Business */
@media (max-width: 1024px) {
  .core-grid-pdf {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .core-grid-pdf {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#framework { background-color: #001D2D; }

/* Section 6 Framework Image (Displayed on Desktop & Mobile) */
.framework-img {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: auto;
}
#ecosystem { background-color: #001D2D; }

/* ==========================================================================
   SECTION 7: BUSINESS ECOSYSTEM (MOBILE CODE REPLICA - CONNECTED DIAGRAM)
   ========================================================================== */
.eco-header-pdf {
  text-align: left;
  margin-bottom: 1.8rem;
}

.eco-title-bold {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 0;
}

.eco-title-thin {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 100;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 0 0 1.2rem 0;
}

.eco-subtitle-pdf {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.75;
  color: #FFFFFF;
  font-weight: 400;
}

/* Header Bar & Color Segment Bar */
.eco-section-bar {
  text-align: center;
  margin: 2.0rem 0 1.8rem 0;
}

.eco-bar-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.eco-color-bar {
  display: flex;
  height: 3px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.eco-color-bar span {
  flex: 1;
  height: 100%;
}

.bar-orange { background-color: #F36F21; }
.bar-gold   { background-color: #FAB914; }
.bar-mint   { background-color: #2BA88D; }
.bar-cyan   { background-color: #2888B3; }

/* Connected Diagram Layout for Mobile */
.eco-diagram-mobile {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.eco-pair-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Core Business Box (Sharp Square White Border) */
.eco-core-box {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0 !important;
  padding: 1.4rem 1.4rem 1.2rem 1.4rem;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.eco-core-box .eco-num {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 0.4rem;
}

.eco-core-box .eco-card-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.8rem 0;
}

.eco-core-box .eco-card-sub {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #FFFFFF;
  margin: 0;
}

/* Theme Colors for Core Business Box Headers */
.card-theme-orange .eco-num,
.card-theme-orange .eco-card-title {
  color: #F36F21;
}

.card-theme-gold .eco-num,
.card-theme-gold .eco-card-title {
  color: #FAB914;
}

.card-theme-mint .eco-num,
.card-theme-mint .eco-card-title {
  color: #2BA88D;
}

.card-theme-cyan .eco-num,
.card-theme-cyan .eco-card-title {
  color: #2888B3;
}

/* Vertical Connecting Line */
.eco-connect-line {
  width: 1px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.45);
  margin: 0 auto;
}

/* Office Box (Sharp Square White Border) */
.eco-office-box {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0 !important;
  padding: 0.95rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: transparent;
  text-transform: uppercase;
  text-align: center;
}
#services { background-color: #001D2D; }

/* ==========================================================================
   SECTION 8: SERVICE & INDUSTRIES (MOBILE BENTO CODE REPLICA)
   ========================================================================== */
.services-header-pdf {
  text-align: left;
  margin-bottom: 2rem;
}

.services-title-thin {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 100;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 0;
}

.services-title-bold {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 0 0 1.2rem 0;
}

.services-subtitle-pdf {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.75;
  color: #FFFFFF;
  font-weight: 400;
}

/* Mobile Bento Solid Color Blocks */
.services-bento-mobile {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.service-box {
  width: 100%;
  padding: 1.6rem 1.6rem 1.4rem 1.6rem;
  border-radius: 0 !important; /* Sharp square corners */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}

.service-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #001D2D;
  text-align: right;
  line-height: 1.0;
  margin-bottom: 1.2rem;
}

.service-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: #001D2D;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin: 0;
}

/* Solid Block Colors matching PDF Slide 08 */
.box-orange {
  background-color: #F36F21;
}

.box-gold {
  background-color: #FAB914;
}

.box-mint {
  background-color: #2BA88D;
}

.box-cyan {
  background-color: #2888B3;
}

#projects { background-color: #001D2D; }

/* ==========================================================================
   SECTION 9: FEATURED PROJECTS (MOBILE CODE REPLICA)
   ========================================================================== */
.projects-header-pdf {
  text-align: left;
  margin-bottom: 2rem;
}

.projects-title-thin {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 100;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 0;
}

.projects-title-bold {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 0 0 1.2rem 0;
}

.projects-subtitle-pdf {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.75;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.projects-subtext-pdf {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.75;
  color: #FFFFFF;
  font-weight: 400;
}

/* Mobile Projects Grid - Horizontal Card Layout matching PDF */
.projects-grid-mobile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.proj-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0;
  background: transparent;
  border: none;
}

.proj-img-wrap {
  width: 140px;
  height: 180px;
  min-width: 140px;
  flex-shrink: 0;
  overflow: hidden;
  background: #001521;
  border-radius: 0 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proj-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

.proj-tag {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.proj-title {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 0.8rem 0;
}

.proj-meta {
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 0.25rem 0;
}

.meta-label {
  font-weight: 700;
}

.meta-val {
  color: #FFFFFF;
  font-weight: 400;
}

/* Theme Color Tags & Headings matching PDF Slide 09 */
.proj-theme-orange .proj-tag,
.proj-theme-orange .proj-title,
.proj-theme-orange .meta-label {
  color: #F36F21;
}

.proj-theme-gold .proj-tag,
.proj-theme-gold .proj-title,
.proj-theme-gold .meta-label {
  color: #FAB914;
}

.proj-theme-mint .proj-tag,
.proj-theme-mint .proj-title,
.proj-theme-mint .meta-label {
  color: #2BA88D;
}

.proj-theme-cyan .proj-tag,
.proj-theme-cyan .proj-title,
.proj-theme-cyan .meta-label {
  color: #2888B3;
}

@media (max-width: 480px) {
  .proj-img-wrap {
    width: 110px;
    height: 150px;
    min-width: 110px;
  }
  .proj-tag {
    font-size: 0.85rem;
  }
  .proj-title {
    font-size: 0.98rem;
  }
  .proj-meta {
    font-size: 0.8rem;
  }
}

#recognition {
  background: url('../images/section-10-bg.jpg') no-repeat center bottom / cover !important;
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   SECTION 10: RECOGNITION & AWARDS (PDF SLIDE CODE REPLICA)
   ========================================================================== */
.recognition-header-pdf {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.recognition-title-thin {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 100;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  line-height: 1.0;
  margin: 0;
  white-space: nowrap;
}

.recognition-subtitle-pdf {
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin: 0;
}

/* Years Container (3 Columns on Desktop) */
.awards-years-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 1.5rem;
}

.award-year-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.year-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.year-num {
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.06em;
}

.year-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.year-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Award Item Card (Frameless / No Box Border) */
.award-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.award-item:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.award-logo-wrap {
  width: 115px;
  height: 64px;
  min-width: 115px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.award-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

.award-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.award-proj-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.2rem 0;
}

.award-org {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  margin: 0 0 0.15rem 0;
}

.award-rank {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Theme Colors matching PDF Slide 10 */
.theme-orange .award-proj-title { color: #F36F21; }
.theme-gold .award-proj-title   { color: #FAB914; }
.theme-mint .award-proj-title   { color: #2BA88D; }
.theme-cyan .award-proj-title   { color: #2888B3; }

@media (max-width: 1024px) {
  .awards-years-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .recognition-header-pdf {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .awards-years-container {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .award-item {
    gap: 0.85rem;
  }

  .award-logo-wrap {
    width: 95px;
    height: 54px;
    min-width: 95px;
  }
}

#why-us {
  background: url('../images/section-11-bg.jpg') no-repeat center bottom / cover !important;
  position: relative;
  overflow: hidden;
}
#clients { background-color: #001D2D; }
#contact { background-color: #001D2D; }

/* Slide Master Image Seamless Styling */
.slide-master-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none !important;
  border: none !important;
  background: transparent;
}

/* Desktop Sections using Slide Master Images: max-width 1420px */
@media (min-width: 1025px) {
  #framework .container,
  #ecosystem .container,
  #services .container,
  #projects .container,
  #clients .container,
  #contact .container {
    max-width: 1420px !important;
  }
}

/* Core Business Responsive Image & Code Toggle */
.core-desktop-img,
.framework-desktop-img,
.ecosystem-desktop-img,
.services-desktop-img,
.projects-desktop-img {
  display: block;
}

.core-mobile-img,
.framework-mobile-img,
.ecosystem-mobile-code,
.services-mobile-code,
.projects-mobile-code {
  display: none;
}

/* Horizontal Scrollable Mobile Images */
.scrollable-mobile-img-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.scrollable-mobile-img-wrap::-webkit-scrollbar {
  height: 6px;
}

.scrollable-mobile-img-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.scrollable-mobile-img-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.scrollable-mobile-img-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.scrollable-mobile-img {
  width: 100%;
  min-width: 340px;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Section 7 specific mobile image scaling - Extra large for legibility */
#ecosystem .scrollable-mobile-img {
  width: 200%;
  min-width: 700px;
  max-width: none;
  height: auto;
  display: block;
}


/* HERO COVER */
#hero {
  text-align: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.2) 0%, rgba(0, 184, 148, 0.1) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.25em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  padding: 0.6rem 1.4rem;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT STARDUST - PDF PAGE 2 EXACT REPLICA STYLES
   ========================================================================== */
.about-section-pdf {
  background: url('../images/section-2-bg.jpg') no-repeat center bottom / cover !important;
  position: relative;
  overflow: hidden;
}

.about-container-pdf {
  position: relative;
  z-index: 2;
}

/* Header Title Block (ABOUT STARDUST) */
.about-header-pdf {
  margin-bottom: 2.5rem;
}

.about-title-thin {
  display: block;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 100; /* PDF exact: LINESeedSansTH-Thin */
  letter-spacing: 0.16em;
  color: #FFFFFF;
  line-height: 1.05;
}

.about-title-bold {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700; /* PDF exact: LINESeedSansTH-Bold */
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.05;
}

/* ABOUT STARDUST - PDF PAGE 2 EXACT LAYOUT & PDF EXTRACTED FONTS */
.about-grid-pdf {
  display: grid;
  grid-template-columns: 36% 60%;
  gap: 4%;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

/* Left Column: Description & Bold Highlight */
.about-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-desc-text {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 1.85;
  color: #FFFFFF;
  font-weight: 400; /* PDF exact: LINESeedSansTH-Regular */
}

.about-highlight-text {
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
  line-height: 1.55;
  font-weight: 700; /* PDF exact: LINESeedSansTH-Bold */
  color: #FFFFFF;
}

/* Right Column: What Shaped Us Top + 4 Metrics Horizontal Row Bottom */
.about-right-col {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

/* Top Block: WHAT SHAPED US */
.what-shaped-row {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
}

.shaped-title-block {
  display: flex;
  flex-direction: column;
  font-size: 1.35rem;
  font-weight: 400; /* PDF exact: LINESeedSansTH-Regular */
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: #FFFFFF;
  white-space: nowrap;
}

.shaped-vertical-line {
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.shaped-values-block {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #FFFFFF;
  font-weight: 400; /* PDF exact: LINESeedSansTH-Regular */
  display: flex;
  align-items: center;
}

/* Bottom Block: 4 Metrics in 1 Horizontal Row (4 Columns) */
.metrics-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 700; /* PDF exact: LINESeedSansTH-Bold */
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-lbl {
  font-size: 0.75rem;
  font-weight: 700; /* PDF exact: LINESeedSansTH-Bold */
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

/* Colors extracted directly from PDF slide-02.png */
.metric-years .metric-val,
.metric-years .metric-lbl {
  color: #FF5500; /* PDF Red-Orange */
}

.metric-annual .metric-val,
.metric-annual .metric-lbl {
  color: #FFB800; /* PDF Gold-Yellow */
}

.metric-sustainability .metric-val,
.metric-sustainability .metric-lbl {
  color: #00A8C4; /* PDF Cyan Blue */
}

.metric-awards .metric-val,
.metric-awards .metric-lbl {
  color: #33A3DC; /* PDF Light Soft Blue */
}

/* Bottom Timeline Line Area */
.about-timeline-pdf {
  position: relative;
  margin-top: 1rem;
}

.timeline-line {
  position: absolute;
  top: 5px;
  left: calc(100% / 6);
  width: calc(100% * 2 / 3);
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.timeline-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  width: 100%;
}

.timeline-node {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.node-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #FFFFFF;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.node-dot.gold-ring-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #F36F21 0%, #FAB914 25%, #2BA88D 50%, #2888B3 75%, #F36F21 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #ffffff calc(100% - 2px + 0.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #ffffff calc(100% - 2px + 0.5px));
  box-shadow: 0 0 8px rgba(242, 101, 34, 0.5);
  margin-top: -1px;
  margin-left: 50%;
}

.node-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.node-year {
  font-size: 0.78rem;
  color: #FFFFFF;
  margin-top: 0.2rem;
}

/* Responsive Media Queries for About & PDF Sections */
@media (max-width: 1024px) {
  .about-section-pdf {
    background: linear-gradient(to bottom, rgba(3, 20, 34, 0.1) 0%, rgba(3, 20, 34, 0.35) 45%, rgba(3, 20, 34, 0.6) 90%),
                url('../images/section-2-bg.jpg') no-repeat center bottom / cover !important;
  }

  .ceo-section-pdf {
    background: linear-gradient(to bottom, rgba(3, 22, 35, 0.1) 0%, rgba(3, 22, 35, 0.35) 45%, rgba(3, 22, 35, 0.6) 90%),
                url('../images/section-4-bg.jpg') no-repeat center bottom / cover !important;
  }

  .core-section-pdf {
    background: linear-gradient(to bottom, rgba(3, 21, 33, 0.1) 0%, rgba(3, 21, 33, 0.35) 45%, rgba(3, 21, 33, 0.6) 90%),
                url('../images/section-5-bg.jpg') no-repeat center bottom / cover !important;
  }

  .about-grid-pdf {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {

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

  .what-shaped-row {
    flex-direction: row;
  }

  .timeline-nodes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
  }

  .timeline-line {
    display: block;
    position: absolute;
    top: 5px;
    left: calc(100% / 6);
    width: calc(100% * 2 / 3);
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
  }

  .timeline-node {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.15rem;
  }

  .node-dot {
    margin: 0 auto 0.5rem;
  }

  .node-title {
    font-size: clamp(0.6rem, 2.3vw, 0.75rem);
    text-align: center;
    line-height: 1.25;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.8);
  }

  .node-year {
    font-size: 0.72rem;
    text-align: center;
    margin-top: 0.2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  }

  .metric-num,
  .metric-lbl {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8);
  }
}

/* ==========================================================================
   STARDUST STRATEGY - EXACT CURVED TIMELINE REPLICA
   ========================================================================== */
#strategy.strategy-curved-section,
.strategy-curved-section {
  position: relative;
  overflow: hidden;
  background-color: #01091E !important;
  background-image: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.strategy-bg-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: 1440px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.strategy-curved-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

/* Left Content Column */
.strategy-left-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 540px;
}

.strategy-main-title {
  margin: 0;
  line-height: 1.05;
  text-shadow: none !important;
}

.strategy-main-title .title-bold {
  display: block;
  font-size: clamp(2.5rem, 4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-shadow: none !important;
}

.strategy-main-title .title-thin {
  display: block;
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  text-shadow: none !important;
}

.strategy-main-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #ffffff;
  font-weight: 400;
  max-width: 22rem;
  margin: 0;
  text-shadow: none !important;
}

/* Right Column Container for Arc and Nodes */
.strategy-right-timeline {
  position: relative;
  height: 500px;
  width: 100%;
}

/* 3 Curved Node Blocks Aligned with Background Solar Arc */
.curved-node-block {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  z-index: 3;
}

/* Node 1: VISION (Top of Curve) */
.curved-node-block.node-vision {
  left: 0;
  top: -12px;
}

/* Node 2: POSITIONING (Center Straight Timeline) */
.curved-node-block.node-positioning {
  left: 0;
  top: 216px;
}

/* Node 3: PROMISE (Bottom of Curve) */
.curved-node-block.node-promise {
  left: 0;
  top: 422px;
}

/* Dots Styling (Hidden on Desktop, Visible on Mobile) */
.curved-dot {
  display: none !important;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.25rem;
  position: relative;
  z-index: 4;
  animation: solarDotPulse 3.5s infinite ease-in-out;
}

@keyframes solarDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
    filter: brightness(1.3);
  }
}

.curved-dot.dot-orange {
  background-color: #F36F21;
  box-shadow: 0 0 14px #F36F21, 0 0 28px rgba(243, 111, 33, 0.85);
  animation-delay: 0s;
}

.curved-dot.dot-gold {
  background-color: #FAB914;
  box-shadow: 0 0 14px #FAB914, 0 0 28px rgba(250, 185, 20, 0.85);
  animation-delay: 1.1s;
}

.curved-dot.dot-mint {
  background-color: #2BA88D;
  box-shadow: 0 0 14px #2BA88D, 0 0 28px rgba(43, 168, 141, 0.85);
  animation-delay: 2.2s;
}

/* Text Content Styling */
.curved-text-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.curved-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFFFFF !important;
  text-transform: uppercase;
  text-shadow: none !important;
}

.curved-desc {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  white-space: nowrap;
  text-shadow: none !important;
}

.curved-desc.desc-orange { color: #F36F21; }
.curved-desc.desc-gold   { color: #FAB914; }
.curved-desc.desc-mint   { color: #2BA88D; }

.curved-desc .font-bold {
  font-weight: 700;
}

/* Responsive Styling for Tablet & Mobile */
@media (max-width: 1024px) {
  .strategy-bg-layer {
    display: none !important;
  }

  #strategy.strategy-curved-section,
  .strategy-curved-section,
  #strategy {
    background: linear-gradient(to right, #010915 0%, #041D2B 100%) !important;
    padding-top: calc(var(--header-height) + 2.5rem) !important;
    padding-bottom: 4rem !important;
  }

  .curved-dot {
    display: block !important;
  }

  .strategy-curved-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .strategy-left-content {
    max-width: 100%;
  }

  .strategy-right-timeline {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 2rem;
  }

  .strategy-glow-arc-svg {
    display: none;
  }

  .strategy-right-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #ffffff !important;
    border-radius: 0;
  }

  .curved-node-block.node-vision,
  .curved-node-block.node-positioning,
  .curved-node-block.node-promise {
    position: relative;
    left: 0 !important;
    top: 0 !important;
  }

  .curved-dot {
    display: block !important;
    margin-left: -2rem;
    box-shadow: none !important;
    animation: none !important;
  }

  .curved-desc {
    font-size: 1.2rem;
    white-space: normal;
  }
}

/* CEO MESSAGE */
.ceo-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2.5rem;
}

.ceo-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.ceo-highlight {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #F26522 0%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceo-sub-highlight {
  color: var(--color-mint);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* 5 CORE BUSINESS */
.core-business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.core-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 1.75rem;
}

.core-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  /* border-bottom: 1px solid var(--border-card); */
}

.core-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
}

.core-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
}

.core-subtext {
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-top: 0.2rem;
}

.core-list {
  list-style: none;
}

.core-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.core-list li::before {
  content: '•';
  color: var(--color-orange);
}

.md-note-card {
  margin-top: 2.5rem;
  background: rgba(0, 184, 148, 0.08);
  border-left: 4px solid var(--color-mint);
  padding: 1.5rem 2rem;
  border-radius: 0 16px 16px 0;
}

.md-note-card p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.md-sign {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.md-sign strong {
  color: var(--color-gold);
  font-size: 1rem;
}

.md-sign span {
  color: var(--text-muted);
}

/* TRANSFORM FRAMEWORK */
.framework-banner-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

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

.step-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
}

.step-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* BUSINESS ECOSYSTEM */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.eco-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.5rem;
}

.eco-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-orange);
  margin-bottom: 0.4rem;
}

.eco-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.eco-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.offices-header {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-cyan);
  font-weight: 800;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.offices-bar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.office-tag {
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  background: rgba(0, 153, 196, 0.1);
  border: 1px solid rgba(0, 153, 196, 0.3);
  color: var(--color-cyan);
  font-size: 0.85rem;
  font-weight: 700;
}

/* SERVICES & INDUSTRIES */
.industries-header {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  font-weight: 800;
  margin-bottom: 1rem;
}

.industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.industry-tag {
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* FEATURED PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.project-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #020b14;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-info {
  padding: 1.15rem;
}

.project-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-orange);
}

.project-name {
  font-size: 1rem;
  font-weight: 800;
  margin: 0.2rem 0 0.4rem;
  color: var(--text-white);
}

.project-client {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
}

.project-category {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.2rem 0;
}

.project-year {
  font-size: 0.78rem;
  color: var(--color-cyan);
  font-weight: 700;
}

/* RECOGNITION AWARDS */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.award-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.35rem;
}

.award-year {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-card);
}

.award-item {
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.award-client {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-cyan);
}

.award-title {
  font-weight: 700;
  color: var(--text-white);
  margin: 0.1rem 0;
}

.award-badge {
  font-size: 0.78rem;
  font-weight: 700;
}

.award-badge.gold { color: #FFD700; }
.award-badge.silver { color: #C0C0C0; }
.award-badge.bronze { color: #CD7F32; }
.award-badge.honors { color: var(--color-orange); }

/* ==========================================================================
   SECTION 11: WHY CHOOSE US (PDF SLIDE EXACT CODE REPLICA)
   ========================================================================== */
.why-code-wrapper {
  display: grid;
  grid-template-columns: 42% 50%;
  gap: 8%;
  align-items: flex-start;
}

.why-header-pdf {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-title-pdf {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.why-title-pdf .title-bold {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.0;
  margin-bottom: 0.3rem;
}

.why-title-pdf .title-thin {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 100;
  color: #ffffff;
  letter-spacing: 0.14em;
  line-height: 1.0;
}

.why-desc-pdf {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.75;
  color: #ffffff;
  font-weight: 400;
  max-width: 440px;
}

.why-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 9rem;
}

.why-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.why-num-square {
  width: 64px;
  height: 64px;
  min-width: 64px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 0 !important;
  border-width: 2px;
  border-style: solid;
  background: transparent;
}

.why-num-square.num-orange { border-color: #F36F21; color: #F36F21; }
.why-num-square.num-gold   { border-color: #FAB914; color: #FAB914; }
.why-num-square.num-mint   { border-color: #2BA88D; color: #2BA88D; }
.why-num-square.num-cyan   { border-color: #2888B3; color: #2888B3; }

.why-card-info {
  flex: 1;
}

.why-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.why-item-title.title-orange { color: #F36F21; }
.why-item-title.title-gold   { color: #FAB914; }
.why-item-title.title-mint   { color: #2BA88D; }
.why-item-title.title-cyan   { color: #2888B3; }

.why-item-desc {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 960px) {
  .why-code-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-cards-stack {
    padding-top: 0;
  }

  .why-title-pdf {
    margin-bottom: 1.2rem;
  }

  .why-item-desc {
    font-size: 0.8rem;
  }
}

/* OUR CLIENTS */
.clients-desktop-img {
  display: block;
  width: 100%;
}

.clients-mobile-code {
  display: none;
  padding: 1rem 0;
}

.clients-mobile-header {
  margin-bottom: 2rem;
}

.clients-mobile-title {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.clients-mobile-title .title-bold {
  font-size: clamp(2.2rem, 6vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.clients-mobile-title .title-thin {
  font-size: clamp(1.9rem, 5.5vw, 2.5rem);
  font-weight: 100;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.clients-mobile-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #FFFFFF;
  font-weight: 400;
}

.clients-grid-mobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) and (max-width: 768px) {
  .clients-grid-mobile {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

.client-box-mobile {
  background: transparent;
  border: none;
  border-radius: 0;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  transition: transform 0.2s ease;
}

.client-box-mobile:hover {
  transform: translateY(-2px);
}

.client-box-mobile img {
  max-width: 85%;
  max-height: 75%;
  object-fit: contain;
  filter: brightness(1);
}

.clients-banner-mobile {
  text-align: right;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.clients-banner-mobile .banner-en {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.05rem, 4.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  align-items: flex-end;
}

.clients-banner-mobile .banner-line {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.clients-banner-mobile .color-orange { color: #F36F21; }
.clients-banner-mobile .color-gold   { color: #FAB914; }
.clients-banner-mobile .color-mint   { color: #2BA88D; }
.clients-banner-mobile .color-cyan   { color: #2888B3; }

.clients-banner-mobile .banner-th {
  font-size: 0.92rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 400;
  text-align: right;
}

.contact-footer-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.contact-header-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}

.contact-info-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-lets-talk {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #F26522 0%, #FFB800 100%);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(242, 101, 34, 0.4);
}

.contact-slogan-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.slogan-title-big {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-orange);
}

.slogan-subtitle-small {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Section 13 Contact Us Mobile Layout (Hidden on Desktop) */
.contact-mobile-wrapper {
  display: none;
}

#contact {
  padding-bottom: calc(var(--footer-height) + 4.5rem) !important;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .section {
    min-height: auto;
    padding: calc(var(--header-height) + 1.5rem) 0 3rem;
  }

  #hero {
    min-height: 50vh;
    padding-top: calc(var(--header-height) + 7.5rem) !important;
    padding-bottom: 8rem !important;
  }

  #hero .hero-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .nav-btn:hover,
  .nav-btn:focus,
  .nav-btn:active {
    color: var(--text-light) !important;
    background: transparent !important;
  }

  .about-grid,
  .contact-footer-card {
    grid-template-columns: 1fr;
  }

  .core-business-grid,
  .strategy-cards,
  .ecosystem-grid,
  .projects-grid,
  .recognition-grid,
  .framework-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .clients-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --footer-height: 56px;
  }

  .section {
    min-height: auto;
    padding: calc(60px + 1.5rem) 0 3rem;
  }

  .nav-dropdown {
    top: calc(100% + 4px);
    right: 0;
    width: min(280px, calc(100vw - 2rem));
  }

  .core-business-grid,
  .strategy-cards,
  .ecosystem-grid,
  .projects-grid,
  .recognition-grid,
  .framework-steps,
  .why-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .what-shaped-us-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .shaped-divider {
    width: 100%;
    height: 1px;
  }

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

  .timeline-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .timeline-step {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .timeline-dot {
    margin: 0;
  }

  .contact-slogan-block {
    text-align: left;
    align-items: flex-start;
  }

  /* Bottom Dark/Gray Fade Overlay on Responsive Views for Background Image Sections */
  #hero,
  .about-section-pdf,
  .ceo-section-pdf,
  .core-section-pdf,
  #recognition,
  #why-us {
    position: relative;
  }

  #hero::after,
  .about-section-pdf::after,
  .ceo-section-pdf::after,
  .core-section-pdf::after,
  #recognition::after,
  #why-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 14, 25, 0.25) 40%, rgba(2, 14, 25, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* Our Clients, Projects, Services, Ecosystem, Framework & Core Business: Responsive Toggles on Mobile */
  .core-desktop-img,
  .framework-desktop-img,
  .ecosystem-desktop-img,
  .services-desktop-img,
  .projects-desktop-img,
  .clients-desktop-img,
  .contact-desktop-img {
    display: none !important;
  }

  .core-mobile-img,
  .framework-mobile-img,
  .ecosystem-mobile-code,
  .services-mobile-code,
  .projects-mobile-code,
  .clients-mobile-code {
    display: block !important;
  }

  /* Section 13 Contact Us Mobile Layout */
  .contact-mobile-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 0.5rem 0;
  }

  .contact-tagline-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .contact-tagline-mobile .tagline-line {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
  }

  .contact-tagline-mobile .color-orange { color: #F36F21; }
  .contact-tagline-mobile .color-gold   { color: #FAB914; }
  .contact-tagline-mobile .color-mint   { color: #2BA88D; }
  .contact-tagline-mobile .color-cyan   { color: #2888B3; }

  .contact-card-mobile {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .contact-company-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #F36F21;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

  .contact-address {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    font-weight: 300;
  }

  .contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }

  .contact-detail-item .detail-label {
    font-weight: 800;
    min-width: 32px;
  }

  .contact-detail-item .detail-label.color-gold { color: #FAB914; }
  .contact-detail-item .detail-label.color-mint { color: #2BA88D; }
  .contact-detail-item .detail-label.color-cyan { color: #2888B3; }

  .contact-detail-item .detail-val {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 300;
    word-break: break-all;
  }

  .contact-detail-item a.detail-val:hover {
    text-decoration: underline;
    color: #F36F21;
  }

  .contact-qr-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1rem;
  }

  .contact-qr-img {
    width: 90px;
    height: 90px;
    border-radius: 0;
    display: block;
  }

  .contact-website-url {
    font-size: 0.9rem;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    font-weight: 300;
  }
}

/* ==========================================================================
   NEW SITE FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: #001D2D;
  padding: 4.5rem 0 calc(var(--footer-height) + 3.5rem);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.footer-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Left Column */
.footer-left-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-lets-talk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F36F21;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
}

.footer-lets-talk-btn:hover {
  background: #ff7b2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 111, 33, 0.45);
}

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

.footer-company-name {
  font-size: 1.5rem;
  font-weight: 300;
  color: #F36F21;
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-address {
  font-size: 1.3rem;
  line-height: 1.45;
  color: #ffffff;
  font-weight: 300;
  margin: 0;
}

.footer-phone-block {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-phone-icon {
  color: #ffffff;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.footer-phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.3rem;
}

.footer-phone-link {
  font-size: 1.3rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s ease;
}

.footer-phone-link:hover {
  color: #F36F21;
}

.footer-email-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-email-link {
  font-size: 1.6rem;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-email-link:hover {
  color: #F36F21;
}

/* Right Column */
.footer-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: space-between;
  min-height: 100%;
}

.footer-tagline-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.footer-tagline-block span {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: 0.02em;
  display: block;
}

.footer-tagline-block .tagline-gold   { color: #F36F21; font-weight: 300; }
.footer-tagline-block .tagline-yellow { color: #FAB914; font-weight: 300; }
.footer-tagline-block .tagline-mint   { color: #2BA88D; font-weight: 300; }
.footer-tagline-block .tagline-cyan   { color: #2888B3; font-weight: 300; }

.footer-bottom-right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-star-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-copyright-text {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Mobile & Tablet Responsive */
@media (max-width: 960px) {
  .site-footer {
    padding: 3rem 0 calc(var(--footer-height) + 2.5rem);
  }

  .footer-grid-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-right-col {
    align-items: flex-start;
    text-align: left;
  }

  .footer-company-name {
    font-size: 1.25rem;
  }

  .footer-address {
    font-size: 1rem;
  }

  .footer-phone-numbers,
  .footer-phone-link {
    font-size: 1rem;
  }

  .footer-email-row {
    gap: 1rem;
    margin-top: 1rem;
  }

  .footer-email-link {
    font-size: 1.15rem;
  }

  .footer-tagline-block {
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .footer-tagline-block span {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
  }

  .footer-bottom-right-block {
    align-items: flex-start;
  }

  .footer-copyright-text {
    font-size: 0.85rem;
  }
}
