/* ============================================================
   Overseas Trading Corporate — Premium Style System
   Domain: overseastrading.in
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Light theme */
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-2: #334155;
  --text-muted: #64748b;
  --primary: #0d4c92;
  --primary-dark: #0a3a72;
  --primary-light: #1e6fd9;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --navbar-bg: rgba(255, 255, 255, 0.92);
  --footer-bg: #f8fafc;

  /* Theme dependent layouts */
  --hero-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --hero-text: #0f172a;
  --hero-desc-color: #334155;
  --page-hero-bg: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  --page-hero-text: #0f172a;
  --cta-bg: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  --cta-text: #0f172a;
  --cta-desc: #334155;
  --cta-badge: rgba(13, 76, 146, 0.08);
  --cta-badge-text: #0d4c92;
  --cta-border: #e2e8f0;
  --cta-btn-bg: rgba(13, 76, 146, 0.08);
  --cta-btn-color: #0d4c92;
  --cta-btn-border: rgba(13, 76, 146, 0.15);

  /* Footer Theme Mappings */
  --footer-title: #0f172a;
  --footer-text: #475569;
  --footer-text-hover: #0d4c92;
  --footer-border: #e2e8f0;
  --footer-social-bg: #ffffff;
  --footer-social-border: #cbd5e1;
}

