@charset "UTF-8";
/* ==========================================================================
   1. CSS VARIABLES (DESIGN SYSTEM)
   ========================================================================== */
:root {
  /* Renk Standartları */
  --color-primary: #0F4360;
  --color-primary-light: #165C85;
  --color-accent: #B59045;
  --color-accent-hover: #9A7936;
  --color-bg-light: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-text-main: #334155;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  /* Tipografi Standartları */
  --font-family: "Plus Jakarta Sans", sans-serif;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: clamp(1.125rem, 3vw, 1.375rem);
  --fs-lg: clamp(2rem, 5vw, 3.5rem);
  /* Buton Standartları */
  --btn-padding-y: 0.875rem;
  --btn-padding-x: 2rem;
  --btn-radius: 0.5rem;
  --btn-font-size: var(--fs-base);
  /* Gölgeler (Shadows) */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  /* Düzen & Geçişler */
  --container-max: 1280px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   3. LAYOUT & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-py {
  padding: 6rem 0;
}

.bg-white {
  background-color: var(--color-surface);
}

.bg-light {
  background-color: var(--color-bg-light);
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: rgba(15, 67, 96, 0.08);
  color: var(--color-primary);
  border-radius: 9999px;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.section-tag--light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  margin-bottom: 1.5rem;
}
.section-tag--accent {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}

.section-title {
  font-size: var(--fs-lg);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.h1-style {
  font-size: var(--fs-lg);
  color: white;
  margin-bottom: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size);
  font-weight: 700;
  border-radius: var(--btn-radius);
  transition: var(--transition-normal);
  gap: 0.5rem;
}
.btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(15, 67, 96, 0.2);
}
.btn-primary:hover {
  background-color: var(--color-primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 67, 96, 0.3);
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(181, 144, 69, 0.2);
}
.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(181, 144, 69, 0.3);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}
.btn-outline--light {
  border-color: white;
  color: white;
}
.btn-outline--light:hover {
  background-color: white;
  color: var(--color-primary);
}

/* ==========================================================================
   4. TOPBAR
   ========================================================================== */
