/* Abroadlink Overseas — Landing Page Styles */

:root {
  --navy: #002d62;
  --royal: #0056b3;
  --cyan: #00aeef;
  --cyan-light: #5ecfff;
  --green: #4caf50;
  --green-bright: #66bb6a;
  --accent-warm: #ff8f00;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --btn-primary: linear-gradient(135deg, #0056b3 0%, #00aeef 55%, #00c8ff 100%);
  --btn-cta: linear-gradient(135deg, #00aeef 0%, #0056b3 50%, #002d62 100%);
  --btn-cta-hover: linear-gradient(135deg, #5ecfff 0%, #00aeef 40%, #0056b3 100%);
  --shadow-sm: 0 1px 3px rgba(0, 45, 98, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 45, 98, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 45, 98, 0.18);
  --shadow-btn: 0 2px 8px rgba(0, 86, 179, 0.22);
  --shadow-btn-cta: 0 2px 10px rgba(0, 174, 239, 0.28);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 88px;
  --logo-overlap: 56px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--logo-overlap));
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--royal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cyan);
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--btn-primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0066cc 0%, #5ecfff 55%, #00aeef 100%);
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.3);
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(94, 207, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(94, 207, 255, 0.25) 100%);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.btn-cta {
  background: var(--btn-cta);
  color: var(--white) !important;
  box-shadow: var(--shadow-btn-cta);
  border: 1px solid rgba(94, 207, 255, 0.35);
}

.btn-cta:hover {
  background: var(--btn-cta-hover);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.35);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  overflow: visible;
}

.logo {
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  margin-bottom: calc(-1 * var(--logo-overlap));
  padding: 0.4rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow:
    0 10px 32px rgba(0, 45, 98, 0.16),
    0 2px 8px rgba(0, 45, 98, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.95);
  transition: box-shadow var(--transition), transform var(--transition);
}

.logo:hover {
  box-shadow:
    0 14px 40px rgba(0, 45, 98, 0.2),
    0 4px 12px rgba(0, 174, 239, 0.12);
}

.logo img {
  display: block;
  height: clamp(108px, 11vw, 132px);
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.site-header.scrolled .logo {
  margin-bottom: calc(-1 * var(--logo-overlap) + 8px);
  box-shadow: 0 8px 24px rgba(0, 45, 98, 0.14);
}

.site-header.scrolled .logo img {
  height: clamp(92px, 10vw, 108px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn).active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--logo-overlap) + 2.5rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 45, 98, 0.62) 0%, rgba(0, 86, 179, 0.48) 45%, rgba(0, 174, 239, 0.22) 100%),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&q=80&auto=format&fit=crop") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(76, 175, 80, 0.15), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 2.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stat {
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 20, 50, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow:
    0 12px 40px rgba(0, 20, 50, 0.3),
    0 0 0 1px rgba(0, 174, 239, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stats strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 45%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 20, 50, 0.45);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-label {
  display: inline-block;
  color: var(--royal);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* About */
.about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge span {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.check-list {
  margin-bottom: 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Countries */
.countries {
  background: var(--gray-50);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.country-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 45, 98, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 45, 98, 0.14);
}

.country-card .country-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.country-card:hover .country-photo {
  transform: scale(1.04);
}

.country-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 45, 98, 0.94));
  color: var(--white);
}

.country-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.country-flag {
  width: 28px !important;
  height: 21px !important;
  max-width: 28px;
  min-width: 28px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.country-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.country-info p {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-item:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.why-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Success Stories Slider */
.stories {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.stories-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 3rem;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0.25rem;
}

.story-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 45, 98, 0.08);
}

.story-quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.2;
  font-family: Georgia, serif;
  pointer-events: none;
}

.story-text {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray-700);
  font-style: italic;
  margin: 0 0 2rem;
  padding-top: 0.5rem;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.story-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.story-meta {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

.story-meta span {
  color: var(--royal);
  font-weight: 600;
}

.story-flag {
  width: 28px !important;
  height: 21px !important;
  margin-left: auto;
  border-radius: 3px;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 45, 98, 0.1);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 2;
}

.slider-btn:hover {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot:hover {
  background: var(--cyan);
}

.slider-dot.active {
  background: var(--royal);
  transform: scale(1.15);
}

/* Contact / Form */
.contact {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1.25rem;
}

.contact-details strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-details a {
  font-weight: 600;
  color: var(--navy);
}

.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.inquiry-form .form-group-wide {
  grid-column: 1 / -1;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group label span {
  color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.2);
  background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53935;
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #e53935;
  margin-top: 0.35rem;
}

.dynamic-field {
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.form-actions {
  margin-top: 0.5rem;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.5rem;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #c62828;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#submitBtn.loading .btn-text {
  opacity: 0.6;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.85rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.footer-brand img {
  display: block;
  height: auto;
  width: auto;
  max-height: 88px;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 320px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-countries li {
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 76px;
    --logo-overlap: 36px;
  }

  .logo {
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius);
  }

  .logo img {
    height: 88px;
    max-width: 200px;
  }

  .site-header.scrolled .logo img {
    height: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1rem;
  }

  .main-nav .btn-cta {
    width: 100%;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .services-grid,
  .countries-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-stat {
    padding: 1.15rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stories-slider {
    padding: 0 2.75rem;
  }

  .story-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-cta { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
