/*
Theme Name: Shree Krishna Enterprise
Theme URI: https://shreekrishnaenterprise.com
Author: Shree Krishna Enterprise
Author URI: https://shreekrishnaenterprise.com
Description: Modern, high-performance light-theme corporate WordPress theme for Shree Krishna Enterprise - Supplier & Exporter of Interlocking Paver Blocks in Gandhidham, Gujarat, India.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: shree-krishna-enterprise
License: Proprietary
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&display=swap');

/* ==========================================================================
   SHREE KRISHNA ENTERPRISE - MODERN LIGHT THEME STYLESHEET
   Brand Palette:
   - Deep Navy: #002757
   - Warm Gold: #cb9d3f
   - Light Gold: #feda76
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Core Colors */
  --primary-navy: #002757;
  --primary-navy-dark: #001a3b;
  --primary-navy-light: #0a3a78;
  --primary-navy-surface: rgba(0, 39, 87, 0.04);
  
  --gold-warm: #cb9d3f;
  --gold-warm-hover: #b8892f;
  --gold-warm-subtle: rgba(203, 157, 63, 0.12);
  --gold-light: #feda76;
  --gold-glow: rgba(254, 218, 118, 0.35);

  /* Light Theme Neutrals */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-subtle: #f1f5f9;
  --bg-card-hover: #ffffff;
  
  /* Text Colors */
  --text-heading: #002757;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-gold: rgba(203, 157, 63, 0.28);
  --border-gold-focus: #cb9d3f;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 39, 87, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(0, 39, 87, 0.07), 0 4px 12px -2px rgba(0, 39, 87, 0.03);
  --shadow-lg: 0 16px 36px -6px rgba(0, 39, 87, 0.1), 0 8px 18px -4px rgba(0, 39, 87, 0.05);
  --shadow-gold: 0 10px 25px -5px rgba(203, 157, 63, 0.3);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing */
  --container-max: 1240px;
  --header-height: 84px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1.1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

ul, ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Contrast-Aware Sticky Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 39, 87, 0.08);
  z-index: 1000;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  will-change: height;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px -2px rgba(0, 39, 87, 0.08), 0 2px 6px -1px rgba(0, 39, 87, 0.04);
  border-bottom-color: rgba(203, 157, 63, 0.22);
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

/* Logo Brand Box - Contrast Protected */
.brand-logo-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 4px 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform var(--transition-fast);
}

.site-header.scrolled .brand-logo-img {
  height: 42px;
}

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

/* Brand Wordmark Beside Logo */
.brand-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.brand-name-top {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: font-size 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-name-top .brand-shree {
  color: var(--primary-navy);
  font-weight: 700;
}

.brand-name-top .brand-krishna {
  background: linear-gradient(180deg, #dfb858 0%, #cb9d3f 55%, #a67420 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-warm);
  font-weight: 800;
  display: inline-block;
}

/* Centered ENTERPRISE with Borders On Both Ends */
.brand-sub-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  margin-top: 3px;
}

.brand-sub-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, #dfb858 0%, #cb9d3f 100%);
  border-radius: 1px;
}

.brand-sub-row .brand-sub-line:first-child {
  background: linear-gradient(90deg, #cb9d3f 0%, #dfb858 100%);
}

.brand-name-sub {
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
  padding-left: 0.28em; /* optical centering against letter-spacing */
  transition: font-size 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .brand-name-top {
  font-size: 1.06rem;
}

.site-header.scrolled .brand-name-sub {
  font-size: 0.52rem;
}

/* Desktop Navigation - Mathematically Centered Floating Dock */
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 39, 87, 0.03);
  border: 1px solid rgba(0, 39, 87, 0.07);
  padding: 5px 6px;
  border-radius: var(--border-radius-full);
  box-shadow: inset 0 1px 2px rgba(0, 39, 87, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .desktop-nav {
  padding: 4px 5px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.5rem 1.15rem;
  border-radius: var(--border-radius-full);
  position: relative;
  letter-spacing: 0.01em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.site-header.scrolled .nav-link {
  padding: 0.42rem 1rem;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--primary-navy);
  background: rgba(255, 255, 255, 0.85);
}

/* Active Nav Pill: Elevated crisp white card with gold accent aura and glowing jewel indicator */
.nav-link.active {
  color: var(--primary-navy);
  font-weight: 700;
  background: #ffffff;
  border: 1px solid rgba(203, 157, 63, 0.4);
  box-shadow: 0 2px 10px rgba(0, 39, 87, 0.07), 0 0 12px rgba(203, 157, 63, 0.12);
}

.nav-link.active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-warm);
  box-shadow: 0 0 6px rgba(203, 157, 63, 0.9);
}

