/* ============================================================
   TRADE OCEANAIRE LLC – Premium Corporate Trading Website
   Color Palette: Dark Blue · White · Gold
   ============================================================ */

:root {
  --navy-dark: #061220;
  --navy: #0a1628;
  --navy-mid: #0d2137;
  --navy-light: #1a3a5c;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-dark: #a6851f;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray-100: #e8ecf1;
  --gray-300: #94a3b8;
  --gray-500: #64748b;
  --text-dark: #0f172a;
  --shadow: 0 10px 40px rgba(6, 18, 32, 0.15);
  --shadow-lg: 0 20px 60px rgba(6, 18, 32, 0.25);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

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

/* ========== LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-brand-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
  animation: pulse 1.5s ease infinite;
}

.loader-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 0.25rem;
}

.loader-sub {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ========== NAVBAR ========== */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 18, 32, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white) !important;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 3px;
  flex-shrink: 0;
}

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

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.brand-text small {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark) !important;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
  color: var(--navy-dark) !important;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 18, 32, 0.92) 0%,
    rgba(10, 22, 40, 0.75) 50%,
    rgba(13, 33, 55, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 500;
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: var(--gold);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-label-light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--gray-500);
}

.section-desc {
  color: var(--gray-500);
  max-width: 600px;
}

/* ========== ABOUT ========== */
.about-section {
  background: var(--off-white);
}

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

.about-img-main {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  border: 4px solid var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-accent img {
  width: 100%;
  display: block;
}

.about-logo-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  z-index: 2;
}

.about-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.about-experience {
  position: absolute;
  top: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.mission-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.mission-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.mission-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-features li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.about-features i {
  color: var(--gold);
  margin-right: 0.5rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.92) 55%, rgba(255,255,255,0.98) 100%),
              var(--service-img) center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
  transition: var(--transition);
}

.service-card-img:hover::after {
  opacity: 0.5;
}

.service-card-img > * {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.service-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover {
  color: var(--navy);
  gap: 0.7rem;
}

/* ========== WHY US ========== */
.why-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
}

.why-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.why-card h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 0;
}

/* ========== INDUSTRIES ========== */
.industries-section {
  background: var(--off-white);
}

.industry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
}

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

.industry-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-dark);
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
}

.industry-card h5 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}

/* ========== GLOBAL ========== */
.global-section {
  background: var(--navy-dark);
  position: relative;
}

.global-feature-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-lg);
}

.world-map-wrap {
  position: relative;
}

.world-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.world-map svg {
  width: 100%;
  display: block;
}

.map-pulse {
  animation: mapPulse 2s ease infinite;
}

.map-ring {
  animation: mapRing 2s ease infinite;
}

@keyframes mapPulse {
  0%, 100% { r: 8; }
  50% { r: 10; }
}

@keyframes mapRing {
  0%, 100% { opacity: 0.5; r: 16; }
  50% { opacity: 0.2; r: 22; }
}

.map-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 18, 32, 0.9);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

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

.map-badge strong {
  color: var(--gold);
}

.global-activities {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.global-activity {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.global-activity i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.global-activity h6 {
  color: var(--white);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.global-activity p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* ========== PRODUCTS ========== */
.products-section {
  background: var(--white);
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

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

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,18,32,0.45), transparent);
  pointer-events: none;
}

.product-body {
  padding: 1.5rem;
}

.product-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.product-body p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.pricing-note i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ========== COUNTERS ========== */
.counters-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  padding: 80px 0;
}

.counter-item {
  position: relative;
}

.counter-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.counter-item h3 {
  display: inline;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
}

.counter-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.counter-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== TEAM ========== */
.team-section {
  background: var(--off-white);
  padding: 80px 0;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}

.team-card h5 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--off-white);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}

.contact-company-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 1rem;
  border: 2px solid var(--gold);
}

.contact-info-card h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item > i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.15rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--white);
}

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

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--gray-100);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ========== MODAL ========== */
.inquiry-modal {
  background: var(--navy-dark);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  color: var(--white);
}

.inquiry-modal .modal-header {
  border-bottom-color: rgba(255,255,255,0.1);
}

.inquiry-modal .modal-title {
  color: var(--gold);
  font-family: var(--font-heading);
}

.inquiry-modal .form-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.inquiry-modal .form-control,
.inquiry-modal .form-select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.inquiry-modal .form-control:focus,
.inquiry-modal .form-select:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.inquiry-modal .form-control::placeholder {
  color: rgba(255,255,255,0.3);
}

.inquiry-modal option {
  background: var(--navy-dark);
  color: var(--white);
}

/* ========== PREMIUM FOOTER ========== */
.footer-premium {
  background: #000000;
  padding: 0;
  margin: 0;
  border: none;
}

.footer-premium-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 100%;
  padding: 2.25rem 4rem;
  min-height: 100px;
}

.footer-premium-left {
  flex: 1;
  min-width: 0;
}

.footer-copyright {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.footer-gold {
  background: linear-gradient(135deg, #e8c84a 0%, #c9a227 45%, #a6851f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-designed {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.footer-designed a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-designed a:hover {
  color: var(--gold-light);
}

.footer-premium-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-exporters-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-exporters-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer-exporters-logo {
  height: clamp(48px, 6vw, 72px);
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

@media (max-width: 991.98px) {
  .footer-premium-inner {
    padding: 2rem 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .footer-premium-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.75rem 1.5rem;
    gap: 1.5rem;
    min-height: auto;
  }

  .footer-premium-right {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-exporters-logo {
    height: 52px;
    max-width: 220px;
  }
}

@media (max-width: 575.98px) {
  .footer-premium-inner {
    padding: 1.5rem 1.25rem;
  }

  .footer-copyright {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .footer-designed {
    font-size: 0.78rem;
  }
}

/* ========== FLOATING ELEMENTS ========== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 65px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.sticky-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.sticky-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy-mid);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9989;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ========== FORM SUCCESS ========== */
.form-success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid #25d366;
  color: #25d366;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(6, 18, 32, 0.98);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .about-img-accent {
    right: 0;
    width: 40%;
  }

  .about-experience {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 70px 0;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .about-img-accent {
    display: none;
  }

  .whatsapp-float {
    bottom: 90px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .sticky-contact {
    right: 16px;
    bottom: 16px;
    padding: 0.65rem 1rem;
  }

  .sticky-contact span {
    display: none;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .counter-item h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-cta .btn {
    width: 100%;
  }

  .pricing-note {
    flex-direction: column;
    border-radius: 12px;
    text-align: center;
    padding: 1rem;
  }
}
