/* ==========================================================================
   DBTRAN GROUP FZE — BRAND DESIGN SYSTEM
   Brand Assets: HATFAM Business Group / 02_DBTRAN_Group_FZE
   Palette: Deep Atlantic (#102A43), Bone (#F7F3EA), Slate Stone (#486581), Iron (#1C1C1C)
   Typography: Archivo (Bold, SemiBold, Regular)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,600;1,700;1,800&display=swap');

:root {
  /* Brand Core Colors (From DBTRAN Color & Type Reference) */
  --color-deep-atlantic: #102A43;        /* RGB 16, 42, 67 | PMS 539C */
  --color-deep-atlantic-dark: #071727;   /* Ultra-deep cinematic base */
  --color-deep-atlantic-soft: #1D4368;   /* Interactive hover */
  
  --color-bone: #F7F3EA;                 /* RGB 247, 243, 234 */
  --color-bone-pure: #FFFFFF;            /* Card / clean surface */
  --color-bone-alt: #EFE9DC;             /* Tonal section separator */
  --color-bone-border: rgba(16, 42, 67, 0.12);

  --color-slate-stone: #486581;          /* RGB 72, 101, 129 | PMS 7692C - Entity Accent */
  --color-slate-stone-light: #7E9BB8;    /* High contrast slate accent */
  --color-slate-stone-tint: rgba(72, 101, 129, 0.12);
  --color-slate-stone-subtle: rgba(72, 101, 129, 0.05);

  --color-iron: #1C1C1C;                 /* RGB 28, 28, 28 */

  /* Functional Text Colors */
  --text-primary: #102A43;               /* Deep Atlantic on Bone */
  --text-secondary: #486581;             /* Slate Stone */
  --text-muted: #627D98;                 /* Subdued copy */
  --text-on-dark: #F7F3EA;               /* Bone on Deep Atlantic */
  --text-on-dark-muted: #CBD7E3;         /* Brightened readable slate on dark */

  --color-star: #D4A359;                 /* Testimonial gold rating */

  /* Typography */
  --font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1320px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(16, 42, 67, 0.04);
  --shadow-md: 0 10px 30px rgba(16, 42, 67, 0.08);
  --shadow-lg: 0 20px 48px rgba(16, 42, 67, 0.14);
  --shadow-glow: 0 0 35px rgba(72, 101, 129, 0.35);

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.2, 0, 0, 1);
  --trans-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bone);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  line-height: 1.65;
  font-weight: 400;
  background-color: var(--color-bone);
  color: var(--text-primary);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-fast);
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: inherit;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title-section {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
}

.title-subsection {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
}

.lead-text {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Sub-labels and category chips */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-slate-stone);
  padding: 0.35rem 0.85rem;
  background-color: var(--color-slate-stone-tint);
  border: 1px solid rgba(72, 101, 129, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.section-tag.on-dark {
  color: var(--color-bone);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.text-accent {
  color: var(--color-slate-stone);
}

/* Containers & Sections */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

.section-alt {
  background-color: var(--color-bone-alt);
  border-top: 1px solid var(--color-bone-border);
  border-bottom: 1px solid var(--color-bone-border);
}

.section-dark {
  background-color: var(--color-deep-atlantic);
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
  max-width: 820px;
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2.2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--trans-base);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-deep-atlantic);
  color: var(--color-bone);
  border-color: var(--color-deep-atlantic);
}

.btn-primary:hover {
  background-color: var(--color-deep-atlantic-soft);
  box-shadow: 0 6px 20px rgba(16, 42, 67, 0.25);
  transform: translateY(-2px);
}

.btn-hero-primary {
  background: #FFFFFF;
  color: var(--color-deep-atlantic);
  border-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-hero-primary:hover {
  background: var(--color-bone);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-deep-atlantic);
  border-color: var(--color-deep-atlantic);
}

.btn-outline:hover {
  background-color: var(--color-deep-atlantic);
  color: var(--color-bone);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(247, 243, 234, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-bone-border);
  z-index: 100;
  transition: var(--trans-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(247, 243, 234, 0.98);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 38px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-deep-atlantic);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-slate-stone);
  transition: var(--trans-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-deep-atlantic);
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