/* Header Right Actions - Single Call-To-Action Button */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .header-actions .btn-sm {
  padding: 0.5rem 1.15rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-sm);
  background-color: var(--primary-navy-surface);
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 24px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}


/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  box-shadow: -10px 0 35px rgba(0, 39, 87, 0.16);
  z-index: 1001;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 26, 59, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-drawer-close {
  background: var(--primary-navy-surface) !important;
  border: 1px solid rgba(0, 39, 87, 0.08) !important;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem !important;
  color: var(--primary-navy) !important;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: var(--primary-navy) !important;
  color: #ffffff !important;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: auto;
  padding: 0;
}

.mobile-nav-links::before {
  content: 'NAVIGATION';
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  padding-left: 0.35rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.mobile-nav-link::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-link:hover {
  background: #ffffff;
  border-color: rgba(0, 39, 87, 0.2);
  color: var(--primary-navy);
}

.mobile-nav-link:hover::after {
  transform: translateX(3px);
  color: var(--primary-navy);
}

.mobile-nav-link.active {
  background: #ffffff;
  color: var(--primary-navy);
  font-weight: 700;
  border-color: rgba(203, 157, 63, 0.45);
  box-shadow: 0 2px 8px rgba(203, 157, 63, 0.12);
}

.mobile-nav-link.active::after {
  color: var(--gold-warm);
}

.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.62rem 1.5rem;
  border-radius: var(--border-radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-warm) 0%, #b8892f 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #dfaf4e 0%, var(--gold-warm) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(203, 157, 63, 0.4);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-navy);
  border-color: rgba(0, 39, 87, 0.15);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

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

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.4rem 1.05rem;
  font-size: 0.86rem;
}

.btn-lg {
  padding: 0.72rem 1.75rem;
  font-size: 1rem;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.32rem 0.85rem;
  background: var(--gold-warm-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-full);
  color: var(--primary-navy);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
}

.eyebrow-badge i {
  color: var(--gold-warm);
}

/* --------------------------------------------------------------------------
   5. Section Common Components
   -------------------------------------------------------------------------- */
section {
  padding: 4.25rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.04rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   6. SECTION 1: Hero Section
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   6. SECTION 1: Bespoke Cinematic Hero Section (Full-Width / Modern)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + 3.25rem);
  padding-bottom: 4.5rem;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(254, 218, 118, 0.2) 0%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.92) 55%, rgba(248, 250, 252, 0.98) 100%),
    url('https://content.jdmagicbox.com/v2/comp/pune/w2/020pxx20.xx20.140731125727.c6w2/catalogue/sadguru-krupa-production-jambhe-pune-cement-block-dealers-f69s1sbkcg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Subtle architectural grid pattern background */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 39, 87, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.4;
}

.hero-content-center {
  max-width: 820px;
  margin: 0 auto 3rem auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.85rem);
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .text-gold {
  background: linear-gradient(135deg, var(--gold-warm) 0%, #d4a748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.14rem;
  color: var(--text-body);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

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

/* Standalone 3-Pillar Glass Dock */
.hero-dock-wrap {
  max-width: 1060px;
  margin: 3.5rem auto 0 auto;
  position: relative;
  z-index: 2;
}

.hero-glass-dock {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 1.35rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-smooth);
}

.hero-glass-dock:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(203, 157, 63, 0.45);
}

