/*
 * CK Global Exports & Imports - Premium Design System
 * Inspired by Aman Resorts, Rolex, and Apple
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  /* Premium Earth & Luxury Color Palette */
  --color-light-blue: #4A7A96;
  --color-burnished-bronze: #C9963A;
  --color-gold-light: #E8B86D;
  --color-warm-sand: #EAE2D6;
  --color-ivory-white: #FAF8F5;
  --color-charcoal: #1E1E1E;
  --color-accent-olive: #6E7F53;
  --color-deep-navy: #0D1B2A;
  --color-white: #ffffff;
  --color-shadow-light: rgba(0, 0, 0, 0.04);
  --color-shadow-medium: rgba(18, 53, 36, 0.08);
  --color-shadow-premium: rgba(201, 150, 58, 0.18);
  --color-shadow-gold: rgba(201, 150, 58, 0.35);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-editorial: 'Cinzel', 'Playfair Display', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Layout */
  --container-width: 1400px;
  --transition-smooth: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.28s ease;

  /* Premium Gradients */
  --gradient-gold: linear-gradient(135deg, #C9963A 0%, #E8B86D 50%, #C9963A 100%);
  --gradient-dark: linear-gradient(135deg, #0D1B2A 0%, #1a2e42 100%);
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-ivory-white);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Premium gold shimmer for section tags */
@keyframes gold-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Typography Selection */
::selection {
  background-color: var(--color-warm-sand);
  color: var(--color-light-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-light-blue);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-family: var(--font-editorial);
  letter-spacing: 0.05em;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-family: var(--font-editorial);
}

p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4A4A4A;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-ivory-white);
}

::-webkit-scrollbar-thumb {
  background: var(--color-light-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-burnished-bronze);
}

/* Structure & Grid */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
}

.section-title-wrap {
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
}

.section-description {
  margin-top: var(--spacing-sm);
  font-size: 1.15rem;
}

/* Button & Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-light-blue);
  color: var(--color-ivory-white);
  border: 1px solid var(--color-light-blue);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-burnished-bronze);
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-primary span {
  position: relative;
  z-index: 2;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-light-blue);
  border: 1px solid var(--color-light-blue);
}

.btn-secondary:hover {
  background-color: var(--color-light-blue);
  color: var(--color-ivory-white);
  box-shadow: 0 4px 20px var(--color-shadow-medium);
}

.link-editorial {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-burnished-bronze);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.link-editorial::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.link-editorial:hover::after {
  transform: translateX(6px);
}

.link-editorial:hover {
  border-bottom-color: var(--color-burnished-bronze);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 150, 58, 0.15);
}

.header.scrolled .nav-link {
  color: var(--color-charcoal);
  text-shadow: none;
}

.header.scrolled .nav-link:hover {
  color: var(--color-burnished-bronze);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

/* Logo container for cross-fading and scaling in the header */
.logo-container {
  position: relative;
  height: 160px;
  aspect-ratio: 2.5 / 1;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-container {
  height: 100px;
  /* Slightly compact when header shrinks on scroll */
}

.header .logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header .logo-img.logo-white {
  opacity: 1;
}

.header .logo-img.logo-color {
  opacity: 0;
}

/* Toggle visibility cleanly on scroll using opacity */
.header.scrolled .logo-img.logo-white {
  opacity: 0;
}

.header.scrolled .logo-img.logo-color {
  opacity: 1;
}

.logo-text {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--color-light-blue);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-burnished-bronze);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-gold-light);
}

.nav-cta {
  font-size: 0.75rem;
  padding: 0.7rem 1.4rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-light-blue);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 53, 36, 0.45) 0%, rgba(18, 53, 36, 0.7) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  color: var(--color-ivory-white);
  max-width: 850px;
  padding: 0 var(--spacing-md);
  margin-top: 5rem;
}

