/* ================================================================
   MaritimeXpert — main.css
   Thème WordPress Premium | Marine & Or
================================================================ */

/* ── GOOGLE FONTS (fallback inline) ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── VARIABLES ───────────────────────────────────────────────── */
:root {
  --navy-deepest: #040d1a;
  --navy-deep:    #071428;
  --navy-mid:     #0b1f3a;
  --navy-light:   #0f2a4e;
  --gold-bright:  #c8a84b;
  --gold-soft:    #d4b86a;
  --gold-dim:     #a88932;
  --gold-trace:   rgba(200,168,75,0.12);
  --white:        #ffffff;
  --offwhite:     #f4f1eb;
  --text-muted:   rgba(244,241,235,0.55);
  --text-sub:     rgba(244,241,235,0.75);
  --border:       rgba(200,168,75,0.2);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   all 0.4s cubic-bezier(0.16,1,0.3,1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--navy-deepest);
  color: var(--offwhite);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin: 0; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 40px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold-bright); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15; color: var(--offwhite); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-soft); }
.section-desc { font-size: 15px; font-weight: 300; color: var(--text-sub); max-width: 540px; line-height: 1.85; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-gold { background: var(--gold-bright); color: var(--navy-deepest); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,168,75,0.3); }
.btn-outline { background: transparent; color: var(--offwhite); border: 1px solid rgba(244,241,235,0.3); }
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-2px); }
.gold-line { width: 48px; height: 2px; background: var(--gold-bright); margin-bottom: 32px; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { 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; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(4,13,26,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 40px; height: 40px; border: 1.5px solid var(--gold-bright);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: var(--gold-bright); }
.nav-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 0.04em; color: var(--offwhite); }
.nav-logo-text span { color: var(--gold-bright); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-sub); transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold-bright); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.current-menu-item { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a.current-menu-item::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border: 1px solid var(--gold-bright); border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-bright); transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-bright); color: var(--navy-deepest); }
/* WP Nav Menu overrides */
#primary-menu { display: flex; align-items: center; gap: 36px; }
#primary-menu li { list-style: none; }
#primary-menu > li > a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-sub); transition: color 0.3s; position: relative;
}
#primary-menu > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold-bright); transition: width 0.3s;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a { color: var(--gold-bright); }
#primary-menu > li > a:hover::after,
#primary-menu > li.current-menu-item > a::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px; background: none; border: none;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--offwhite); transition: var(--transition); border-radius: 2px; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Mobile menu */
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(4,13,26,0.98); backdrop-filter: blur(16px);
  padding: 32px 24px; gap: 20px; border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 14px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-sub); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-bright); }
#mobile-menu { padding: 0; }
#mobile-menu li { list-style: none; }
#mobile-menu li a {
  display: block; font-size: 14px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-sub);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.3s;
}
#mobile-menu li a:hover { color: var(--gold-bright); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 80px; padding-bottom: 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(160deg, rgba(4,13,26,0.85) 0%, rgba(7,20,40,0.65) 50%, rgba(4,13,26,0.9) 100%),
    url('https://images.unsplash.com/photo-1509773896068-7fd71d79dfc0?w=1800&q=80');
  background-size: cover; background-position: center 40%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--navy-deepest) 0%, transparent 30%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; width: 1px; height: 1px;
  background: var(--gold-bright); border-radius: 50%; animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; } 90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 780px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border: 1px solid var(--border); border-radius: 100px; margin-bottom: 36px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-soft); background: var(--gold-trace);
  animation: fadeInDown 0.8s ease both; max-width: 100%; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright); flex-shrink: 0; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes fadeInDown { from { opacity:0; transform: translateY(-20px);} to { opacity:1; transform:none;} }
@keyframes fadeInUp   { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform:none;} }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 5.4rem);
  font-weight: 300; line-height: 1.05; color: var(--offwhite); margin-bottom: 28px;
  animation: fadeInUp 0.9s 0.2s ease both; word-break: break-word;
}
.hero-title em { font-style: italic; color: var(--gold-soft); }
.hero-sub {
  font-size: clamp(13px,1.6vw,17px); font-weight: 300; color: var(--text-sub);
  line-height: 1.85; max-width: 520px; margin-bottom: 48px;
  animation: fadeInUp 0.9s 0.35s ease both; word-break: break-word;
}
.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.9s 0.5s ease both; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity:0.4; } 50% { opacity:1; } }

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(11,31,58,0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border);
}
.hero-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 20px 16px; text-align: center; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold-bright); display: block; line-height: 1; }
.stat-label { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); line-height: 1.3; }

