/* 
========================================================================
   IMMIGRATION & VISA CONSULTANCY - MAIN STYLESHEET (style.css)
========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Design Tokens & CSS Variables */
:root {
  --primary: #0F172A;
  --secondary: #1E293B;
  --accent: #0EA5E9;
  --accent-light: #38BDF8;
  --gold: #F59E0B;
  --gold-light: #FBBF24;
  --white: #FFFFFF;
  --light: #F8FAFC;
  --gray: #94A3B8;
  --dark: #020617;
  --success: #22C55E;
  
  /* Fonts */
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Fluid Typography Tokens (clamp) */
  --font-size-hero: clamp(2.25rem, 5vw + 1rem, 4rem);
  --font-size-h1: clamp(1.85rem, 4vw + 1rem, 3.25rem);
  --font-size-h2: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
  --font-size-h3: clamp(1.2rem, 1.8vw + 0.6rem, 1.6rem);
  --font-size-h4: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  --font-size-body-lg: clamp(1rem, 1vw + 0.8rem, 1.2rem);
  --font-size-body: clamp(0.88rem, 0.4vw + 0.75rem, 1rem);
  --font-size-sm: clamp(0.75rem, 0.3vw + 0.7rem, 0.88rem);
  
  /* Shadows & Glass */
  --glass-bg: rgba(30, 41, 59, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(2, 6, 23, 0.35);
  --glass-glow: 0 0 25px rgba(14, 165, 233, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
  background-color: #020617;
}

body {
  font-family: var(--font-body);
  color: var(--light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Reusable Glassmorphism Utility Panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

.glass-card {
  background: rgba(30, 41, 59, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--glass-glow), var(--glass-shadow);
  transform: translateY(-8px);
}

/* Gradient Background Overlays */
.bg-gradient-radial {
  background: radial-gradient(circle at 50% 50%, var(--secondary) 0%, var(--dark) 100%);
}

.accent-glow-sphere {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
}

.sphere-blue {
  background: rgba(14, 165, 233, 0.12);
  top: -10%;
 
}

.sphere-gold {
  background: rgba(245, 158, 11, 0.07);
  bottom: 10%;
  left: -10%;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.section-padding {
  padding: 7.5rem 0;
}

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

.section-header {
  margin-bottom: 4.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
  display: inline-block;
  font-weight: 700;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--white) 30%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--gray);
  font-size: var(--font-size-body-lg);
}

/* Premium Buttons & UI Interactions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0369a1 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0284c7 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.35);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
  color: var(--dark);
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

/* Header & Glass Sticky Navbar */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-nav.scrolled {
  padding: 0.9rem 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.3);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--white) 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: auto;
  height: 32px;
  max-height: 32px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-item {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray);
  padding: 0.5rem 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--white);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================================================
   HOME PAGE (index.html) STYLES
======================================================================== */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 9rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.9) 0%, var(--dark) 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: var(--font-size-body-lg);
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-avatars {
  display: flex;
  margin-right: 0.5rem;
}

.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  margin-left: -12px;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-badge-txt {
  font-size: 0.9rem;
  color: var(--gray);
}

.hero-badge-txt span {
  color: var(--gold);
  font-weight: 700;
}

.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-backdrop {
  position: absolute;
  width: 105%;
  height: 105%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: var(--radius-lg);
  filter: blur(20px);
  z-index: -1;
}

.hero-img-box {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  position: relative;
  background: rgba(30, 41, 59, 0.2);
}

.hero-img-box img {
  width: 100%;
  height: clamp(260px, 40vw, 520px);
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}

.floating-card {
  position: absolute;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  z-index: 10;
}

.fc-1 {
  bottom: 50px;
  left: -40px;
}

.fc-2 {
  top: 60px;
  right: -30px;
}

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.fc-icon-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.fc-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.fc-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Statistics Section */
.stats-section {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 2.5rem;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--gray);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Services Grid & Card System */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(3, 105, 161, 0.05) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-light);
  width: fit-content;
}

.card-link svg {
  transition: transform 0.3s ease;
}

.card-link:hover svg {
  transform: translateX(5px);
}

/* Why Choose Us Cards */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.wcu-card {
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wcu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.wcu-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.wcu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.wcu-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Countries We Serve Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.country-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--glass-shadow);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(2, 6, 23, 0.95) 0%, 
    rgba(15, 23, 42, 0.4) 60%, 
    rgba(15, 23, 42, 0.1) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.country-flag-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
}