.hero-container h1 {
  color: var(--color-ivory-white);
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-container p {
  color: var(--color-warm-sand);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 680px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-buttons .btn-primary {
  border-color: var(--color-burnished-bronze);
}

.hero-buttons .btn-secondary {
  border-color: var(--color-ivory-white);
  color: var(--color-ivory-white);
}

.hero-buttons .btn-secondary:hover {
  background-color: var(--color-ivory-white);
  color: var(--color-light-blue);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-ivory-white);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background-color: rgba(250, 248, 245, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--color-burnished-bronze);
  animation: scroll-anim 2s infinite ease-in-out;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* Sourced Origins Overview */
.origins {
  background-color: var(--color-white);
}

.origins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: var(--spacing-lg);
}

.origin-card {
  padding: 2.8rem 2.2rem;
  border: 1px solid rgba(201, 150, 58, 0.15);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--color-deep-navy);
  /* Fallback */
}

/* Base style for card background elements */
.origin-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.origin-card:hover .card-bg {
  transform: scale(1.08);
}

/* Premium gradient overlay to ensure text contrast */
.origin-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.55) 0%, rgba(13, 27, 42, 0.88) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.origin-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.45) 0%, rgba(13, 27, 42, 0.82) 100%);
}

.origin-card>* {
  position: relative;
  z-index: 2;
}

.origin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
  z-index: 3;
}

.origin-card::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 160px;
  height: 160px;
  background-image: url('assets/logo_header.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.025;
  filter: blur(4px);
  pointer-events: none;
  z-index: 1;
  transform: rotate(-12deg) scale(1);
  transition: var(--transition-smooth);
}

.origin-card:hover::after {
  opacity: 0.06;
  filter: blur(2px);
  transform: rotate(-8deg) scale(1.08);
}

.origin-card:hover::before {
  transform: scaleX(1);
}

/* Specific Watermarks for Origin Card Categories */
#origin-spices::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50,90 C50,90 50,40 20,20 M50,70 C50,70 65,55 80,45 M50,50 C50,50 30,35 15,30 M50,30 C50,30 70,20 85,15'/%3E%3Cpath d='M20,20 C15,25 10,40 20,45 C30,50 35,35 20,20 Z'/%3E%3Cpath d='M80,45 C75,50 70,65 80,70 C90,75 95,60 80,45 Z'/%3E%3Cpath d='M15,30 C10,35 5,50 15,55 C25,60 30,45 15,30 Z'/%3E%3Cpath d='M85,15 C80,20 75,35 85,40 C95,45 100,30 85,15 Z'/%3E%3Cpath d='M50,15 C45,20 40,35 50,40 C60,45 65,30 50,15 Z'/%3E%3C/svg%3E");
}

#origin-coffee::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23C9963A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 42C9 33 11 20 22 12s26-4 30 7-3 23-14 31-33 2-38-8z'/%3E%3Cpath d='M16 40c8-6 16-4 22 2s8 8 14 2'/%3E%3C/svg%3E");
}

#origin-oils::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50,15 C50,15 80,45 80,65 C80,80 65,90 50,90 C35,90 20,80 20,65 C20,45 50,15 50,15 Z'/%3E%3Cpath d='M50,35 C50,35 65,55 65,65 C65,72 58,78 50,78 C42,78 35,72 35,65 C35,55 50,35 50,35 Z'/%3E%3C/svg%3E");
}

#origin-granite::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50,20 L80,35 L80,65 L50,80 L20,65 L20,35 Z'/%3E%3Cpath d='M50,20 L50,80'/%3E%3Cpath d='M20,35 L50,50 L80,35'/%3E%3Cpath d='M20,65 L50,50 L80,65'/%3E%3C/svg%3E");
}

#origin-meat::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50,15 L80,25 C80,55 50,85 50,85 C50,85 20,55 20,25 Z'/%3E%3Cpath d='M35,45 L45,55 L65,35'/%3E%3C/svg%3E");
}

#origin-pulses::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15,80 C30,80 50,60 85,20'/%3E%3Cpath d='M15,80 C40,75 70,50 85,20 C60,25 30,50 15,80 Z'/%3E%3Ccircle cx='35' cy='58' r='6'/%3E%3Ccircle cx='50' cy='46' r='6'/%3E%3Ccircle cx='65' cy='34' r='6'/%3E%3C/svg%3E");
}