/* ── ABOUT ───────────────────────────────────────────────────── */
#about { padding: 120px 0; background: var(--navy-deepest); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main { height: 520px; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.about-image-main img { height: 100%; width: 100%; object-fit: cover; object-position: center; }
.about-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, transparent 50%, rgba(4,13,26,0.4));
}
.about-image-badge {
  position: absolute; bottom: 24px; right: 24px; width: 130px; height: 130px;
  background: var(--navy-deepest); border: 1.5px solid var(--gold-bright); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.about-image-badge .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--gold-bright); line-height: 1; }
.about-image-badge .txt { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-align: center; padding: 0 8px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.value-pill { padding: 14px 16px; background: var(--gold-trace); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; }
.value-pill-icon { font-size: 20px; margin-bottom: 6px; }
.value-pill-name { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); }

/* ── SERVICES ────────────────────────────────────────────────── */
#services { padding: 120px 0; background: var(--navy-deep); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 40px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition); cursor: default; position: relative;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, var(--gold-trace) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(200,168,75,0.4); }
.service-card:hover::before { opacity: 1; }
.service-card-img { height: 190px; overflow: hidden; position: relative; }
.service-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,31,58,0.9));
}
.service-card-body { padding: 28px; position: relative; z-index: 2; }
.service-card-num { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--gold-dim); margin-bottom: 12px; }
.service-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--offwhite); margin-bottom: 10px; line-height: 1.3; }
.service-card-desc { font-size: 13.5px; font-weight: 300; color: var(--text-sub); line-height: 1.75; }
.service-card-arrow {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright);
  opacity: 0; transform: translateX(-8px); transition: var(--transition);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ── DOMAINS ─────────────────────────────────────────────────── */
#domains { padding: 120px 0; background: var(--navy-deepest); }
.domains-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto;
  gap: 20px; margin-top: 60px;
}
.domain-card { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: default; transition: var(--transition); }
.domain-card:hover { transform: scale(1.01); }
.domain-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; height: 320px; }
.domain-card:nth-child(2) { grid-column: 3; grid-row: 1; height: 320px; }
.domain-card:nth-child(3) { grid-column: 1; grid-row: 2; height: 240px; }
.domain-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; height: 240px; }
.domain-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.domain-card:hover img { transform: scale(1.04); }
.domain-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,13,26,0.88) 0%, rgba(4,13,26,0.1) 60%); }
.domain-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.domain-card-tag {
  display: inline-block; padding: 4px 12px; background: var(--gold-trace); border: 1px solid var(--border);
  border-radius: 100px; font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 10px;
}
.domain-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--offwhite); }

/* ── PROCESS ─────────────────────────────────────────────────── */
#process { padding: 120px 0; background: var(--navy-mid); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin-top: 64px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; transition: var(--transition); }
.process-step:hover { transform: translateY(-6px); }
.process-step-num {
  width: 72px; height: 72px; border: 1px solid var(--gold-bright); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--gold-bright); background: var(--navy-deepest);
  position: relative; z-index: 2; margin-bottom: 24px; transition: var(--transition);
}
.process-step:hover .process-step-num { background: var(--gold-bright); color: var(--navy-deepest); }
.process-step-icon { font-size: 22px; margin-bottom: 16px; }
.process-step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--offwhite); margin-bottom: 10px; }
.process-step-desc { font-size: 12.5px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* ── VALUES ──────────────────────────────────────────────────── */
#values { padding: 120px 0; background: var(--navy-deepest); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.value-card {
  padding: 40px 28px; background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-md); transition: var(--transition); position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-bright); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(200,168,75,0.35); }