/* Business Profile Sub-Banner */
.profile-banner {
  background-color: var(--color-deep-atlantic-dark);
  color: var(--color-bone);
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.profile-banner-pillars {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-banner-pillars span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.profile-banner-location {
  color: var(--color-slate-stone-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   CINEMATIC HERO SECTION (With Dubai Harbor Trade Background & Bold Flair)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
  background: 
    linear-gradient(135deg, rgba(7, 23, 39, 0.94) 0%, rgba(16, 42, 67, 0.86) 50%, rgba(7, 23, 39, 0.96) 100%),
    url('assets/hero-bg.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Ambient glow accents */
.hero-ambient-glow {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(72, 101, 129, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}

.hero-ambient-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 163, 89, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 720px;
}

/* Frosted Capsule Badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bone);
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38ef7d;
  box-shadow: 0 0 10px #38ef7d;
  display: inline-block;
}

/* Bold Creative Headline */
.hero-headline {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-flair-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #A5C4E1 0%, #E2EDF8 50%, #F7F3EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}

.hero-positioning {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-bone);
  margin-bottom: 1.25rem;
  line-height: 1.45;
  border-left: 3px solid var(--color-slate-stone-light);
  padding-left: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.125rem;
  color: #CBD7E3;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Glassmorphic Interactive Hero Showcase Card */
.hero-glass-card {
  background: rgba(10, 28, 46, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #627D98 0%, #FFFFFF 50%, #627D98 100%);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-logo {
  height: 34px;
  width: auto;
}

.hero-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A5C4E1;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.hero-glass-card h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-glass-card p {
  font-size: 0.9375rem;
  color: #CBD7E3;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* 4 Interactive Sectors inside Glass Card */
.hero-sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.sector-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  transition: var(--trans-base);
  cursor: default;
}

.sector-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.sector-chip h5 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A5C4E1;
  margin-bottom: 0.25rem;
}

.sector-chip p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.hero-card-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #CBD7E3;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-text p strong {
  color: var(--color-deep-atlantic);
}

.overview-box {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.overview-box h4 {
  font-size: 1.1rem;
  color: var(--color-deep-atlantic);
  margin-bottom: 0.75rem;
}

.overview-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Vision & Mission Cards */
.vm-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vision-card {
  background: var(--color-deep-atlantic);
  color: var(--color-bone);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.vision-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
  color: var(--color-bone);
}

.vision-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}

.mission-card {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.mission-card h3 {
  font-size: 1.45rem;
  color: var(--color-deep-atlantic);
  margin-bottom: 1.5rem;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mission-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.mission-bullet-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-slate-stone-tint);
  color: var(--color-deep-atlantic);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.mission-bullet span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   OUR STORY SECTION
   ========================================================================== */
.story-section {
  background-color: var(--color-deep-atlantic);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.story-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.08;
  background: url('assets/Pattern_Bone.svg') no-repeat center right;
  background-size: cover;
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-content h2 {
  color: var(--color-bone);
  margin-bottom: 1.5rem;
}

.story-lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-bone);
  margin-bottom: 1.5rem;
}

.story-paragraphs p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.25rem;
}

.story-card-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 3rem;
  backdrop-filter: blur(8px);
}

.story-card-box h4 {
  font-size: 1.25rem;
  color: var(--color-bone);
  margin-bottom: 1rem;
}

.story-card-box p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.5rem;
}

.story-quote-box {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--color-slate-stone-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
}

.story-quote-box p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-bone);
  margin: 0;
}

/* ==========================================================================
   CORE ACTIVITIES & DETAILED SERVICES TABS
   ========================================================================== */
.activities-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-bone-border);
  padding-bottom: 1rem;
  overflow-x: auto;
}

.activity-tab-btn {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-deep-atlantic);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  transition: var(--trans-base);
}

.activity-tab-btn:hover {
  border-color: var(--color-slate-stone);
  background-color: #ffffff;
}

.activity-tab-btn.active {
  background-color: var(--color-deep-atlantic);
  color: var(--color-bone);
  border-color: var(--color-deep-atlantic);
}

.activity-pane {
  display: none;
}

.activity-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

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

.activity-detail-card {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.activity-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-bone-border);
}

.activity-number-badge {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-slate-stone);
  line-height: 1;
}

.activity-category-pill {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-deep-atlantic);
  background-color: var(--color-bone-alt);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.activity-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.activity-item-card {
  background: var(--color-bone);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  transition: var(--trans-base);
}