.dock-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dock-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-warm-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.dock-item:hover .dock-icon {
  background: linear-gradient(135deg, var(--gold-warm) 0%, #b8892f 100%);
  color: #ffffff;
}

.dock-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

.dock-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.dock-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* --------------------------------------------------------------------------
   7. SECTION 2: About / Company Intro
   -------------------------------------------------------------------------- */
.about-intro-section {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.about-visual-wrap {
  position: relative;
}

.about-img-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 39, 87, 0.08);
}

.about-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold-warm);
}

.badge-headline {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.badge-sub {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

.about-intro-content .section-title {
  margin-bottom: 1.25rem;
}

.intro-lead-text {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.intro-sub-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-key-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.key-point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.key-point-item i {
  color: var(--gold-warm);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   8. SECTION 3: Featured Products Preview (4 Flagship Cards)
   -------------------------------------------------------------------------- */
.products-preview-section {
  background: var(--bg-body);
}

.products-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.product-preview-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  background: #edf2f7;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 39, 87, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--border-radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.3rem;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
  transition: color var(--transition-fast);
}

.product-preview-card:hover .product-title {
  color: var(--gold-warm);
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.products-action-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. SECTION 4: Why Buyers Speak With Us (Strengths & Values)
   -------------------------------------------------------------------------- */
.why-us-section {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.65rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--gold-warm), var(--gold-light));
  border-radius: 4px 4px 0 0;
  transition: width var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.why-card:hover::before {
  width: 100%;
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  background: var(--gold-warm-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.why-card:hover .why-icon-box {
  background: linear-gradient(135deg, var(--gold-warm), #b8892f);
  color: #ffffff;
}

.why-card-title {
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. SECTION 5: Trade & Supply Journey (Connected Dotted Line Track)
   -------------------------------------------------------------------------- */
.process-section {
  background: var(--bg-body);
  position: relative;
  overflow: hidden;
}

.journey-wrapper {
  position: relative;
  margin-top: 1.5rem;
}

/* Continuous Dotted Journey Track Line across milestone nodes (Desktop) */
.journey-track-line {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--gold-warm) 0, var(--gold-warm) 10px, transparent 10px, transparent 20px);
  z-index: 1;
  pointer-events: none;
}

.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.journey-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journey-node-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

/* Circular Milestone Node */
.journey-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--gold-warm);
  box-shadow: 0 0 0 6px rgba(203, 157, 63, 0.15), var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 1.35rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.journey-step-item:hover .journey-node {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: var(--gold-light);
  box-shadow: 0 0 0 8px rgba(203, 157, 63, 0.28), var(--shadow-lg);
  border-color: var(--gold-warm);
}

.journey-step-item:hover .journey-node-num {
  color: var(--gold-light);
}

.journey-step-pill {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: rgba(0, 39, 87, 0.06);
  padding: 0.2rem 0.65rem;
  border-radius: var(--border-radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.journey-step-item:hover .journey-step-pill {
  background: var(--gold-warm-subtle);
  color: var(--primary-navy-dark);
}

/* Step Content Card */
.journey-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.journey-step-item:hover .journey-card {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.journey-card-title {
  font-size: 1.08rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.journey-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. SECTION 6: Contact CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 3.5rem 0;
  background: #ffffff;
}

.cta-banner-box {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.75rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Gold glow accent in background */
.cta-banner-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 218, 118, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cta-phone-link {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.cta-phone-link:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   12. Footer (Simple: Center Copyright Only)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 2.25rem 0;
  text-align: center;
}

.copyright-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.copyright-text span {
  font-weight: 700;
  color: var(--primary-navy);
}

/* --------------------------------------------------------------------------
   13. Animations & Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   14. Responsive Breakpoints (Mobile-First / High-End Polish)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .products-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-track-line {
    display: none;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .desktop-nav,
  .header-phone,
  .hide-mobile {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-glass-dock {
    margin-top: 2rem;
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    border-radius: var(--border-radius-md);
  }

  .dock-divider {
    display: none;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-experience-badge {
    right: 15px;
    bottom: -15px;
  }

  .cta-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.75rem;
    gap: 1.75rem;
  }

  .cta-banner-actions {
    align-items: center;
  }

  /* Journey Vertical Track for Mobile / Tablet */
  .journey-wrapper {
    margin-top: 1rem;
  }

  .journey-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    padding-left: 2.5rem;
  }

  .journey-steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 27px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--gold-warm) 0, var(--gold-warm) 8px, transparent 8px, transparent 16px);
    z-index: 1;
  }

  .journey-step-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
  }

  .journey-node-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-left: -2.5rem;
  }

  .journey-node {
    width: 54px;
    height: 54px;
    font-size: 1.05rem;
  }

  .journey-step-pill {
    display: none;
  }

  .journey-card {
    text-align: left;
    padding: 1.25rem 1.15rem;
  }
}

@media (max-width: 640px) {
  .brand-logo-link {
    gap: 9px;
  }

  .brand-logo-img {
    height: 44px;
  }

  .brand-name-top {
    font-size: 1.02rem;
  }

  .brand-sub-row {
    gap: 6px;
    margin-top: 2px;
  }

  .brand-name-sub {
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    padding-left: 0.22em;
  }

  section {
    padding: 3.25rem 0;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3.25rem;
  }

  .products-preview-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions-center {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions-center .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   15. Inner Pages Header & Common Elements
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--header-height) + 2.75rem);
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at 50% 10%, rgba(254, 218, 118, 0.18) 0%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero-content {
  max-width: 840px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  color: var(--primary-navy);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero-title .text-gold {
  background: linear-gradient(135deg, var(--gold-warm) 0%, #d4a748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-desc {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mv-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-smooth);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-warm), var(--gold-light));
  border-radius: 4px 0 0 4px;
}

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

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-warm-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.mv-title {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 0.8rem;
}

.mv-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Core Values 6-Card Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

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

.value-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.value-icon {
  color: var(--gold-warm);
  font-size: 1.15rem;
}

.value-title {
  font-size: 1.15rem;
  color: var(--primary-navy);
  font-weight: 700;
}

.value-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* How We Work 4-Column Grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.approach-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 1.85rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border-top: 3.5px solid var(--gold-warm);
}

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

.approach-card-title {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.approach-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Leadership 2-Card Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.leader-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition-smooth);
}

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

.leader-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  border: 2px solid var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.leader-info h3 {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.leader-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-warm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  display: block;
}

.leader-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  transition: color var(--transition-fast);
}

