/* ============================================================
   Abicon Shipping – Main Stylesheet
   ============================================================ */

/* ── Google Fonts import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --navy:        #0d2b5e;
  --blue:        #1a3a6e;
  --mid-blue:    #1e4fa0;
  --accent:      #f5c518;
  --orange:      #e86a1a;
  --light-bg:    #f4f7fc;
  --text-dark:   #1c1c2e;
  --text-muted:  #6b7a99;
  --white:       #ffffff;
  --border:      #dde3f0;
  --shadow:      0 8px 32px rgba(13,43,94,.12);
  --shadow-lg:   0 16px 48px rgba(13,43,94,.18);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Nunito Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); letter-spacing: .3px; }

.section-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title span { color: var(--mid-blue); }
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--mid-blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .75rem 1.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--mid-blue);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,79,160,.3);
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .75rem 1.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
}
.btn-accent:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .73rem 1.9rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* ── Header ─────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header-top {
  background: var(--navy);
  padding: .4rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.header-top a { color: rgba(255,255,255,.75); }
.header-top a:hover { color: var(--accent); }
.header-top .sep { margin: 0 .75rem; opacity: .4; }

.header-main {
  background: #fff;
  padding: .55rem 0;
  box-shadow: 0 2px 16px rgba(13,43,94,.08);
  transition: var(--transition);
}
#site-header.scrolled .header-top { display: none; }
#site-header.scrolled .header-main { box-shadow: 0 4px 24px rgba(13,43,94,.14); }

.logo-wrap img { height: 62px; width: auto; }
.logo-wrap .brand-text { line-height: 1.1; }
.logo-wrap .brand-name { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: .5px; }
.logo-wrap .brand-tag  { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--navy);
  padding: .55rem .9rem;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--mid-blue); background: var(--light-bg); }

/* Dropdown */
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--mid-blue);
  padding: .5rem 0;
  z-index: 200;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.main-nav > li:hover .dropdown-menu-custom {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-menu-custom a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.2rem;
  font-size: .88rem;
  color: var(--text-dark);
  font-weight: 600;
}
.dropdown-menu-custom a:hover { background: var(--light-bg); color: var(--mid-blue); padding-left: 1.5rem; }
.dropdown-menu-custom a i { color: var(--mid-blue); font-size: .85rem; width: 18px; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 2px solid var(--light-bg);
  padding: 1rem 0;
}
.mobile-menu a {
  display: block;
  padding: .6rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: .9rem;
  color: var(--navy);
  border-bottom: 1px solid var(--light-bg);
}
.mobile-menu a:hover { background: var(--light-bg); color: var(--mid-blue); }
.mobile-menu a.sub { padding-left: 2.5rem; font-size: .83rem; color: var(--text-muted); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--mid-blue) 100%);
  padding: 7rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::after {
  content: '';
  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.03'%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");
}
.breadcrumb-section .container { position: relative; z-index: 1; }
.breadcrumb-section h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.breadcrumb-nav { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.breadcrumb-nav a, .breadcrumb-nav span { font-size: .85rem; color: rgba(255,255,255,.7); }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav .sep { color: rgba(255,255,255,.4); }
.breadcrumb-nav .current { color: var(--accent); }

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9,23,55,.85) 0%, rgba(13,43,94,.6) 60%, rgba(13,43,94,.2) 100%);
}