.country-flag-badge span {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}

.country-flag-badge span img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.country-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.country-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-card .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(14, 165, 233, 0.35);
}

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

.country-card:hover p,
.country-card:hover .btn {
  transform: translateY(0);
  opacity: 1;
}

/* Testimonial Section & Slider */
.testimonial-carousel-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 1.5rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: rgba(14, 165, 233, 0.15);
  font-family: Georgia, serif;
  position: absolute;
  top: 1.5rem;
  left: 3rem;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--light);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.user-meta h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.user-meta p {
  font-size: 0.85rem;
  color: var(--gray);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Consultation Form Section */
.consultation-section {
  position: relative;
  overflow: hidden;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.consultation-info-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.consultation-info-header p {
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.info-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-point-item {
  display: flex;
  gap: 1.25rem;
}

.point-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-txt h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.point-txt p {
  color: var(--gray);
  font-size: 0.95rem;
}

.form-wrapper {
  padding: 3rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-left: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.2);
  background: rgba(15, 23, 42, 0.7);
}

select.form-control option {
  background-color: var(--primary);
  color: var(--white);
}

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

.error-message {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  margin-left: 0.25rem;
  display: none;
}

.form-group.has-error .form-control {
  border-color: #ef4444;
}

.form-group.has-error .error-message {
  display: block;
}

/* ========================================================================
   ABOUT PAGE (about.html) STYLES
======================================================================== */
.inner-hero {
  padding: 10.5rem 0 6rem 0;
  background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.inner-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.95rem;
}

.breadcrumbs a:hover {
  color: var(--accent-light);
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs .current {
  color: var(--accent-light);
  font-weight: 600;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.intro-img-box {
  position: relative;
}

.intro-img-box img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--glass-shadow);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 1.5rem 2rem;
  background: var(--gold);
  border-radius: var(--radius-md);
  color: var(--dark);
  text-align: center;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
}

.intro-badge h3 {
  color: var(--dark);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.intro-badge p {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.intro-text .lead {
  font-size: 1.15rem;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-text p {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Mission & Vision Row */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mv-card {
  padding: 3rem;
}

.mv-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

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

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--gray);
}

/* Professional Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  padding: 0;
  overflow: hidden;
}

.team-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-socials {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.team-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.team-social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05) filter(brightness(0.85));
}

.team-card:hover .team-socials {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.team-info {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-info p {
  color: var(--accent-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Experience Timeline Progress */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--gold), var(--secondary));
  transform: translateX(-50%);
}

.timeline-item {
  width: 100%;
  margin-bottom: 4.5rem;
  position: relative;
  display: flex;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark);
  border: 4px solid var(--accent);
  transform: translateX(-50%);
  z-index: 5;
}

.timeline-item:nth-child(even) .timeline-dot {
  border-color: var(--gold);
}

.timeline-content {
  width: 45%;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  padding-right: 2.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  padding-left: 2.5rem;
}

.timeline-year {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.timeline-item:nth-child(even) .timeline-year {
  color: var(--gold);
}

.timeline-card-box {
  padding: 2rem;
}

.timeline-card-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.timeline-card-box p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========================================================================
   SERVICES PAGE (services.html) STYLES
======================================================================== */
.detailed-services-grid {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.detailed-service-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem;
}

.detailed-service-card:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.detailed-service-card:nth-child(even) .service-detail-info {
  grid-column: 2;
}

.detailed-service-card:nth-child(even) .service-detail-media {
  grid-column: 1;
  grid-row: 1;
}

.service-detail-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-detail-info p.desc {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.benefits-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--light);
}

.benefit-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.service-detail-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 100%);
}

/* ========================================================================
   COUNTRIES PAGE (countries.html) STYLES
======================================================================== */
.countries-list-grid {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.country-profile-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.country-profile-card:nth-child(even) {
  grid-template-columns: 1.05fr 0.95fr;
}

.country-profile-media {
  position: relative;
  min-height: 480px;
}

.country-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-profile-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(15, 23, 42, 0.4));
}

.country-profile-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.country-profile-info h3 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.country-profile-info .capital {
  color: var(--accent-light);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.country-profile-info p.intro-desc {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.country-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.country-stat-box {
  padding: 1.25rem;
  text-align: center;
}

.country-stat-box h4 {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.country-stat-box p {
  color: var(--gold);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}

.country-stat-box.highlight p {
  color: var(--accent-light);
}

.country-key-benefits h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.country-key-benefits ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.country-key-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--light);
}

.country-key-benefits li svg {
  color: var(--accent);
}

/* ========================================================================
   VISA PAGE (visa.html) ACCORDIONS
======================================================================== */
.visa-categories-section {
  max-width: 900px;
  margin: 0 auto;
}

.visa-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.accordion-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
  padding: 1.75rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(30, 41, 59, 0.25);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(30, 41, 59, 0.45);
}