[data-theme="dark"] {
  --bg: #020617;
  /* High-contrast midnight black background */
  --bg-2: #0b0f19;
  /* Midnight dark blue */
  --surface: #0f172a;
  /* Slate navy surfaces */
  --surface-2: #1e293b;
  /* Accent slate */
  --border: #1e293b;
  --text: #ffffff;
  /* Crisp pure white text */
  --text-2: #e2e8f0;
  /* Crisp light gray */
  --text-muted: #94a3b8;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --accent: #fbbf24;
  --navbar-bg: rgba(2, 6, 23, 0.95);
  --footer-bg: #0b0f19;

  /* Theme dependent layouts */
  --hero-bg: linear-gradient(135deg, #020617 0%, #0b1528 50%, #020617 100%);
  --hero-text: #ffffff;
  --hero-desc-color: #94a3b8;
  --page-hero-bg: linear-gradient(135deg, #020617 0%, #0f223f 100%);
  --page-hero-text: #ffffff;
  --cta-bg: linear-gradient(135deg, #071225 0%, #0d2d5e 100%);
  --cta-text: #ffffff;
  --cta-desc: #94a3b8;
  --cta-badge: rgba(255, 255, 255, 0.1);
  --cta-badge-text: #ffffff;
  --cta-border: rgba(255, 255, 255, 0.05);
  --cta-btn-bg: rgba(255, 255, 255, 0.1);
  --cta-btn-color: #ffffff;
  --cta-btn-border: rgba(255, 255, 255, 0.2);

  /* Footer Theme Mappings */
  --footer-title: #ffffff;
  --footer-text: #94a3b8;
  --footer-text-hover: #ffffff;
  --footer-border: rgba(255, 255, 255, 0.06);
  --footer-social-bg: rgba(255, 255, 255, 0.06);
  --footer-social-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ── Typography ────────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

p {
  color: var(--text-2);
}

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

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

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

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

.text-muted {
  color: var(--text-muted);
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-4 {
  margin-top: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(13, 76, 146, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

[data-theme="dark"] .section-label {
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary-light);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 76, 146, 0.35);
}

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

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

.btn-accent {
  background: var(--accent);
  color: #000;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-hero-secondary {
  background: var(--cta-btn-bg);
  color: var(--cta-btn-color);
  border: 1px solid var(--cta-btn-border);
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}


/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

/* Marquee Bar at the very top */
.navbar-marquee {
  background: var(--primary);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .navbar-marquee {
  background: #0f172a;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.marquee-track span i {
  color: var(--accent);
}

@keyframes marqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.navbar-top {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 8px 0;
  max-height: 40px;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

[data-theme="dark"] .navbar-top {
  background: #0b0f19;
}

.navbar.scrolled .navbar-top {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

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

.top-info-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.top-info-item:hover {
  color: var(--primary);
}

[data-theme="dark"] .top-info-item:hover {
  color: var(--accent);
}

.top-separator {
  color: var(--border);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: rgba(13, 76, 146, 0.08);
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
  font-size: 1rem;
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071225 0%, #0d2d5e 50%, #0f1a3a 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 100px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .accent {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.container-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
}

.container-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.container-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.container-icon.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.container-icon.amber {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.container-icon.green {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.container-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.container-card-sub {
  font-size: 0.78rem;
  color: #94a3b8;
}

.container-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.spec-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.availability-bar {
  margin-top: 14px;
}

.avail-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.avail-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.avail-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease;
}

.avail-fill.green {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.avail-fill.blue {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.avail-fill.amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-icon.primary {
  background: rgba(13, 76, 146, 0.1);
  color: var(--primary);
}

.card-icon.accent {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.card-icon.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

[data-theme="dark"] .card-icon.primary {
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary);
}

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

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

/* ── Stats / KPI Row ────────────────────────────────────────── */
.stats-row {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-item .stat-num .plus {
  font-size: 2rem;
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.why-feature:last-child {
  margin-bottom: 0;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 76, 146, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 4px;
}

[data-theme="dark"] .why-feature-icon {
  background: rgba(59, 130, 246, 0.12);
}

.why-feature-title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1rem;
}

.why-feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Contact Form ───────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 76, 146, 0.1);
}

[data-theme="dark"] .form-control:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Google Map Embed ───────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  display: block;
  border: none;
}

/* ── Partners / Logos ───────────────────────────────────────── */
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.partner-logo-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* ── Reusable CTA Section ───────────────────────────────────── */
.cta-section {
  background: var(--cta-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--cta-border);
  border-bottom: 1px solid var(--cta-border);
  transition: background 0.3s, border 0.3s;
}

.cta-section .section-label {
  color: var(--accent-dark);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  margin-bottom: 16px;
  display: inline-flex;
}

[data-theme="dark"] .cta-section .section-label {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.cta-title {
  color: var(--cta-text);
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  font-weight: 700;
  transition: color 0.3s;
}

.cta-desc {
  color: var(--cta-desc);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.75;
  transition: color 0.3s;
}

.cta-btn-secondary {
  background: var(--cta-btn-bg);
  color: var(--cta-btn-color);
  border: 1px solid var(--cta-btn-border);
  transition: all 0.3s;
}

.cta-btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 0 0;
  border-top: 1px solid var(--footer-border);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 12px;
}

.footer-brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--footer-title);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--footer-text);
  transition: color 0.3s;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--footer-social-bg);
  border: 1px solid var(--footer-social-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-col-title {
  font-weight: 700;
  color: var(--footer-title);
  margin-bottom: 18px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--footer-text-hover);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--footer-text);
}

.footer-contact-item i {
  margin-top: 2px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

[data-theme="dark"] .footer-contact-item i {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  transition: border-color 0.3s;
}

/* ── Pop-up Modal ───────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.popup-overlay.show .popup-box {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--surface-2);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.popup-close:hover {
  background: var(--danger);
  color: #fff;
}

.popup-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(13, 76, 146, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

[data-theme="dark"] .popup-icon {
  background: rgba(59, 130, 246, 0.12);
}

.popup-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.popup-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--success);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  z-index: 9998;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s;
}

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

.toast.error {
  background: var(--danger);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.page-hero {
  background: var(--page-hero-bg);
  padding: 164px 0 64px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

[data-theme="dark"] .page-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

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

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span {
  opacity: 0.5;
}

.page-hero h1 {
  color: var(--page-hero-text);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: color 0.3s;
}

/* ── Alert ──────────────────────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── Scroll to top button ───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(13, 76, 146, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── Skeleton Animation ─────────────────────────────────────── */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-us-grid {
    gap: 28px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-form {
    grid-template-columns: 1fr;
  }

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

  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .footer-bottom span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom span:last-child {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .popup-box {
    padding: 28px 22px;
  }

  .partners-strip {
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-2);
    transition: all 0.2s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    background: rgba(13, 76, 146, 0.08);
    color: var(--primary);
  }

  [data-theme="dark"] .mobile-menu a:hover,
  [data-theme="dark"] .mobile-menu a.active {
    background: rgba(59, 130, 246, 0.1);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .popup-box {
    padding: 24px 16px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }

}

/* ── Custom Cursor (Boat Hook Cursor) ────────────────────────── */
html,
body,
a,
button,
select,
input,
textarea {
  cursor: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'>\
<g fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'>\
<path d='M16 4L16 18L24 18Z'/>\
<path d='M16 6L10 16L16 16Z'/>\
<rect x='15' y='4' width='2' height='18' rx='1'/>\
<path d='M5 22H27L24 27H8Z'/>\
<path d='M2 29C4 28 6 30 8 29S12 28 14 29S18 30 20 29S24 28 26 29S30 30 32 29'/>\
</g>\
<g fill='%23000'>\
<path d='M16 4L16 18L24 18Z'/>\
<path d='M16 6L10 16L16 16Z'/>\
<rect x='15' y='4' width='2' height='18' rx='1'/>\
<path d='M5 22H27L24 27H8Z'/>\
</g>\
<path d='M2 29C4 28 6 30 8 29S12 28 14 29S18 30 20 29S24 28 26 29S30 30 32 29' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/>\
</svg>") 16 16, auto;
}

/* ── Floating Logistics Bubbles Animation ────────────────────── */
.logistics-bubbles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.logistics-bubble {
  position: absolute;
  bottom: -60px;
  animation: floatUp 25s linear infinite;
  transform: translateZ(0);
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: inherit;
  }

  90% {
    opacity: inherit;
  }

  100% {
    transform: translateY(-105vh) rotate(360deg);
    opacity: 0;
  }
}

/* ── Trust Badges in Footer ─────────────────────────────────── */
.footer-trust-badges {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid var(--footer-border);
  border-bottom: 1px solid var(--footer-border);
  margin: 32px 0;
  text-align: center;
  transition: border-color 0.3s;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--footer-text);
  font-size: 0.8rem;
  transition: color 0.3s;
}

.trust-badge-item i {
  font-size: 1.5rem;
  color: var(--accent-dark);
  transition: color 0.3s;
}

[data-theme="dark"] .trust-badge-item i {
  color: var(--accent);
}

.trust-badge-item strong {
  color: var(--footer-title);
  transition: color 0.3s;
}

@media (max-width: 1024px) {
  .footer-trust-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-trust-badges {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .navbar-top {
    display: none;
  }

  .navbar-marquee {
    padding: 6px 0;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-name small {
    display: none;
  }

  .navbar-actions .btn-quote {
    display: none;
  }

  .mobile-menu {
    top: 104px;
  }

  .hero-slider {
    margin-top: 104px !important;
  }

  .page-hero {
    padding: 136px 0 48px;
  }

  /* Mobile WhatsApp Button Overrides */
  .global-wa-container {
    bottom: 90px !important;
    right: 16px !important;
    gap: 6px;
  }

  .global-wa-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
  }

  .global-wa-tooltip {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }

  .scroll-top {
    width: 40px !important;
    height: 40px !important;
    right: 18px !important;
  }
}

/* ═════════════════════════════════════════════════════════════
   ═══ NEW HERO SECTION (Neat & Clean Two-Column Layout) ═══════
   ═════════════════════════════════════════════════════════════ */
.hero-clean-section {
  background: var(--hero-bg);
  margin-top: 136px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border 0.3s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 48px;
  align-items: center;
}

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

.hero-static-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

[data-theme="dark"] .hero-static-badge {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.hero-static-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--hero-text);
  line-height: 1.12;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.hero-static-title .accent {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-static-desc {
  font-size: 1.1rem;
  color: var(--hero-desc-color);
  line-height: 1.75;
  margin-bottom: 36px;
  transition: color 0.3s;
}

.hero-static-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 100%;
}

.hero-slider-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #020617;
  z-index: 2;
}

.hero-slider-inner {
  position: absolute;
  inset: 0;
}

.hero-img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-img-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-img-slide .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s linear;
}

.hero-img-slide.active .slide-img {
  transform: scale(1);
}

.hero-img-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 37, 0.4) 0%, transparent 100%);
}

.hero-slider-backing {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid rgba(245, 158, 11, 0.25);
  border-radius: 24px;
  pointer-events: none;
  transition: all 0.3s;
}

/* Slider Frame controls */
.mini-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.mini-slider-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.mini-slider-nav.prev {
  left: 16px;
}

.mini-slider-nav.next {
  right: 16px;
}

.mini-slider-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.mini-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.mini-slider-dot.active {
  background: #fbbf24;
  width: 18px;
  border-radius: 3px;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #fbbf24;
  z-index: 10;
  transition: width 0.1s linear;
}

/* Stats Bar */
.hero-stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
  z-index: 3;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.hstat {
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  line-height: 1;
}

[data-theme="dark"] .hstat-num {
  color: var(--accent);
}

.hstat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 600;
}