#origin-flour::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50,90 L50,15'/%3E%3Cpath d='M50,70 C40,65 35,55 50,50 C40,45 35,35 50,30 C40,25 35,15 50,10'/%3E%3Cpath d='M50,70 C60,65 65,55 50,50 C60,45 65,35 50,30 C60,25 65,15 50,10'/%3E%3Cpath d='M38,52 L20,40'/%3E%3Cpath d='M38,32 L20,20'/%3E%3Cpath d='M38,12 L25,0'/%3E%3Cpath d='M62,52 L80,40'/%3E%3Cpath d='M62,32 L80,20'/%3E%3Cpath d='M62,12 L75,0'/%3E%3C/svg%3E");
}

#origin-rice::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20,90 Q40,60 50,30 Q55,15 75,10'/%3E%3Cpath d='M75,10 C78,12 82,20 75,25 C70,30 65,22 75,10'/%3E%3Cpath d='M65,13 C68,16 72,25 65,30 C60,35 55,27 65,13'/%3E%3Cpath d='M55,18 C58,22 62,31 55,36 C50,41 45,33 55,18'/%3E%3Cpath d='M48,25 C50,30 53,38 47,42 C42,46 38,39 48,25'/%3E%3C/svg%3E");
}

#origin-dairy::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9963A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M35,20 L65,20 L60,35 L75,45 C80,50 80,75 70,85 C60,90 40,90 30,85 C20,75 20,50 25,45 L35,35 Z'/%3E%3Cpath d='M25,45 C20,45 15,35 25,30 L35,35'/%3E%3Cpath d='M50,55 C50,55 60,65 60,70 C60,75 55,80 50,80 C45,80 40,75 40,70 C40,65 50,55 50,55 Z'/%3E%3C/svg%3E");
}

.origin-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 55px rgba(201, 150, 58, 0.18), 0 10px 25px rgba(0, 0, 0, 0.25);
  border-color: rgba(201, 150, 58, 0.45);
}

.origin-icon {
  font-size: 2.2rem;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.origin-card:hover .origin-icon {
  transform: scale(1.1) rotate(5deg);
  text-shadow: 0 0 12px rgba(232, 184, 109, 0.5);
}

.origin-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--color-gold-light);
  font-family: var(--font-editorial);
  transition: var(--transition-fast);
}

.origin-card:hover h3 {
  color: var(--color-white);
  text-shadow: 0 0 10px rgba(232, 184, 109, 0.45);
}

.origin-card p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  color: rgba(250, 248, 245, 0.82);
  line-height: 1.7;
}

.origin-items-list {
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-warm-sand);
  border-top: 1px solid rgba(201, 150, 58, 0.20);
  padding-top: 1.5rem;
  transition: var(--transition-smooth);
}

.origin-card:hover .origin-items-list {
  border-top-color: rgba(201, 150, 58, 0.45);
  color: var(--color-ivory-white);
}

.origin-items-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
  transition: transform var(--transition-fast);
}

.origin-items-list li::before {
  content: '•';
  color: var(--color-burnished-bronze);
  position: absolute;
  left: 0.2rem;
  transition: var(--transition-fast);
}

.origin-card:hover .origin-items-list li:hover {
  transform: translateX(4px);
  color: var(--color-gold-light);
}

/* Sourcing Network (Interactive Map) */
.network {
  background-color: var(--color-ivory-white);
  border-top: 1px solid rgba(92, 140, 168, 0.15);
  border-bottom: 1px solid rgba(92, 140, 168, 0.15);
  overflow: hidden;
}

.network h2 {
  color: var(--color-light-blue);
}

.network-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.network-info {
  padding-right: var(--spacing-md);
}