/* Using CSS gradients as placeholder backgrounds */
.hero-slide:nth-child(1) { background-image: linear-gradient(135deg,#0a1a3d 0%,#1a3a6e 50%,#0e2d5a 100%); }
.hero-slide:nth-child(2) { background-image: linear-gradient(135deg,#0d1f42 0%,#163060 50%,#0a2248 100%); }
.hero-slide:nth-child(3) { background-image: linear-gradient(135deg,#0f2550 0%,#1c3d75 50%,#0c2340 100%); }

/* Decorative SVG ship silhouette */
.hero-deco {
  position: absolute;
  right: 5%;
  bottom: 10%;
  opacity: .07;
  width: min(420px, 45vw);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-eyebrow::before { content:''; display: block; width: 28px; height: 2px; background: var(--accent); }
.hero-title { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; line-height: 1.05; color: #fff; margin-bottom: 1.25rem; }
.hero-title .highlight { color: var(--accent); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; }

/* Hero slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .6rem;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--accent); border-color: var(--accent); width: 28px; border-radius: 5px; }

/* ── Section Wrapper ─────────────────────────────────────── */
.section-wrap { padding: 5rem 0; }
.section-wrap.bg-light-custom { background: var(--light-bg); }
.section-wrap.bg-dark { background: var(--navy); }

/* ── Services Grid ───────────────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mid-blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; color: var(--navy); }
.service-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.service-card .read-more { font-family: var(--font-head); font-size: .85rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--mid-blue); margin-top: 1rem; display: inline-flex; align-items: center; gap: .3rem; }
.service-card:hover .read-more { color: var(--orange); }

/* ── Why Us ──────────────────────────────────────────────── */
.why-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(30,79,160,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-blue);
  font-size: 1.3rem;
}
.why-feature h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.why-feature p  { font-size: .88rem; color: var(--text-muted); }

/* ── Stats ───────────────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--navy) 0%, var(--mid-blue) 100%); padding: 4rem 0; }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--accent); }
.stat-num span { font-size: 1.6rem; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1.5px; margin-top: .3rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); }

/* ── Industries ─────────────────────────────────────────── */
.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.industry-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.industry-card:hover h5, .industry-card:hover p { color: #fff; }
.industry-icon { font-size: 2.4rem; color: var(--mid-blue); margin-bottom: .8rem; transition: var(--transition); }
.industry-card:hover .industry-icon { color: var(--accent); }
.industry-card h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.industry-card p  { font-size: .82rem; color: var(--text-muted); }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--mid-blue);
  height: 100%;
}
.testimonial-stars { color: var(--accent); font-size: .9rem; margin-bottom: .8rem; }
.testimonial-text { font-size: .93rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--mid-blue), var(--navy)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(120deg, var(--mid-blue) 0%, var(--navy) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,.04);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(245,197,24,.07);
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 1.05rem; }

/* ── About ───────────────────────────────────────────────── */
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 4rem;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
.about-badge .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--navy); }
.about-badge .lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin: .25rem;
}
.value-pill i { color: var(--mid-blue); }

/* ── Team ────────────────────────────────────────────────── */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 240px;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(13,43,94,.5));
}
.team-info { padding: 1.4rem; text-align: center; }
.team-info h5 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.team-info span { font-size: .82rem; color: var(--text-muted); display: block; margin: .2rem 0 .8rem; }
.team-social { display: flex; justify-content: center; gap: .5rem; }
.team-social a { width: 34px; height: 34px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .85rem; }
.team-social a:hover { background: var(--mid-blue); color: #fff; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: auto;
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.contact-info-text h6 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.contact-info-text p, .contact-info-text a { font-size: .88rem; color: var(--text-muted); display: block; }
.contact-info-text a:hover { color: var(--mid-blue); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.2rem; }
.form-label { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; display: block; }
.form-control-custom {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-dark);
  background: #fafbff;
  outline: none;
  transition: var(--transition);
}
.form-control-custom:focus { border-color: var(--mid-blue); background: #fff; box-shadow: 0 0 0 3px rgba(30,79,160,.1); }
textarea.form-control-custom { resize: vertical; min-height: 120px; }
select.form-control-custom { cursor: pointer; }

.form-feedback { display: none; margin-top: 1rem; padding: 1rem; border-radius: var(--radius); font-size: .9rem; }
.form-feedback.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; display: block; }
.form-feedback.error   { background: #fde8e8; color: #c62828; border: 1px solid #ffcdd2; display: block; }

/* ── Map ─────────────────────────────────────────────────── */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── Footer ──────────────────────────────────────────────── */
#site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-main { padding: 4rem 0 2rem; }
.footer-brand .brand-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: .5px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin: .8rem 0 1.2rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--mid-blue); color: #fff; }

.footer-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: var(--accent); padding-left: .3rem; }
.footer-links a i { font-size: .7rem; color: var(--mid-blue); }

.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .9rem; font-size: .88rem; }
.footer-contact-item i { color: var(--accent); margin-top: .2rem; flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--accent); }

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}
.whatsapp-btn {
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); background: #20b958; color: #fff; }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0);  }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}
.whatsapp-tooltip {
  background: #fff;
  border-radius: 8px;
  padding: .45rem .9rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── Back to Top ─────────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2.1rem;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--mid-blue);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ── Animations (AOS-like) ───────────────────────────────── */
[data-anim] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
[data-anim="fade-up"]    { transform: translateY(30px); }
[data-anim="fade-right"] { transform: translateX(-30px); }
[data-anim="fade-left"]  { transform: translateX(30px); }
[data-anim="zoom-in"]    { transform: scale(.92); }
[data-anim].animated { opacity: 1; transform: none; }

/* Stagger delay helpers */
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── Utilities ───────────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-blue    { color: var(--mid-blue); }
.text-navy    { color: var(--navy); }
.bg-navy      { background: var(--navy); }
.bg-blue      { background: var(--mid-blue); }
.divider-accent { width: 50px; height: 3px; background: var(--accent); border-radius: 3px; margin: .8rem 0 1.5rem; }
.divider-accent.center { margin: .8rem auto 1.5rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .main-nav, .header-cta-btn { display: none !important; }
  .mobile-toggle { display: block; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .about-badge { right: 0; bottom: -1rem; }
}
@media (max-width: 767px) {
  .section-wrap { padding: 3.5rem 0; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; }
  #back-top { bottom: 5.5rem; right: 1.3rem; }
}
