/* 
  Vision Danışmanlık - Global Stylesheet
  Premium Theme: Deep Navy & Gold Accent
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #0f223d;
  --primary-light: #1e3a61;
  --primary-dark: #071222;
  --accent-color: #d4af37;
  --accent-hover: #c59b27;
  --text-color: #2d3748;
  --text-light: #718096;
  --text-white: #ffffff;
  --bg-color: #ffffff;
  --bg-light: #f7fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --whatsapp-color: #25d366;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-title.left-align::after {
  margin: 0.75rem 0 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-accent:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(15, 34, 61, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--text-white);
  color: var(--text-white);
}

.btn-outline-white:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
}

/* Header & Navigation */
.top-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info a:hover {
  color: var(--accent-color);
}

.top-bar-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.top-bar-social a:hover {
  color: var(--accent-color);
}

header {
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

header.scrolled .nav-menu a {
  color: rgba(255, 255, 255, 0.9);
}

header.scrolled .nav-menu a:hover,
header.scrolled .nav-menu a.active {
  color: var(--accent-color);
}

header.scrolled .logo-text {
  color: var(--text-white);
}

header.scrolled .logo-text span {
  color: var(--accent-color);
}

header.scrolled .mobile-menu-toggle {
  color: var(--text-white);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1.5rem;
  border: 2px solid var(--accent-color);
  transition: var(--transition);
}

header.scrolled .logo-icon {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--text-white);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-color);
}

/* Language Dropdown & Toggle */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

header.scrolled .lang-btn {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.lang-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: var(--box-shadow);
  display: none;
  min-width: 120px;
  z-index: 100;
  overflow: hidden;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-color) !important;
  font-weight: 500;
  transition: var(--transition);
  border: none !important;
}

.lang-dropdown a::after {
  display: none !important;
}

.lang-dropdown a:hover {
  background-color: var(--bg-light);
  color: var(--accent-color) !important;
}

.lang-dropdown img {
  width: 20px;
  border-radius: 2px;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--primary-dark);
}