.network-map-container {
  position: relative;
  width: 100%;
  height: 620px;
  background-color: var(--color-white);
  border: 1px solid rgba(184, 135, 70, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 4px;
}

.india-svg-map {
  width: 100%;
  height: 100%;
  max-height: 580px;
}

/* Sourcing Nodes styling in SVG */
.map-node {
  cursor: pointer;
  outline: none;
}

.map-node circle.glow {
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
  transform-origin: center;
}

.map-node circle.core {
  fill: var(--color-burnished-bronze);
  transition: var(--transition-fast);
}

.map-node:hover circle.core,
.map-node.active circle.core {
  fill: var(--color-light-blue);
  r: 8px;
}

.map-node.port circle.core {
  fill: var(--color-light-blue);
}

.map-node.port:hover circle.core,
.map-node.port.active circle.core {
  fill: var(--color-burnished-bronze);
}

@keyframes pulse-ring {
  0% {
    r: 4px;
    opacity: 0.8;
  }

  80%,
  100% {
    r: 20px;
    opacity: 0;
  }
}

/* SVG routes */
.map-route {
  stroke: var(--color-burnished-bronze);
  stroke-width: 1.5;
  stroke-dasharray: 6, 6;
  stroke-dashoffset: 100;
  opacity: 0.15;
  transition: opacity 0.5s ease, stroke-dashoffset 0.5s ease;
}

.map-route.active {
  opacity: 0.8;
  stroke-width: 2;
  stroke: var(--color-light-blue);
  animation: dash 12s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* Map tooltip overlay card */
.map-tooltip {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 380px;
  background-color: rgba(28, 53, 68, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-burnished-bronze);
  padding: 1rem 1.25rem;
  color: var(--color-ivory-white);
  z-index: 10;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.map-tooltip.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tooltip-title {
  font-family: var(--font-editorial);
  font-size: 1.1rem;
  color: var(--color-burnished-bronze);
  margin-bottom: 0.25rem;
}

.tooltip-origin {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-warm-sand);
  margin-bottom: 0.5rem;
}

.tooltip-desc {
  font-size: 0.8rem;
  color: var(--color-ivory-white);
  opacity: 0.9;
  line-height: 1.5;
}

/* Sourcing Map Step flow (horizontal) */
.map-flow-container {
  margin-top: 3rem;
  width: 100%;
}

.map-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.map-flow-steps::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 10%;
  width: 80%;
  height: 1px;
  background-color: var(--color-warm-sand);
  z-index: 1;
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.flow-step-num {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-warm-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-editorial);
  color: var(--color-light-blue);
  margin: 0 auto 1rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.flow-step.active .flow-step-num {
  background-color: var(--color-light-blue);
  color: var(--color-ivory-white);
  border-color: var(--color-light-blue);
  box-shadow: 0 0 20px var(--color-shadow-medium);
}

.flow-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-light-blue);
}

.flow-step p {
  font-size: 0.8rem;
}

/* Quality Journey Timeline */
.journey {
  background-color: var(--color-white);
}

.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--color-warm-sand);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-burnished-bronze);
  transition: height 0.1s linear;
}

.timeline-item {
  display: flex;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 4px solid var(--color-light-blue);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  z-index: 3;
  transition: var(--transition-smooth);
}

.timeline-item.active .timeline-dot {
  border-color: var(--color-burnished-bronze);
  background-color: var(--color-light-blue);
  box-shadow: 0 0 0 6px var(--color-shadow-premium);
}

.timeline-content {
  width: 44%;
  padding: 0 1rem;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  margin-left: auto;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-light-blue);
}

.timeline-content p {
  font-size: 0.9rem;
}

/* Visual Process Bar */
.process-image-bar {
  width: 100%;
  height: 350px;
  overflow: hidden;
  padding: 0;        /* override default section padding */
  margin: 0;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-wrapper:hover img {
  transform: scale(1.08);
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1rem 1.5rem;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.85) 0%, transparent 100%);
  color: var(--color-ivory-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  pointer-events: none;
}


/* Signature Export Collections (Magazine Editorial Layouts) */
.collections {
  background-color: var(--color-ivory-white);
}