.topbar {
  background-color: var(--color-primary);
  color: white;
  font-size: var(--fs-sm);
  padding: 0.5rem 0;
  display: block;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  transition: var(--transition-fast);
}
.topbar-item:hover {
  opacity: 1;
  color: var(--color-accent);
}
.topbar-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topbar-lang {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.topbar-lang a {
  color: white;
  opacity: 0.8;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar-lang a:hover, .topbar-lang a.active {
  opacity: 1;
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
.header {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}
.header.scrolled .header-inner {
  height: 70px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.3s ease;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.logo img {
  height: 75px;
  width: auto;
  max-width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.header.scrolled .logo img {
  height: 50px;
}

nav {
  display: flex;
  margin-right: 2.5rem;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item:hover .nav-link {
  color: var(--color-primary);
}
.nav-item:hover .nav-link::after {
  width: 100%;
}
.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-link {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
  letter-spacing: 0.02em;
  position: relative;
  padding: 1rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-accent);
  transition: width 0.3s ease;
  border-radius: 3px 3px 0 0;
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-surface);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-top: 3px solid var(--color-accent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem 0;
  z-index: 1001;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text-main);
  font-size: var(--fs-base);
  font-weight: 500;
  transition: var(--transition-fast);
}
.dropdown-item:hover {
  background-color: var(--color-bg-light);
  color: var(--color-accent);
  padding-left: 2rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   6. HERO SLIDER
   ========================================================================== */
.hero {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  background-color: var(--color-primary);
}
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide.active .h1-style,
.hero-slide.active .hero-text-box p,
.hero-slide.active .hero-actions {
  transform: translateY(0);
  opacity: 1;
}
.hero-slide:nth-child(1) {
  background: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&q=80&w=1920") center/cover no-repeat;
}
.hero-slide:nth-child(2) {
  background: url("https://images.unsplash.com/photo-1589829085413-56de8ae18c73?auto=format&fit=crop&q=80&w=1920") center/cover no-repeat;
}
.hero-slide:nth-child(3) {
  background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=1920") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 67, 96, 0.9) 0%, rgba(15, 67, 96, 0.5) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-text-box {
  max-width: 700px;
}
.hero-text-box p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.6s;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.8s;
  flex-wrap: wrap;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-normal);
}
.slider-dot.active {
  background-color: var(--color-accent);
  transform: scale(1.5);
}

/* ==========================================================================
   7. MARQUEE (Features)
   ========================================================================== */
.marquee-wrapper {
  background-color: var(--color-primary);
  color: white;
  padding: 1.5rem 0;
  overflow: hidden;
  display: flex;
  border-bottom: 4px solid var(--color-accent);
}
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 30s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-md);
  font-weight: 600;
  padding: 0 2rem;
}
.marquee-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   8. SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  bottom: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::after {
  transform: translateY(0);
  bottom: 0;
}
.service-card:hover h3,
.service-card:hover p {
  color: white;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-card:hover .service-link {
  color: var(--color-accent);
}
.service-card:hover .service-link svg {
  transform: translateX(5px);
}
.service-card h3 {
  font-size: var(--fs-md);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}
.service-card p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  transition: var(--transition-normal);
  line-height: 1.7;
  font-size: var(--fs-base);
}

.service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  transition: var(--transition-normal);
  margin-top: auto;
  align-self: flex-start;
}
.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   9. CALL TO ACTION (CTA)
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #072232 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}
.cta-content h2 {
  color: white;
  font-size: var(--fs-lg);
  margin-bottom: 1.5rem;
}
.cta-content p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}
.cta-content svg {
  width: 20px;
  height: 20px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   10. BLOG SECTION
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  transform: translateZ(0);
}
.blog-card:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: var(--shadow-xl);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  line-height: 0;
}
.blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-title {
  font-size: var(--fs-md);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-title a:hover {
  color: var(--color-primary-light);
}

.blog-excerpt {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   11. TESTIMONIALS
   ========================================================================== */
.testimonials {
  background-color: #081C29;
  color: white;
}
.testimonials .section-title {
  color: white;
}
.testimonials .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.countries-extra-wrap {
  overflow: hidden;
  height: 0;
  transition: height 0.45s ease;
}
.countries-extra-wrap .countries-grid {
  margin-top: 1rem;
}

.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 0.75rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent);
}

.country-flag {
  font-size: 2.75rem;
  line-height: 1;
}

.country-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 1.3;
}

.countries-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.countries-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.countries-toggle-btn .toggle-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.countries-toggle-btn[aria-expanded=true] .toggle-arrow {
  transform: rotate(180deg);
}

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

.testi-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  fill: none;
  stroke: rgba(181, 144, 69, 0.3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}
.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.testi-text {
  font-size: var(--fs-base);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  color: white;
  font-size: var(--fs-base);
  margin-bottom: 0.25rem;
}
.author-info span {
  color: var(--color-accent);
  font-size: var(--fs-sm);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background-color: #082434;
  color: #94A3B8;
  padding: 5rem 0 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-about .logo {
  margin-bottom: 1.5rem;
}
.footer-about .logo img {
  height: 75px;
  max-width: 240px;
}
.footer-about p {
  margin-bottom: 1.5rem;
  font-size: var(--fs-base);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: var(--transition-normal);
}
.footer-socials a:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}
.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-title {
  color: white;
  font-size: var(--fs-md);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  font-size: var(--fs-base);
}
.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: var(--fs-base);
}
.footer-contact svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  gap: 1rem;
}
.footer-developer {
  color: #94A3B8;
}
.footer-developer a {
  color: var(--color-accent);
  font-weight: 600;
}
.footer-developer a:hover {
  color: white;
}

/* ==========================================================================
   13. FIXED ACTION BUTTONS
   ========================================================================== */
.fixed-btn {
  position: fixed;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  color: white;
  border: none;
  cursor: pointer;
}
.fixed-btn svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fixed-call {
  bottom: 2rem;
  left: 2rem;
  background-color: #25D366;
  animation: pulse-green 2s infinite;
}
.fixed-call:hover {
  background-color: #1EBE5D;
  transform: scale(1.1);
  color: white;
}