/* Track */
.hero-slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Individual Slide */
.hero-slide {
  width: calc(100% / 3 + 1px);
  margin-right: -1px;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero-slide.is-active .hero-slide-bg {
  transform: scale(1);
}

/* CSS-only designed backgrounds */
.hero-slide-bg-css {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-svg-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Slide theme colors via CSS variables */
.slide--visa  { background: #0b1e3a; }
.slide--tech  { background: #071828; }
.slide--health { background: #051520; }

/* Country card as anchor */
a.country-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.country-overlay span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.country-card:hover .country-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 18, 34, 0.80) 0%,
    rgba(15, 34, 61, 0.55) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* Content */
.hero-slide-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 750px;
}

@media (min-width: 1200px) {
  .hero-slide-content {
    left: calc((100% - 1200px) / 2 + 1.5rem);
  }
}

.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-slide.is-active .hero-slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.hero-slide.is-active h2 {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-content h2 span {
  background: linear-gradient(120deg, var(--accent-color), #ffcc44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slide-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.hero-slide.is-active p {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.hero-slide.is-active .hero-slide-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

/* Bullets */
.slider-bullets {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 20;
}

.slider-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  padding: 0;
}

.slider-bullet.is-active {
  width: 28px;
  background: var(--accent-color);
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent-color);
  z-index: 20;
  width: 0%;
  transition: width 0.1s linear;
}

/* Scroll indicator */
.slider-scroll-hint {
  position: absolute;
  bottom: 3.5rem;
  right: 3rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.slider-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* Old hero – kept for inner pages that still reference .hero */
.hero {
  background: linear-gradient(rgba(15, 34, 61, 0.85), rgba(15, 34, 61, 0.95)), url('../images/hero_bg.png') no-repeat center center/cover;
  padding: 8rem 0 6rem 0;
  color: var(--text-white);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--accent-color);
  background: linear-gradient(120deg, var(--accent-color), #ffcc33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-graphics {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.hero-badge i {
  font-size: 1.5rem;
}

/* Feature Grid */
.features-section {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-top-color: var(--accent-color);
}

.feature-icon {
  background-color: rgba(15, 34, 61, 0.05);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.feature-card-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card-content p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Services Grid */
.services-section {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--accent-color);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 2rem;
}

.service-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.service-card-link:hover {
  color: var(--accent-color);
}

.service-card-link i {
  font-size: 0.8rem;
  transition: var(--transition);
}

.service-card-link:hover i {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-section {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.why-section .section-title {
  color: var(--text-white);
}

.why-section .section-title::after {
  background-color: var(--accent-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.why-card h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed var(--border-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.process-circle span {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:hover .process-circle {
  border-color: var(--accent-color);
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Countries / Destinations */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.country-card {
  position: relative;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(15, 34, 61, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition);
}

.country-card:hover img {
  transform: scale(1.15);
}

.country-overlay h3 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-light);
  position: relative;
}

.testimonials-slider {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
}

.testimonial-item {
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--accent-color);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before, .testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  font-family: serif;
  color: var(--accent-color);
  line-height: 0;
}

.testimonial-author {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-color);
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* Partners Section */
.partners-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.partner-logo {
  height: 60px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.partner-logo img {
  max-height: 100%;
  width: auto;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Contact Info & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  background-color: var(--primary-color);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-map {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 250px;
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow-hover);
  border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Service Detail / Inner Pages */
.inner-hero {
  background: linear-gradient(rgba(15, 34, 61, 0.9), rgba(15, 34, 61, 0.95)), url('../images/inner_hero_bg.png') no-repeat center center/cover;
  padding: 6rem 0;
  color: var(--text-white);
  text-align: center;
}

.inner-hero h1 {
  color: var(--text-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

.inner-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.inner-content-body h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.inner-content-body h2:first-of-type {
  margin-top: 0;
}

.inner-content-body p {
  margin-bottom: 1.25rem;
  color: var(--text-color);
}

.inner-content-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.inner-content-body ul li {
  margin-bottom: 0.5rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--bg-light);
  padding: 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.sidebar-links-list li {
  margin-bottom: 0.75rem;
}

.sidebar-links-list li:last-child {
  margin-bottom: 0;
}

.sidebar-links-list a {
  display: block;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.sidebar-links-list a:hover,
.sidebar-links-list a.active {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

.sidebar-cta {
  background: linear-gradient(rgba(15, 34, 61, 0.92), rgba(15, 34, 61, 0.98)), url('../images/inner_hero_bg.png') no-repeat center center/cover;
  color: var(--text-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.sidebar-cta h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  border: 2px solid var(--text-white);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-white);
}

.footer-logo-text span {
  color: var(--accent-color);
}

.footer-desc {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-white);
}

.footer-socials a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.footer-col h3 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
}

.footer-contact-info li i {
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: 4px 0 0 4px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  padding: 0 1.25rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #ffc107;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 2.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px solid var(--whatsapp-color);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Animations */
.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 500px;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
  .inner-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .lang-selector {
    margin-left: auto;
    margin-right: 0.75rem;
    z-index: 1001;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    width: 100%;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 1000;
  }
  header.scrolled .mobile-menu-toggle {
    color: var(--text-white);
  }
  .top-bar-info {
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .top-bar-social {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
  .whatsapp-float {
    display: none !important;
  }
  .mobile-bottom-nav {
    display: grid !important;
  }
  body {
    padding-bottom: 60px;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .countries-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .top-bar-info {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}

/* Slider – Responsive */
@media (max-width: 768px) {
  .hero-slider-section {
    height: 100svh;
    min-height: 520px;
  }
  .hero-slide-content {
    left: 0;
    width: 100%;
    padding: 0 6%;
    max-width: 100%;
  }
  .hero-slide-content h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
  .hero-slide-content p {
    font-size: 0.95rem;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    top: 11.5rem;
    bottom: auto;
    transform: none;
  }
  .slider-arrow:hover {
    transform: none;
  }
  .slider-prev {
    left: 1.5rem;
    right: auto;
  }
  .slider-next {
    right: 1.5rem;
  }
  .slider-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-slide-buttons {
    flex-direction: column;
  }
  .hero-slide-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   MOBILE BOTTOM NAVIGATION BAR
   ===================================================== */
.mobile-bottom-nav {
  display: none; /* Hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--primary-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--accent-color);
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  gap: 4px;
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.15rem;
}

.mobile-bottom-nav .nav-item span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
  color: var(--accent-color);
}

.mobile-bottom-nav .whatsapp-item {
  background-color: #25d366;
  color: #ffffff !important;
}

.mobile-bottom-nav .whatsapp-item i {
  color: #ffffff !important;
}

.mobile-bottom-nav .whatsapp-item:hover {
  background-color: #20ba5a;
}