.editorial-layout {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: var(--spacing-lg);
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.editorial-row:nth-child(even) {
  direction: rtl;
}

.editorial-row:nth-child(even) .editorial-info,
.editorial-row:nth-child(even) .editorial-specs {
  direction: ltr;
}

.editorial-media {
  position: relative;
  height: 550px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.editorial-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.editorial-media:hover .editorial-img-main {
  transform: scale(1.06);
}

.editorial-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background-color: var(--color-light-blue);
  color: var(--color-warm-sand);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.2rem;
  z-index: 2;
}

.editorial-info {
  padding: 0 var(--spacing-md);
}

.editorial-info h3 {
  font-size: 2.2rem;
  color: var(--color-light-blue);
  margin-bottom: 1.5rem;
  position: relative;
}

.editorial-info p {
  margin-bottom: 2rem;
}

.editorial-specs {
  background-color: var(--color-white);
  border: 1px solid rgba(184, 135, 70, 0.12);
  padding: 2rem;
  margin-bottom: 2rem;
}

.specs-title {
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-burnished-bronze);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-warm-sand);
  padding-bottom: 0.5rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.75rem;
  color: #7A7A7A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-light-blue);
}

/* Why Buyers Choose CK Global */
.why-us {
  background-color: var(--color-white);
  border-top: 1px solid rgba(18, 53, 36, 0.05);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.why-card {
  padding: 2.5rem;
  background-color: var(--color-ivory-white);
  border: 1px solid rgba(18, 53, 36, 0.03);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card>* {
  position: relative;
  z-index: 2;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 150px;
  height: 100px;
  background-image: url('assets/logo_header.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.02;
  filter: blur(4px);
  pointer-events: none;
  z-index: 1;
  transform: rotate(-12deg) scale(1);
  transition: var(--transition-smooth);
}

.why-card:hover::after {
  opacity: 0.05;
  filter: blur(2px);
  transform: rotate(-8deg) scale(1.08);
}

.why-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-burnished-bronze);
  box-shadow: 0 20px 40px var(--color-shadow-medium);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-light-blue);
}

.why-card p {
  font-size: 0.85rem;
}

/* Lead Consultation Form */
.consultation {
  background-color: var(--color-light-blue);
  color: var(--color-ivory-white);
  position: relative;
  overflow: hidden;
}

.consultation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(184, 135, 70, 0.12) 0%, transparent 60%);
  z-index: 1;
}

.consultation-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.consultation h2 {
  color: var(--color-ivory-white);
  margin-bottom: 1.5rem;
}

.consultation-info p {
  color: var(--color-warm-sand);
  margin-bottom: 2.5rem;
}

/* Consultation freight image */
.consultation-image-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 150, 58, 0.2);
}

.consultation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.consultation-image-wrap:hover .consultation-img {
  transform: scale(1.06);
}

.consultation-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.consultation-img-overlay span {
  font-family: var(--font-editorial);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  font-weight: 600;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.channel-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(250, 248, 245, 0.05);
  border: 1px solid rgba(250, 248, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-burnished-bronze);
}

.channel-details h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-warm-sand);
  letter-spacing: 0.1em;
}

.channel-details p {
  font-size: 0.95rem;
  color: var(--color-ivory-white);
  margin: 0;
}

/* Luxury Multi-step Form styling */
.form-box {
  background-color: var(--color-deep-navy);
  padding: 3.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  border: 1px solid rgba(201, 150, 58, 0.3);
  position: relative;
}

.form-header-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.step-indicator {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 1.1rem;
  top: 1px;
}

.step-indicator.active {
  color: var(--color-gold-light);
}

.step-indicator.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-burnished-bronze);
}

.form-step-content {
  display: none;
}

.form-step-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-white);
  transition: var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input option {
  background-color: var(--color-deep-navy);
  color: var(--color-white);
}

.form-input:focus {
  border-color: var(--color-burnished-bronze);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(201, 150, 58, 0.15);
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-fast);
}

.checkbox-label input {
  accent-color: var(--color-burnished-bronze);
}

.checkbox-label:hover,
.checkbox-label.checked {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-burnished-bronze);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.form-navigation .btn {
  padding: 0.8rem 1.8rem;
  font-size: 0.8rem;
}

/* Success Message layout */
.form-success-message {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--color-burnished-bronze);
  margin-bottom: 1.5rem;
}

.form-success-message h3 {
  margin-bottom: 1rem;
  color: var(--color-gold-light);
}

.form-success-message p {
  max-width: 450px;
  margin: 0 auto;
  color: var(--color-ivory-white);
}