.accordion-title-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.accordion-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-header h3 {
  font-size: 1.35rem;
}

.accordion-arrow {
  color: var(--gray);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.2);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-content {
  max-height: 1200px; /* Large enough fallback */
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--accent-light);
}

.accordion-body {
  padding: 2.5rem;
}

.visa-tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.visa-info-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--white);
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

.visa-info-column p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.visa-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.visa-checklist li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--light);
}

.visa-checklist li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.visa-meta-table {
  width: 100%;
  border-collapse: collapse;
}

.visa-meta-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.visa-meta-table td {
  padding: 1rem 0;
  font-size: 0.95rem;
}

.visa-meta-table td.label {
  color: var(--gray);
  font-weight: 500;
  width: 40%;
}

.visa-meta-table td.value {
  color: var(--white);
  font-weight: 600;
  text-align: right;
}

.visa-meta-table td.value.gold-val {
  color: var(--gold);
}

/* ========================================================================
   LOGIN PAGE (login.html) STYLES
======================================================================== */
.login-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, var(--secondary) 0%, var(--dark) 100%);
  padding: 2.5rem 1.5rem;
  overflow: hidden;
}

.login-card {
  width: 100%;
  max-width: 450px;
  padding: 3.5rem 3rem;
  position: relative;
  z-index: 5;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.login-input-group {
  position: relative;
  margin-bottom: 1.75rem;
}

.login-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.5rem;
  margin-left: 0.25rem;
}

.login-input-wrapper {
  position: relative;
}

.login-input-wrapper input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  padding-right: 3rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.login-input-wrapper input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.15);
  background: rgba(15, 23, 42, 0.8);
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--white);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 2.25rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--gray);
}

.remember-me input {
  cursor: pointer;
  accent-color: var(--accent);
}

.forgot-password {
  color: var(--accent-light);
  font-weight: 500;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  margin-bottom: 1.5rem;
}

.social-login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.social-login-divider::before,
.social-login-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-login-divider:not(:empty)::before {
  margin-right: .75em;
}

.social-login-divider:not(:empty)::after {
  margin-left: .75em;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.9rem 0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-google svg {
  width: 18px;
  height: 18px;
}

.register-link {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 2rem;
}

.register-link a {
  color: var(--accent-light);
  font-weight: 600;
}

.register-link a:hover {
  text-decoration: underline;
}

/* Back to Home Button */
.back-home-btn {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.back-home-btn:hover {
  transform: translateX(-4px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: var(--glass-glow), var(--glass-shadow);
  color: var(--accent-light);
}

.back-home-btn svg {
  transition: transform 0.3s ease;
}

.back-home-btn:hover svg {
  transform: translateX(-2px);
}

/* Custom Alert Banner */
.login-alert-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fca5a5;
  font-size: 0.88rem;
  animation: shake 0.4s ease-in-out;
}

.login-alert-banner svg {
  width: 20px;
  height: 20px;
  stroke: #f87171;
  flex-shrink: 0;
}

/* Helper Box for Demo Credentials */
.credentials-helper {
  background: rgba(14, 165, 233, 0.05);
  border: 1px dashed rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

.credentials-helper strong {
  color: var(--accent-light);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

@media (max-width: 768px) {
  .back-home-btn {
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}


/* ========================================================================
   CONTACT PAGE (contact.html) STYLES
======================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-text a:hover {
  color: var(--accent-light);
}

.contact-social-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-socials-row {
  display: flex;
  gap: 1rem;
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-circle-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.map-placeholder-container {
  margin-top: 3.5rem;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.map-placeholder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
}

.map-placeholder-overlay p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========================================================================
   PREMIUM FOOTER
======================================================================== */
.footer {
  width: 100%;
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6.5rem 0 2rem 0;
  position: relative;
 
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link-item {
  color: var(--gray);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link-item a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-link-item svg {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.footer-link-item:hover svg {
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-row {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--gray);
}

.footer-contact-row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.newsletter-box p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  border-color: var(--accent);
}

.newsletter-btn {
  background: var(--accent);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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