.leader-contact:hover {
  color: var(--gold-warm);
}

/* Responsive Overrides for Inner Pages */
@media (max-width: 900px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .values-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .leader-card {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   16. Products Page Components
   -------------------------------------------------------------------------- */
.product-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.25rem;
}

.filter-btn {
  padding: 0.55rem 1.35rem;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--primary-navy);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.filter-btn.active {
  box-shadow: 0 4px 14px rgba(0, 39, 87, 0.18);
}

.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.catalog-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.catalog-card.hidden {
  display: none !important;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.catalog-img-wrap {
  position: relative;
  height: 230px;
  background: #edf2f7;
  overflow: hidden;
}

.catalog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.catalog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 39, 87, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.32rem 0.8rem;
  border-radius: var(--border-radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-title {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.catalog-character {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-warm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  display: block;
}

.catalog-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.catalog-apps-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.catalog-apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.catalog-app-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-card-subtle);
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.catalog-card-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-action-btn {
  width: 100%;
}

/* How To Choose Section */
.choose-section {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.choose-card {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 1.75rem 1.4rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.choose-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.choose-step-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-warm);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.choose-card-title {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.choose-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.product-responsibility-box {
  background: rgba(0, 39, 87, 0.03);
  border: 1px solid rgba(0, 39, 87, 0.1);
  border-left: 4px solid var(--gold-warm);
  border-radius: var(--border-radius-sm);
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.responsibility-icon {
  font-size: 1.4rem;
  color: var(--gold-warm);
  flex-shrink: 0;
  margin-top: 2px;
}

.responsibility-text {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.responsibility-text strong {
  color: var(--primary-navy);
}

/* --------------------------------------------------------------------------
   Responsive Overrides for Products Page
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .products-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  .product-filter-bar {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.84rem;
  }

  .products-catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .catalog-card {
    max-width: 100%;
  }

  .catalog-img-wrap {
    height: 220px;
  }

  .catalog-body {
    padding: 1.35rem 1.25rem;
  }

  .catalog-title {
    font-size: 1.3rem;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .choose-card {
    padding: 1.35rem 1.2rem;
  }

  .product-responsibility-box {
    padding: 1.2rem 1.25rem;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .products-catalog-grid {
    gap: 1.25rem;
  }

  .catalog-img-wrap {
    height: 195px;
  }

  .catalog-body {
    padding: 1.15rem 1rem;
  }

  .catalog-title {
    font-size: 1.18rem;
  }

  .catalog-character {
    font-size: 0.76rem;
    margin-bottom: 0.75rem;
  }

  .catalog-apps-list {
    gap: 5px;
  }

  .catalog-app-tag {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
  }

  .filter-btn {
    padding: 0.42rem 0.9rem;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */

/* 1. Contact Leadership & Info Cards */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-warm);
  opacity: 0.8;
  transition: height var(--transition-fast), background var(--transition-fast);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(203, 157, 63, 0.4);
}

.contact-info-card:hover::before {
  height: 6px;
  background: var(--primary-navy);
}

.contact-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 39, 87, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-card-icon-wrap i {
  color: var(--primary-navy);
  transition: color var(--transition-fast);
}

.contact-info-card:hover .contact-card-icon-wrap {
  background: var(--primary-navy);
  box-shadow: 0 4px 12px rgba(0, 39, 87, 0.15);
}

.contact-info-card:hover .contact-card-icon-wrap i {
  color: #ffffff !important;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.contact-card-role {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-warm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.contact-card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.contact-person-entry {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-person-entry:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.contact-person-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

.contact-person-number {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-person-number i {
  color: var(--gold-warm);
  transition: color var(--transition-fast);
}

.contact-person-number:hover {
  color: var(--primary-navy);
}

.contact-person-number:hover i {
  color: var(--primary-navy);
}

.contact-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* View on Map Button */
.contact-btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #ffffff;
  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
  padding: 0.6rem 1.15rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.contact-btn-map i {
  color: var(--gold-warm);
  transition: color var(--transition-fast);
}

.contact-btn-map:hover {
  background: var(--primary-navy);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 39, 87, 0.2);
}

.contact-btn-map:hover i {
  color: #ffffff !important;
}

/* Call Button */
.contact-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  background: var(--primary-navy);
  color: #ffffff;
  border: 1.5px solid var(--primary-navy);
  padding: 0.6rem 1.15rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.contact-btn-call i {
  color: #ffffff;
  transition: color var(--transition-fast);
}

.contact-btn-call:hover {
  background: #001a3d;
  color: #ffffff;
  border-color: #001a3d;
  box-shadow: 0 4px 12px rgba(0, 39, 87, 0.25);
}

.contact-btn-call:hover i {
  color: #ffffff !important;
}

/* WhatsApp Button */
.contact-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  background: #25d366;
  color: #ffffff;
  border: 1.5px solid #25d366;
  padding: 0.6rem 1.15rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.contact-btn-wa i {
  color: #ffffff;
  font-size: 1rem;
}

.contact-btn-wa:hover {
  background: #1eb857;
  border-color: #1eb857;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* Email Button */
.contact-btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-warm) 0%, #b8892f 100%);
  color: #ffffff;
  border: 1.5px solid transparent;
  padding: 0.6rem 1.15rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.contact-btn-email i {
  color: #ffffff;
  transition: color var(--transition-fast);
}

.contact-btn-email:hover {
  background: linear-gradient(135deg, #dfaf4e 0%, var(--gold-warm) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(203, 157, 63, 0.4);
}

.contact-btn-email:hover i {
  color: #ffffff !important;
}

/* 2. Main Contact Interaction Section (Form + Sidebar) */
.contact-main-section {
  padding: 1.5rem 0 4rem;
  background: var(--bg-body);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.75rem;
  align-items: start;
}

/* Enquiry Form Card */
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-warm);
  margin-bottom: 0.5rem;
}

.form-header-title {
  font-size: 1.65rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-header-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .req-star {
  color: #dc2626;
  font-weight: 700;
}

.form-label .optional-tag {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-navy);
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--border-radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
  font-size: 0.88rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(0, 39, 87, 0.09);
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #ef4444;
  background-color: #fffaf0;
}

.form-error-msg {
  font-size: 0.76rem;
  color: #ef4444;
  margin-top: 0.2rem;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23002757' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

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

.form-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--bg-card-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-subtle);
}

.form-submit-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}

/* 3. Contact Sidebar Elements */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-prompt-card {
  background: linear-gradient(145deg, #ffffff 0%, rgba(203, 157, 63, 0.07) 100%);
  border: 1px solid rgba(203, 157, 63, 0.3);
  position: relative;
  overflow: hidden;
}

.sidebar-prompt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-warm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.sidebar-prompt-title {
  font-size: 1.3rem;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
}

.sidebar-prompt-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.sidebar-prompt-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prompt-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
}

.prompt-contact-row:hover {
  border-color: var(--gold-warm);
  transform: translateX(3px);
}

.prompt-contact-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.15rem;
}

.prompt-contact-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.prompt-contact-links {
  display: flex;
  gap: 8px;
}

.prompt-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.prompt-icon-btn.call {
  background: rgba(0, 39, 87, 0.08);
  color: var(--primary-navy);
}

.prompt-icon-btn.call:hover {
  background: var(--primary-navy);
  color: #ffffff;
}

.prompt-icon-btn.wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.prompt-icon-btn.wa:hover {
  background: #25d366;
  color: #ffffff;
}

/* Strategic Port Hub Card */
.sidebar-hub-title {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-hub-title i {
  color: var(--gold-warm);
}

.hub-points-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hub-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.hub-point-item i {
  color: var(--gold-warm);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hub-point-item strong {
  color: var(--primary-navy);
}

/* Interactive Map Card */
.sidebar-map-card {
  padding: 0;
  overflow: hidden;
}

.map-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card-subtle);
}

.map-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-title i {
  color: var(--gold-warm);
}

.map-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  background: #e2e8f0;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 4. Buyer FAQ Accordion Section */
.contact-faq-section {
  padding: 5rem 0 4.5rem;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(203, 157, 63, 0.5);
  box-shadow: 0 4px 14px rgba(0, 39, 87, 0.05);
  background: #ffffff;
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question-btn {
  color: var(--gold-warm);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 39, 87, 0.06);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-navy);
  color: var(--gold-soft);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.35rem;
}

.faq-answer-text {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* 5. Custom SweetAlert Styling for SKE Theme */
.ske-swal-popup {
  border-radius: var(--border-radius-md) !important;
  padding: 2rem !important;
  font-family: var(--font-body) !important;
}

.ske-swal-title {
  color: var(--primary-navy) !important;
  font-family: var(--font-heading) !important;
  font-size: 1.5rem !important;
}

.ske-swal-confirm {
  background: var(--primary-navy) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-radius: var(--border-radius-sm) !important;
  padding: 0.7rem 1.75rem !important;
  box-shadow: none !important;
}

.ske-swal-confirm:hover {
  background: #001a3d !important;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-card-actions {
    flex-direction: column;
  }
  .contact-btn-call,
  .contact-btn-wa {
    width: 100%;
    justify-content: center;
  }
}

/* 6. Minimal Social Media Section */
.social-minimal-section {
  padding: 3.25rem 0 3.75rem;
  background: var(--bg-white);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.social-minimal-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-warm);
  margin-bottom: 1.25rem;
  display: block;
}

.social-minimal-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--bg-body);
  color: var(--primary-navy);
  border: 1.5px solid var(--border-subtle);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-icon-btn i {
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.social-icon-btn:hover {
  transform: translateY(-4px);
}

.social-icon-btn:hover i {
  transform: scale(1.12);
  color: #ffffff;
}

.social-icon-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.social-icon-btn.li:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.35);
}

.social-icon-btn.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.35);
}

.social-icon-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
}