.fixed-top {
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.fixed-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fixed-top:hover {
  background-color: var(--color-primary-light);
  transform: scale(1.1) translateY(0);
  color: white;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* ==========================================================================
   14. RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1150px) {
  .nav-list {
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .topbar {
    display: none;
  }
  .header-inner {
    height: 80px;
  }
  nav {
    margin-right: 0;
  }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--color-surface);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-list.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--color-border);
    display: block;
  }
  .nav-item.mobile-dropdown-active .dropdown-menu {
    display: block;
  }
  .nav-link {
    padding: 1rem 1.5rem;
    justify-content: space-between;
    display: flex;
    width: 100%;
  }
  .nav-link::after {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--color-bg-light);
    padding: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .dropdown-item {
    padding: 0.75rem 2.5rem;
  }
  .services-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countries-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  :root {
    --btn-padding-y: 0.75rem;
    --btn-padding-x: 1.5rem;
  }
  .section-py {
    padding: 4rem 0;
  }
  .services-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .countries-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .fixed-btn {
    width: 50px;
    height: 50px;
  }
  .fixed-btn svg {
    width: 24px;
    height: 24px;
  }
  .fixed-call {
    bottom: 1rem;
    left: 1rem;
  }
  .fixed-top {
    bottom: 1rem;
    right: 1rem;
  }
}
/* ==========================================================================
   15. INNER PAGES (Shared Components)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #072232 100%);
  color: white;
  overflow: hidden;
  border-bottom: 4px solid var(--color-accent);
}
.page-hero::before, .page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 0;
  pointer-events: none;
}
.page-hero::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -120px;
}
.page-hero::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 67, 96, 0.85) 0%, rgba(7, 34, 50, 0.85) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero-title {
  color: white;
  font-size: var(--fs-lg);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-md);
  margin: 0 auto;
  max-width: 640px;
}
.page-hero--image {
  padding: 6rem 0 5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  padding: 0;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.breadcrumb a:hover {
  color: var(--color-accent);
}
.breadcrumb .active {
  color: var(--color-accent);
  font-weight: 700;
}
.breadcrumb .sep svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.breadcrumb--light {
  color: rgba(255, 255, 255, 0.7);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: flex-start;
}

.page-main {
  min-width: 0;
}

.page-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: var(--fs-md);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  position: relative;
  color: var(--color-primary);
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--color-text-main);
  transition: var(--transition-fast);
}
.cat-list a span {
  font-size: var(--fs-sm);
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}
.cat-list a:hover, .cat-list a.active {
  background: rgba(15, 67, 96, 0.08);
  color: var(--color-primary);
  padding-left: 1.25rem;
}
.cat-list a:hover span, .cat-list a.active span {
  background: var(--color-primary);
  color: white;
}

.recent-post {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--color-border);
}
.recent-post:first-child {
  padding-top: 0;
}
.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.recent-post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.recent-post-img:hover img {
  transform: scale(1.08);
}
.recent-post-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.recent-post-date {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}
.recent-post-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recent-post-title:hover {
  color: var(--color-accent);
}

.page-empty {
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--color-text-muted);
}
.page-empty svg {
  width: 52px;
  height: 52px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 1rem;
}
.page-empty p {
  font-size: var(--fs-md);
  font-weight: 600;
  margin: 0;
}

.pagination__wrap {
  margin-top: 3rem;
}
.pagination__wrap .list-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
}
.pagination__wrap li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-weight: 700;
  transition: var(--transition-fast);
}
.pagination__wrap li a:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pagination__wrap li.active a {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  cursor: default;
}
.pagination__wrap li.active a:hover {
  transform: none;
  box-shadow: none;
}

/* Blog detail (prose content area) */
.blog-prose {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-main);
  line-height: 1.8;
  font-size: var(--fs-base);
}
.blog-prose h1, .blog-prose h2, .blog-prose h3, .blog-prose h4, .blog-prose h5, .blog-prose h6 {
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.blog-prose h1:first-child,
.blog-prose h2:first-child,
.blog-prose h3:first-child {
  margin-top: 0;
}
.blog-prose h2 {
  font-size: calc(var(--fs-md) * 1.2);
}
.blog-prose h3 {
  font-size: var(--fs-md);
}
.blog-prose p {
  margin-bottom: 1.25rem;
}
.blog-prose ul, .blog-prose ol {
  margin: 0 0 1.25rem 1.25rem;
}
.blog-prose ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.blog-prose ol li {
  list-style: decimal;
  margin-bottom: 0.5rem;
}
.blog-prose img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.blog-prose a {
  color: var(--color-accent);
  font-weight: 600;
}
.blog-prose a:hover {
  text-decoration: underline;
  color: var(--color-accent-hover);
}
.blog-prose blockquote {
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--color-text-muted);
  font-style: italic;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.blog-prose table th, .blog-prose table td {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  text-align: left;
}
.blog-prose table th {
  background: var(--color-bg-light);
  color: var(--color-primary);
  font-weight: 700;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.detail-meta-category {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  background: rgba(181, 144, 69, 0.15);
  color: var(--color-accent);
  border-radius: 9999px;
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}
.detail-meta-category:hover {
  background: var(--color-accent);
  color: white;
}
.detail-meta-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}
.detail-meta-date svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.related-posts {
  margin-top: 3.5rem;
}
.related-posts-title {
  font-size: calc(var(--fs-md) * 1.1);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.related-posts-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ==========================================================================
   16. CONTACT PAGE
   ========================================================================== */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.contact-info-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 67, 96, 0.08);
  color: var(--color-primary);
}
.contact-info-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.contact-info-card-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.contact-info-card-value {
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--fs-base);
  word-break: break-word;
  display: block;
}
.contact-info-card-value--link {
  transition: var(--transition-fast);
}
.contact-info-card-value--link:hover {
  color: var(--color-accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card .contact-form-title {
  display: block;
  font-size: var(--fs-md);
  color: var(--color-primary);
  margin-bottom: 2rem;
}

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

.contact-form-group {
  display: flex;
  flex-direction: column;
}
.contact-form-group--full {
  grid-column: 1/-1;
  margin-bottom: 1.5rem;
}

.contact-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.contact-label span {
  color: #E11D48;
}

.contact-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--color-text-main);
  background: var(--color-bg-light);
  transition: var(--transition-fast);
}
.contact-input::-moz-placeholder {
  color: var(--color-text-muted);
}
.contact-input::placeholder {
  color: var(--color-text-muted);
}
.contact-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 4px rgba(15, 67, 96, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.contact-form-footer .btn-spinner {
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
  fill: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-response {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.contact-response--ok {
  color: #15803D;
}
.contact-response--err {
  color: #DC2626;
}

.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 420px;
  border: 1px solid var(--color-border);
}
.contact-map-wrap .contact-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ==========================================================================
   17. INNER PAGES RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .page-sidebar {
    position: static;
  }
  .contact-info-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-map-wrap,
  .contact-map-wrap .contact-map {
    min-height: 360px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 3.5rem 0 2.5rem;
  }
  .page-hero--image {
    padding: 4.5rem 0 3.5rem;
  }
  .contact-info-row {
    grid-template-columns: 1fr;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card,
  .blog-prose {
    padding: 1.75rem;
  }
  .widget {
    padding: 1.5rem;
  }
  .pagination__wrap li a {
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
  }
}
/* ============================================
   TABLE OF CONTENTS (Article Detail)
   ============================================ */
.blog-prose .table-of-contents {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--color-bg-light) 100%);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin: 0 0 2.5rem;
  box-shadow: var(--shadow-sm);
  /* Top-level items */
  /* Nested lists - indented with vertical guide line */
}
.blog-prose .table-of-contents > label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-prose .table-of-contents > label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: var(--color-accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><line x1='8' y1='6' x2='21' y2='6'/><line x1='8' y1='12' x2='21' y2='12'/><line x1='8' y1='18' x2='21' y2='18'/><line x1='3' y1='6' x2='3.01' y2='6'/><line x1='3' y1='12' x2='3.01' y2='12'/><line x1='3' y1='18' x2='3.01' y2='18'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><line x1='8' y1='6' x2='21' y2='6'/><line x1='8' y1='12' x2='21' y2='12'/><line x1='8' y1='18' x2='21' y2='18'/><line x1='3' y1='6' x2='3.01' y2='6'/><line x1='3' y1='12' x2='3.01' y2='12'/><line x1='3' y1='18' x2='3.01' y2='18'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.blog-prose .table-of-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-prose .table-of-contents > ul {
  margin-top: 0.25rem;
}
.blog-prose .table-of-contents li {
  position: relative;
  padding: 0;
  margin: 0.15rem 0;
}
.blog-prose .table-of-contents > ul > li > a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-main);
}
.blog-prose .table-of-contents a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.4rem 0.6rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 100%;
}
.blog-prose .table-of-contents a:hover, .blog-prose .table-of-contents a:focus-visible {
  color: var(--color-accent);
  background-color: rgba(181, 144, 69, 0.08);
  transform: translateX(3px);
  text-decoration: none;
}
.blog-prose .table-of-contents ul ul {
  margin: 0.25rem 0 0.5rem 0.5rem;
  padding-left: 1rem;
  border-left: 1px dashed var(--color-border);
}

