/* ==========================================
   AYMAR SHIPPING - Main Stylesheet
   Design: Maritime Luxury Corporate
   Fonts: Cormorant Garamond + Jost
   Color: Deep Navy / Ocean Blue / Gold
   ========================================== */

:root {
  --navy: #071625;
  --navy-2: #0d2137;
  --navy-3: #0f2a48;
  --blue: #1565c0;
  --blue-light: #1e88e5;
  --blue-accent: #4a9eff;
  --gold: #c9a84c;
  --gold-light: #e8c870;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray: #90a4ae;
  --text: #1a2a3a;
  --text-light: #546e7a;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 8px 32px rgba(7,22,37,0.25);
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
textarea { resize: vertical; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header-top {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-left {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,0.65);
}
.header-top-left span { display: flex; align-items: center; gap: 6px; }
.header-top-left i { color: var(--gold); font-size: 11px; }
.header-top-right { display: flex; gap: 6px; }
.lang-btn {
  padding: 3px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* NAVBAR */
#navbar {
  background: rgba(7,22,37,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(7,22,37,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
}
.logo-sub {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 6px;
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu li a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
#contactNav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
#contactNav:hover { opacity: 0.9; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 560px;
  overflow: hidden;
  background: var(--navy);
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,22,37,0.92) 0%, rgba(7,22,37,0.6) 60%, rgba(21,101,192,0.3) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 80px;
  animation: slideIn 0.8s ease forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.slide-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.slide-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  color: var(--navy);
}
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slider-prev, .slider-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 14px;
}
.slider-prev:hover, .slider-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator::before {
  content: 'SCROLL';
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
}
.scroll-dot {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-3) 100%);
  padding: 40px 0;
  border-bottom: 3px solid var(--gold);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-size: 28px; color: var(--gold); }
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== SERVICES GRID ===== */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--gold), var(--blue-accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7,22,37,0.12);
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 22px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold); }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.badge-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; line-height: 1; }
.badge-text { font-size: 9px; letter-spacing: 1px; text-align: center; }
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}
.about-list {
  margin-bottom: 36px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--off-white);
  font-size: 15px;
  color: var(--text);
}
.about-list i { color: var(--gold); font-size: 16px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* ===== TRACKER SECTION ===== */
.tracker-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 80px 0;
}
.tracker-section .section-tag { color: #7ec8f0; border-color: #7ec8f0; }
.tracker-section h2 { color: #fff; }
.tracker-embed { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.1); }

/* ===== PDA SECTION ===== */
.pda-section { background: var(--off-white); }
.pda-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.pda-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--navy);
  margin-bottom: 16px;
}
.pda-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.pda-features { display: flex; flex-direction: column; gap: 16px; }
.pda-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.pda-feat i { color: var(--gold); font-size: 18px; width: 20px; }
.pda-form-wrap, .contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(7,22,37,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

/* ===== FORMS ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fafbfc;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.alert-success {
  background: rgba(46,160,102,0.1);
  border: 1px solid rgba(46,160,102,0.3);
  color: #1a7a4a;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-error {
  background: rgba(220,53,53,0.1);
  border: 1px solid rgba(220,53,53,0.3);
  color: #a02020;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  background: var(--navy);
  padding: 50px 0;
  border-top: 3px solid var(--gold);
}
.contact-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cbar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.cbar-item:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }
.cbar-item > i {
  color: var(--gold);
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}
.cbar-item div { display: flex; flex-direction: column; gap: 4px; }
.cbar-item strong { color: #fff; font-size: 13px; display: block; }
.cbar-item span { font-size: 13px; color: rgba(255,255,255,0.6); }
.cbar-item a { color: rgba(255,255,255,0.6); }
.cbar-item a:hover { color: var(--gold); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 80px 0;
  overflow: hidden;
}
.page-hero::before {
  content: '⚓';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  opacity: 0.03;
  line-height: 1;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info > p { color: var(--text-light); margin-bottom: 32px; line-height: 1.8; font-weight: 300; }
.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-item > i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.info-item div { display: flex; flex-direction: column; gap: 4px; }
.info-item strong { font-size: 13px; color: var(--navy); font-weight: 600; }
.info-item span, .info-item a { font-size: 14px; color: var(--text-light); }
.info-item a:hover { color: var(--blue); }
.map-embed { border-radius: var(--radius); overflow: hidden; }

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-detail-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: all var(--transition);
}
.service-detail-card:hover {
  box-shadow: 0 12px 40px rgba(7,22,37,0.1);
  transform: translateY(-4px);
}
.sdc-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sdc-icon {
  width: 54px; height: 54px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}
.sdc-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
.sdc-summary {
  padding: 20px 32px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 300;
}
.sdc-content {
  padding: 20px 32px 32px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}
.sdc-content p { margin-bottom: 12px; }

/* ===== DOCUMENTS PAGE ===== */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.document-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}
.document-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.1);
}
.doc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}
.doc-info { flex: 1; }
.doc-info h3 { font-size: 15px; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
.doc-info p { font-size: 13px; color: var(--text-light); }
.doc-download {
  width: 40px; height: 40px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
  flex-shrink: 0;
}
.doc-download:hover {
  background: var(--gold);
  color: var(--navy);
}
.empty-state {
  text-align: center;
  padding: 80px 0;
  color: var(--gray);
}
.empty-state i { font-size: 60px; margin-bottom: 20px; }
.empty-state p { font-size: 18px; }
.page-content { color: var(--text-light); line-height: 1.9; }
.page-content p { margin-bottom: 16px; }
.page-content h3 { color: var(--navy); font-size: 20px; margin: 24px 0 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); }
.footer-main { padding: 70px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 50px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links ul li, .footer-services ul li { margin-bottom: 10px; }
.footer-links ul a, .footer-services ul a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links ul a:hover, .footer-services ul a:hover { color: var(--gold); }
.footer-info {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-info i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-info span, .footer-info a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.6;
}
.footer-info a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-2);
  border-top: 2px solid var(--gold);
  z-index: 9998;
  padding: 16px 0;
}
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-inner p { color: rgba(255,255,255,0.7); font-size: 13px; }
.btn-cookie {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
}
.btn-cookie:hover { background: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 540px; margin: 0 auto; }
  .pda-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .contact-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .header-top-left { gap: 14px; }
}
@media (max-width: 768px) {
  .header-top-left { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 4px;
    transition: left var(--transition);
    box-shadow: 4px 0 30px rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav-menu.open { left: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu li a { display: block; font-size: 13px; }
  .slide-content { padding: 0 24px; }
  .hero-slider { height: calc(100vh - 100px); }
  .slider-controls { left: 24px; bottom: 24px; }
  .scroll-indicator { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-bar-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .documents-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .pda-form-wrap, .contact-form-wrap { padding: 24px; }
}
@media (max-width: 480px) {
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item { padding: 16px; }
  .stat-num { font-size: 40px; }
  .cookie-inner { flex-direction: column; text-align: center; }
}