.activity-item-card:hover {
  background-color: #ffffff;
  border-color: var(--color-slate-stone);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.item-check-icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.activity-item-card h4 {
  font-size: 1.1rem;
  color: var(--color-deep-atlantic);
  margin-bottom: 0.5rem;
}

.activity-item-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.custom-sourcing-banner {
  margin-top: 2rem;
  background: linear-gradient(90deg, rgba(16, 42, 67, 0.04) 0%, rgba(72, 101, 129, 0.08) 100%);
  border: 1px dashed var(--color-slate-stone);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-sourcing-banner p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-deep-atlantic);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--trans-base);
  display: flex;
  flex-direction: column;
}

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

.why-check {
  font-size: 1.75rem;
  color: var(--color-deep-atlantic);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--color-deep-atlantic);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CLIENTS & PARTNERS SECTION
   ========================================================================== */
.partners-statement {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-deep-atlantic);
  max-width: 860px;
  margin-bottom: 2rem;
  border-left: 3px solid var(--color-slate-stone);
  padding-left: 1.25rem;
}

.trusted-badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.trusted-badge {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  background-color: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-pill);
  color: var(--color-deep-atlantic);
}

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

.partner-category-box {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.partner-category-box h4 {
  font-size: 1.1rem;
  color: var(--color-deep-atlantic);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-bone-border);
}

.partner-subsector {
  margin-bottom: 1.25rem;
}

.partner-subsector:last-child {
  margin-bottom: 0;
}

.partner-subsector h5 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate-stone);
  margin-bottom: 0.4rem;
}

.partner-subsector p {
  font-size: 0.9375rem;
  color: var(--color-deep-atlantic);
  font-weight: 600;
  line-height: 1.5;
}

/* Continuous Marquee Ticker */
.partners-ticker {
  background: var(--color-deep-atlantic);
  color: var(--color-bone);
  padding: 1.25rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-content {
  display: inline-flex;
  gap: 3rem;
  animation: scrollTicker 35s linear infinite;
  align-items: center;
}

.ticker-item {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.ticker-item::after {
  content: '•';
  color: var(--color-slate-stone-light);
  font-size: 1rem;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-slate-stone);
}

.testimonial-stars {
  color: var(--color-star);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.2rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-deep-atlantic);
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  border-top: 1px solid var(--color-bone-border);
  padding-top: 1rem;
}

.author-role {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-deep-atlantic);
}

.author-company {
  font-size: 0.8125rem;
  color: var(--color-slate-stone);
  margin-top: 0.15rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4.5rem;
}

.contact-info-col h3 {
  margin-bottom: 1.25rem;
  color: var(--color-deep-atlantic);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-atlantic);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-text-box h5 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-slate-stone);
  margin-bottom: 0.25rem;
}

.contact-text-box p, .contact-text-box a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-deep-atlantic);
  line-height: 1.5;
}

/* Inquiry Form Card */
.inquiry-form-card {
  background: var(--color-bone-pure);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.inquiry-form-card h3 {
  font-size: 1.5rem;
  color: var(--color-deep-atlantic);
  margin-bottom: 0.5rem;
}

.inquiry-form-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-deep-atlantic);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--color-bone);
  border: 1px solid var(--color-bone-border);
  border-radius: var(--radius-sm);
  color: var(--color-deep-atlantic);
  transition: var(--trans-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-deep-atlantic);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 42, 67, 0.08);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-deep-atlantic);
  color: var(--text-on-dark);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-top: 1.25rem;
  max-width: 360px;
}

.footer-tagline-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-bone);
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-stone-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.9375rem;
  transition: var(--trans-fast);
}

.footer-links a:hover {
  color: var(--color-bone);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   MOBILE DRAWER & RESPONSIVE
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 42, 67, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans-base);
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--color-bone);
  z-index: 201;
  transform: translateX(100%);
  transition: var(--trans-base);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-bone-border);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-drawer-links .nav-link {
  font-size: 1.1rem;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 3rem;
  }
  .activities-grid, .activity-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-groups-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-grid, .story-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .site-nav, .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
  .hero-sectors-grid {
    grid-template-columns: 1fr;
  }
  .activity-items-grid, .testimonials-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .activity-detail-card {
    padding: 1.75rem;
  }
}

/* Toast Notice */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-deep-atlantic);
  color: var(--color-bone);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-slate-stone);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--trans-base);
  font-size: 0.9375rem;
  font-weight: 500;
}

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