@media (max-width: 640px) {
  .blog-prose .table-of-contents {
    padding: 1.25rem 1.25rem;
  }
  .blog-prose .table-of-contents > label {
    font-size: 0.95rem;
  }
  .blog-prose .table-of-contents a {
    font-size: 0.85rem;
  }
}
/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.page-hero-subtitle {
  margin-top: 1rem;
  font-size: var(--fs-md);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}

.service-detail-figure {
  margin: 0 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Inline CTA inside main content */
.service-inline-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-lg);
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.service-inline-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(181, 144, 69, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.service-inline-cta__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
  z-index: 1;
}
.service-inline-cta__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}
.service-inline-cta__body {
  z-index: 1;
}
.service-inline-cta__body h3 {
  margin: 0 0 0.25rem;
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
}
.service-inline-cta__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.5;
}
.service-inline-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 1;
}
.service-inline-cta__actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.service-inline-cta__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

/* Sticky Consultation Widget */
.consult-widget {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border: none;
  color: white;
  overflow: hidden;
  padding: 1.75rem;
}
.consult-widget::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(181, 144, 69, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.consult-widget__badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.consult-widget__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.consult-widget__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.consult-widget__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.consult-widget__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.95);
}
.consult-widget__list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.consult-widget__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.consult-widget__btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.consult-widget__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.consult-widget__btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.consult-widget__btn small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.consult-widget__btn strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.consult-widget__btn:hover {
  transform: translateY(-2px);
}
.consult-widget__btn--primary {
  background: var(--color-accent);
  color: white;
}
.consult-widget__btn--primary:hover {
  background: var(--color-accent-hover);
}
.consult-widget__btn--whatsapp {
  background: #25D366;
  color: white;
}
.consult-widget__btn--whatsapp:hover {
  background: #1ea855;
}

/* Other Services List in Sidebar */
.other-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.other-services-list > li > a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.other-services-list > li > a:hover {
  background: var(--color-bg-light);
}
.other-services-list > li > a:hover .other-services-list__cta {
  color: var(--color-accent);
  gap: 0.5rem;
}
.other-services-list > li > a:hover .other-services-list__thumb img {
  transform: scale(1.08);
}
.other-services-list__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-services-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.other-services-list__thumb svg {
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
}
.other-services-list__thumb--placeholder {
  background: var(--color-bg-light);
}
.other-services-list__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.other-services-list__body strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.other-services-list__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, gap 0.2s ease;
}
.other-services-list__cta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 992px) {
  .service-inline-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-inline-cta__icon {
    margin: 0 auto;
  }
  .service-inline-cta__actions {
    flex-direction: column;
    justify-content: center;
  }
  .service-inline-cta__actions .btn {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .service-inline-cta {
    padding: 1.5rem;
  }
  .consult-widget {
    padding: 1.5rem;
  }
}