/* Responsive Collapsing for Split Slider (Mobile & Tablet) */
@media (max-width: 1024px) {
  .hero-clean-section {
    padding: 60px 0;
    margin-top: 104px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    width: 100%;
  }

  .hero-left-col,
  .hero-right-col {
    width: 100%;
    flex-shrink: 0;
  }

  .hero-right-col {
    height: 320px;
  }

  .hero-left-col {
    text-align: center;
  }

  .hero-static-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-static-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-static-actions {
    justify-content: center;
  }

  .hero-slider-frame {
    max-width: 100%;
    width: 100% !important;
    height: 320px !important;
    margin: 0 auto;
  }

  .hero-slider-backing {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hstat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 8px;
  }

  .hstat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .hstat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .hero-clean-section {
    padding: 40px 0;
  }

  .hero-static-title {
    font-size: 1.8rem;
  }

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

  .hero-right-col {
    height: 240px;
  }

  .hero-slider-frame {
    height: 240px !important;
  }

  .footer-trust-badges {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Image Card Styles */
.img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

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

/* Owner section */
.owner-section {
  background: var(--cta-bg);
  border-top: 1px solid var(--cta-border);
  border-bottom: 1px solid var(--cta-border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border 0.3s;
}

.owner-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  aspect-ratio: 3/4;
  max-width: 340px;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ── Gallery Page Styles ────────────────────────────────────── */
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background: var(--bg-2);
  color: var(--text);
  border-color: var(--text-muted);
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(13, 76, 146, 0.25);
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.gallery-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 76, 146, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.gallery-info {
  padding: 20px;
}

.gallery-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.gallery-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Lightbox Modal ────────────────────────────────────────── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10010;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-content {
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-height: 70vh;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  color: #fff;
  margin-top: 20px;
  max-width: 600px;
}

.lightbox-tag {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.lightbox-caption h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.lightbox-caption p {
  color: #94a3b8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-nav.prev {
    left: 12px;
  }

  .lightbox-nav.next {
    right: 12px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 2rem;
  }
}