.value-card:hover::after { transform: scaleX(1); }
.value-icon {
  width: 52px; height: 52px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: 24px; background: var(--gold-trace);
}
.value-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--offwhite); margin-bottom: 12px; }
.value-desc { font-size: 13.5px; font-weight: 300; color: var(--text-sub); line-height: 1.8; }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact { padding: 120px 0; background: var(--navy-deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info-items { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px;
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition);
}
.contact-item:hover { border-color: rgba(200,168,75,0.4); transform: translateX(4px); }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold-trace);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-item-label { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 4px; }
.contact-item-value { font-size: 14px; font-weight: 400; color: var(--offwhite); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-textarea, .form-select {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; font-family: var(--font-body); font-size: 14px; font-weight: 300;
  color: var(--offwhite); outline: none; transition: border-color 0.3s; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold-bright); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--navy-mid); color: var(--offwhite); }
.form-note { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.form-success {
  display: none; padding: 16px 24px; background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3); border-radius: var(--radius-sm);
  font-size: 14px; color: #6ee7a0;
}
.form-error {
  display: none; padding: 16px 24px; background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3); border-radius: var(--radius-sm);
  font-size: 14px; color: #fca5a5;
}

/* ── PAGE HERO (pages internes) ──────────────────────────────── */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: linear-gradient(160deg, rgba(4,13,26,0.95) 0%, rgba(7,20,40,0.9) 100%),
              url('https://images.unsplash.com/photo-1509773896068-7fd71d79dfc0?w=1200&q=80') center/cover;
  border-bottom: 1px solid var(--border);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-breadcrumb { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.page-breadcrumb a { color: var(--gold-dim); }
.page-breadcrumb a:hover { color: var(--gold-bright); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,4rem); font-weight: 300; line-height: 1.1; color: var(--offwhite); }
.page-hero-title em { font-style: italic; color: var(--gold-soft); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer, #colophon {
  background: var(--navy-deepest); border-top: 1px solid var(--border); padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 13.5px; font-weight: 300; color: var(--text-muted); line-height: 1.85; margin: 20px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  color: var(--text-muted); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; padding: 0; }
.footer-col ul li { list-style: none; }
.footer-col ul a { font-size: 13.5px; font-weight: 300; color: var(--text-muted); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold-soft); }
.footer-menu ul { display: flex; flex-direction: column; gap: 12px; padding: 0; }
.footer-menu ul li { list-style: none; }
.footer-menu ul a { font-size: 13.5px; font-weight: 300; color: var(--text-muted); transition: color 0.3s; }
.footer-menu ul a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left { font-size: 12.5px; color: var(--text-muted); }
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a { font-size: 12px; color: var(--text-muted); transition: color 0.3s; }
.footer-bottom-right a:hover { color: var(--gold-soft); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 999; display: flex; align-items: center; cursor: pointer; }
.whatsapp-btn {
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4); transition: var(--transition); position: relative;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 26px; height: 26px; fill: white; }
.whatsapp-pulse {
  position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366;
  opacity: 0.5; animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(0.9); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }
.whatsapp-tooltip {
  position: absolute; right: 68px; background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 14px; font-size: 12px; font-weight: 500;
  white-space: nowrap; color: var(--offwhite); opacity: 0; transform: translateX(8px);
  transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── INNER PAGE CONTENT ──────────────────────────────────────── */
.inner-content { padding: 80px 0; background: var(--navy-deepest); }
.inner-content p { color: var(--text-sub); font-size: 15px; line-height: 1.85; margin-bottom: 20px; }
.inner-content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--offwhite); margin-bottom: 20px; }
.inner-content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--gold-soft); margin-bottom: 16px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .nav-links, .nav-cta, #primary-menu { display: none; }
  .nav-hamburger { display: flex; }
  #navbar { padding: 14px 0; background: rgba(4,13,26,0.97); backdrop-filter: blur(16px); }
  #hero { padding-top: 90px; padding-bottom: 130px; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-main { height: 280px; }
  .about-values { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .domains-grid { display: flex; flex-direction: column; gap: 14px; }
  .domain-card { height: 200px !important; grid-column: auto !important; grid-row: auto !important; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 12px; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  #hero { padding-top: 100px; padding-bottom: 140px; }
  .hero-badge { font-size: 9px; letter-spacing: 0.06em; padding: 6px 12px; white-space: normal; text-align: center; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .stat-item { padding: 14px 8px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 9px; letter-spacing: 0.06em; }
  .about-values { grid-template-columns: 1fr; gap: 10px; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom-right { flex-direction: column; gap: 8px; align-items: center; }
  .whatsapp-float { bottom: 20px; right: 16px; }
}