/* WhatsApp Contact Bar */
.whatsapp-contact-bar {
  background: var(--color-white);
  padding: 0.9rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(184, 135, 70, 0.15);
}

.whatsapp-contact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 150, 58, 0.05) 50%, transparent 100%);
  animation: shimmer-bar 3s ease-in-out infinite;
}

@keyframes shimmer-bar {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

.whatsapp-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wa-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-deep-navy);
}

.wa-bar-icon {
  font-size: 1.3rem;
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

.wa-bar-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-charcoal);
}

.wa-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.wa-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-deep-navy);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: rgba(184, 135, 70, 0.05);
  border: 1px solid rgba(184, 135, 70, 0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
}

.wa-bar-link:hover {
  background: rgba(184, 135, 70, 0.15);
  border-color: rgba(184, 135, 70, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: var(--color-burnished-bronze);
}

.wa-bar-divider {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

/* WhatsApp links in consultation section */
.whatsapp-link {
  color: #25D366 !important;
  font-weight: 600;
  transition: var(--transition-fast);
  text-decoration: none;
  border-bottom: 1px dashed rgba(37, 211, 102, 0.4);
}

.whatsapp-link:hover {
  color: #1ebe5d !important;
  border-bottom-color: #1ebe5d;
}

/* Footer WhatsApp Button */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-top: 1rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.footer-wa-btn:hover {
  background: linear-gradient(135deg, #1ebe5d, #075E54);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

/* Footer Section — Compact */
.footer {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: 4.5rem 0 2rem;
  border-top: 2px solid var(--color-burnished-bronze);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.4);
}

.footer-brand .logo-img {
  height: auto;
  width: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(201, 150, 58, 0.25));
}


/* Footer watermark styling */
.footer-watermark {
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 500px;
  opacity: 0.03;
  /* Soft, subtle luxury-brand watermark opacity */
  pointer-events: none;
  z-index: 0;
  transform: rotate(-8deg);
  /* Luxury aesthetic slant */
  transition: var(--transition-smooth);
}

.footer-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.footer:hover .footer-watermark {
  opacity: 0.05;
  transform: rotate(-5deg) scale(1.03);
  /* Playful luxury micro-interaction */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--color-white);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 250px;
  line-height: 1.6;
  opacity: 1;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.footer-contact-bar {
  background-color: transparent;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.footer-contact-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-bar-logo-wrap {
  display: flex;
  align-items: center;
}

.contact-bar-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.contact-bar-info {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-gold-light);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.contact-bar-item:hover .contact-bar-icon {
  background-color: var(--color-gold-light);
  color: var(--color-deep-navy);
}

.contact-bar-text {
  display: flex;
  flex-direction: column;
}

.contact-bar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 0.05rem;
}

.contact-bar-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.contact-bar-link:hover {
  color: var(--color-gold-light);
}

.contact-bar-divider {
  margin: 0 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-title {
  font-family: var(--font-editorial);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201, 150, 58, 0.15);
  padding-bottom: 0.6rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-white);
  transition: var(--transition-fast);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.footer-links a:hover {
  color: var(--color-gold-light);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.footer-contact a {
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-gold-light) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 150, 58, 0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-white);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.footer-bottom a {
  color: var(--color-white);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-gold-light);
}

/* Animations Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  :root {
    --spacing-xl: 6rem;
  }

  .origins-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1400px) {
  .origins-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .origins-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-wrapper,
  .editorial-row,
  .consultation-wrapper,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-contact-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .contact-bar-info {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .contact-bar-item {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
  }

  .contact-bar-text {
    align-items: center;
  }

  .whatsapp-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .network-map-container {
    height: 480px;
  }

  .editorial-media {
    height: 400px;
  }

  .editorial-row:nth-child(even) {
    direction: ltr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-bar {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .map-flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .map-flow-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {

  .origins-grid,
  .why-grid,
  .stats-grid,
  .map-flow-steps {
    grid-template-columns: 1fr;
  }

  .wa-bar-contacts {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .form-box {
    padding: 2rem 1.5rem;
  }

  .form-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .editorial-specs {
    padding: 1.5rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }
}