/**
 * Final Point Mali Müşavirlik A.Ş. - Main Stylesheet
 *
 * All section styles, components, and responsive rules.
 * Pure Vanilla CSS - No frameworks.
 *
 * @package Merkez_Finans
 * @version 1.0.0
 */

/* ============================================================
   TABLE OF CONTENTS
   ============================================================
   1. HEADER & NAVIGATION
   2. MOBILE MENU
   3. HERO SECTION
   4. SERVICES SECTION
   5. WHY US SECTION
   6. ROADMAP / WORKING MODEL SECTION
   7. SECTORS SECTION
   8. STATS / COUNTER SECTION
   9. CTA SECTION
   10. BLOG SECTION
   11. CONTACT SECTION
   12. PAGE HEADER (inner pages)
   13. BLOG LAYOUT (index.php)
   14. SIDEBAR & WIDGETS
   15. FOOTER
   16. WHATSAPP FLOAT BUTTON
   17. BACK TO TOP
   18. SCROLL PROGRESS BAR
   19. PAGINATION
   20. BREADCRUMBS
   21. NO RESULTS
   22. FORM STYLES
   23. COMMENTS
   24. PRINT STYLES
   25. RESPONSIVE: 1200px+
   26. RESPONSIVE: 768px - 1023px (Tablet)
   27. RESPONSIVE: max 767px (Mobile)
   28. RESPONSIVE: max 479px (Small Mobile)
   29. ACCESSIBILITY: Reduced Motion
   ============================================================ */

/* ============================================================
   1. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid var(--color-border);
}

.site-header.is-scrolled .nav-link {
  color: var(--color-text-muted);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--color-navy-800);
  background: var(--color-soft);
}

.site-header.is-scrolled .header-phone {
  white-space: nowrap;
  color: var(--color-navy-700);
}

.site-header.is-scrolled .header-phone:hover {
  background: var(--color-soft);
}

.site-header.is-scrolled .logo-box {
  background: var(--gradient-navy);
}

.site-header.is-scrolled .logo-title {
  color: var(--color-navy-800);
}

.site-header.is-scrolled .logo-tagline {
  color: var(--color-text-muted);
}

.site-header.is-scrolled .hamburger-line {
  background: var(--color-navy-800);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 10px 0;
}

/* --- Site Branding / Logo --- */

.site-branding {
  flex-shrink: 0;
}

.site-logo img {
  max-height: 500px;
  max-width: 500px;
  width: auto;
  display: block;
  transition: filter var(--transition-base);
  object-fit: contain;
}

.site-header:not(.is-scrolled) .site-logo img {
  filter: brightness(0) invert(1);
}

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo-link:hover {
  opacity: 0.9;
}

.logo-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.site-header.is-scrolled .logo-box {
  background: var(--gradient-navy);
}

.logo-letter {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.site-header.is-scrolled .logo-title {
  color: var(--color-navy-800);
}

.logo-tagline {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.1;
  transition: color var(--transition-base);
}

.site-header.is-scrolled .logo-tagline {
  color: var(--color-text-muted);
}

/* --- Main Navigation --- */

.main-navigation {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition:
    color var(--transition-base),
    background var(--transition-base);
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link .dropdown-icon {
  transition: transform var(--transition-base), color var(--transition-base);
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-item:hover > .nav-link .dropdown-icon {
  transform: rotate(180deg);
}


/* Sub-menu */

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--color-border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    visibility var(--transition-base);
  z-index: var(--z-dropdown);
}

.nav-item:hover > .sub-menu,
.nav-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu .nav-link {
  color: var(--color-text-muted);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.sub-menu .nav-link:hover {
  color: var(--color-navy-800);
  background: var(--color-soft);
}


/* Nested Sub-menus */
.main-navigation .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-top: -8px;
  margin-left: 4px;
}
.main-navigation .sub-menu .nav-item:hover > .dropdown-icon {
  transform: rotate(-90deg);
}
.main-navigation .sub-menu .has-dropdown > .nav-link {
}
.main-navigation .sub-menu .has-dropdown > .nav-link .dropdown-icon {
  margin-left: auto;
  transform: rotate(-90deg);
}

/* --- Header Actions --- */

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.header-phone {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition:
    color var(--transition-base),
    background var(--transition-base);
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-phone svg {
  flex-shrink: 0;
}

.header-cta {
  font-size: var(--text-sm);
  padding: 12px 24px;
}

/* --- Mobile Menu Toggle --- */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  z-index: calc(var(--z-top) + 1);
  border-radius: var(--radius-md);
}

.mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:active {
  background: rgba(255, 255, 255, 0.15);
}

.site-header.is-scrolled .mobile-menu-toggle {
  background: var(--color-soft);
  border: 1px solid var(--color-border);
}

.site-header.is-scrolled .mobile-menu-toggle:active {
  background: var(--color-accent-200);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    background var(--transition-base);
}

.site-header.is-scrolled .hamburger-line {
  background: var(--color-navy-800);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   2. MOBILE MENU
   ============================================================ */

.mobile-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: block;
}

.mobile-navigation[hidden] {
  display: none !important;
}

.mobile-navigation.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  width: 100%;
  max-width: 100%;
  background: #FFFFFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: none;
}

.mobile-navigation.is-open .mobile-nav-inner {
  transform: translateY(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(241, 245, 249, 0.5); /* Very subtle border */
  margin-bottom: 16px;
}

.mobile-nav-header .site-logo {
  font-size: 26px;
  font-weight: 700;
  color: #1E293B; /* Deep navy/slate */
  letter-spacing: -0.03em;
  font-family: var(--font-heading, 'Manrope', sans-serif);
}

.mobile-nav-header .site-logo a {
  color: inherit;
}

.mobile-nav-header .site-logo img {
  max-height: 500px;
  width: auto;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #334155;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 0;
  margin-right: -8px;
}

.mobile-nav-close:hover {
  opacity: 0.7;
  background: transparent;
  transform: none;
  border-color: transparent;
}

.mobile-nav-close svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.2 !important;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: auto;
  padding: 16px 32px;
}

.mobile-nav-menu .nav-link {
  color: #1E293B;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  padding: 12px 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  background: transparent;
  border: none;
}

.mobile-nav-menu .nav-link .menu-icon {
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8; /* Light gray for icons */
  width: 24px;
}

.mobile-nav-menu .nav-link .menu-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.mobile-nav-menu .nav-link:hover {
  color: #0F172A;
  opacity: 0.8;
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.mobile-nav-menu .sub-menu {
  position: static;
  display: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: transparent;
  padding-left: 40px;
  margin-top: 0;
}

.mobile-nav-menu .has-dropdown.is-expanded > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-menu .has-dropdown > .nav-link {
}

.mobile-nav-menu .has-dropdown > .nav-link .dropdown-icon {
  margin-left: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 4px;
  box-sizing: content-box;
  transition: transform 0.3s ease;
}

.mobile-nav-menu .has-dropdown.is-expanded > .nav-link .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-nav-menu .sub-menu .nav-link {
  font-size: 1rem;
  padding: 10px 0;
  background: transparent;
  border: none;
}

.mobile-nav-footer {
  margin-top: 32px;
  padding: 24px 32px 32px;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  color: var(--color-navy-700);
  font-weight: 600;
  font-size: 1.125rem;
  background: var(--color-accent-50);
  border-radius: 100px;
  transition: opacity 0.3s ease;
  border: none;
}

.mobile-nav-phone:hover {
  background: var(--color-accent-100);
  opacity: 0.8;
  transform: none;
  box-shadow: none;
  color: var(--color-navy-800);
}

.mobile-nav-phone svg {
  color: var(--color-accent);
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  justify-content: center;
  border-radius: 100px;
  font-size: 1.125rem;
  font-weight: 600;
  background: var(--color-accent);
  border: none;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav-cta:hover {
  opacity: 0.9;
}

/* WhatsApp float adjustments for mobile menu */
body.menu-is-open .whatsapp-float {
  display: none !important;
}

/* ============================================================
   3. HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Video Background */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fallback-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: var(--gradient-fade-white);
  z-index: 2;
}

/* Hero Content */

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 128px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

/* Hero Badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Hero Title */

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-accent {
  color: var(--color-accent);
}

/* Hero Subtitle */

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Hero CTAs */

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-cta-primary svg {
  transition: transform var(--transition-base);
}

.hero-cta-primary:hover svg {
  transform: translateX(4px);
}

/* Hero Trust Badges */

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  font-weight: 500;
}

.trust-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Hero Floating Cards */

.hero-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  height: 100%;
}

.floating-card {
  /* position: absolute removed */
  width: 280px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  transition: background var(--transition-base);
}

.floating-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(46, 168, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-icon svg {
  color: var(--color-accent);
}









/* ============================================================
   4. SERVICES SECTION
   ============================================================ */

.services-section {
  background: rgba(238, 247, 255, 0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
  font-size: 24px;
}

.service-card .card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card .card-title {
  font-size: var(--text-lg);
  margin-bottom: 12px;
}

.service-card .card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: gap var(--transition-base);
}

.service-card .card-link:hover {
  gap: 12px;
}

.service-card .card-link svg {
  transition: transform var(--transition-base);
}

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

/* ============================================================
   5. WHY US SECTION
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Why Image */

.why-image-wrapper {
  position: relative;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.why-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 58, 0.4), transparent);
}

/* Stats Card Overlay */

.why-stats-card {
  position: absolute;
  bottom: -24px;
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(217, 230, 242, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(0);
}

.stats-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-icon svg {
  color: var(--color-white);
}

.stats-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy-800);
  line-height: 1;
}

.stats-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Why Features Grid */

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.why-feature:hover .why-feature-icon {
  background: var(--color-accent);
  box-shadow: var(--shadow-button);
}

.why-feature-icon svg {
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.why-feature:hover .why-feature-icon svg {
  color: var(--color-white);
}

.why-feature-text h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   6. ROADMAP / WORKING MODEL SECTION
   ============================================================ */

.roadmap-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(238, 247, 255, 0.6) 0%,
    var(--color-white) 100%
  );
  pointer-events: none;
}

.roadmap-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Horizontal connecting line between circles */
.roadmap-line {
  position: absolute;
  top: 79px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-border) 0%,
    var(--color-accent-300) 50%,
    var(--color-border) 100%
  );
  z-index: 0;
}

.roadmap-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  z-index: 1;
}

/* Circle wrapper */
.roadmap-circle {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-white);
  
  border: 2px solid var(--step-color, var(--color-border));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-soft);

}

.roadmap-step:hover .roadmap-circle {
  border-color: var(--step-color, var(--color-accent));
  box-shadow:
    0 0 0 8px rgba(46, 168, 255, 0.1),
    var(--shadow-card);
  transform: scale(1.05);
}

/* Alternate circle accent colors */
.roadmap-step[data-step="1"] .roadmap-circle {
  border-color: var(--step-color, var(--color-accent-300));
}

.roadmap-step[data-step="2"] .roadmap-circle {
  border-color: var(--step-color, var(--color-navy-400));
}

.roadmap-step[data-step="3"] .roadmap-circle {
  border-color: var(--step-color, var(--color-accent));
}
.roadmap-step[data-step="4"] .roadmap-circle {
  border-color: var(--step-color, var(--color-border));
}

.roadmap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--step-color, var(--color-navy-600));
  transition: color var(--transition-base);
}

.roadmap-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.roadmap-icon i {
  font-size: 32px;
}

.roadmap-step:hover .roadmap-icon {
  color: var(--step-color, var(--color-accent));
}

/* Step content below circle */
.roadmap-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.roadmap-step-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy-800);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.roadmap-number {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent);
}

.roadmap-step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin: 0;
}

/* Pulse animation on circles */
.roadmap-circle::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  
  border: 2px solid var(--step-color, var(--color-accent));
  opacity: 0;
  animation: roadmapPulse 3s ease-in-out infinite;

}

.roadmap-step[data-step="1"] .roadmap-circle::after {
  animation-delay: 0.75s;
}

.roadmap-step[data-step="2"] .roadmap-circle::after {
  animation-delay: 1.5s;
}

.roadmap-step[data-step="3"] .roadmap-circle::after {
  animation-delay: 2.25s;
}
.roadmap-step[data-step="4"] .roadmap-circle::after {
  animation-delay: 3s;
}

@keyframes roadmapPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

/* ============================================================
   6b. SERVICES ARCHIVE & SINGLE PAGE
   ============================================================ */

.services-archive {
  background: var(--color-white);
}

.services-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-archive-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(217, 230, 242, 0.5);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition-base);
  height: auto;
  align-self: stretch;
}

.service-archive-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--color-accent-200);
}

.service-archive-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.service-archive-card:hover .service-archive-icon {
  background: var(--color-accent);
  box-shadow: var(--shadow-button);
}

.service-archive-icon svg,
.service-archive-icon i {
  color: var(--color-accent);
  font-size: 28px;
  transition: color var(--transition-base);
}

.service-archive-card:hover .service-archive-icon svg,
.service-archive-card:hover .service-archive-icon i {
  color: var(--color-white);
}

.service-archive-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service-archive-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-archive-title a:hover {
  color: var(--color-accent);
}

.service-archive-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-archive-excerpt p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-archive-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-archive-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-navy-700);
}

.service-archive-features li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.service-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-base);
  margin-top: auto;
}

.service-archive-link:hover {
  gap: 12px;
}

.service-archive-link svg {
  transition: transform var(--transition-base);
}

.service-archive-link:hover svg {
  transform: translateX(4px);
}

/* Services footer button */
.services-footer {
  text-align: center;
}

/* --- Service Detail Page --- */

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.service-detail-main {
  min-width: 0;
}

.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-card);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-content {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-dark);
}

.service-detail-content p {
  margin-bottom: 20px;
}

.service-detail-content h2,
.service-detail-content h3 {
  font-weight: 700;
  color: var(--color-navy-800);
  margin: 32px 0 16px;
}

.service-detail-content ul,
.service-detail-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.service-detail-content li {
  margin-bottom: 8px;
}

/* Service Features */
.service-detail-features {
  margin-top: 48px;
  padding: 32px;
  background: var(--color-soft);
  border-radius: var(--radius-xl);
}

.service-detail-features h3 {
  font-size: var(--text-xl);
  color: var(--color-navy-800);
  margin-bottom: 20px;
}

.service-detail-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-detail-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--color-navy-700);
  padding: 8px 0;
}

.service-detail-features li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Service Process */
.service-detail-process {
  margin-top: 48px;
}

.service-detail-process h3 {
  font-size: var(--text-xl);
  color: var(--color-navy-800);
  margin-bottom: 24px;
}

.service-process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.service-process-step:hover {
  border-color: var(--color-accent-200);
  box-shadow: var(--shadow-soft);
}

.service-process-number {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  min-width: 36px;
}

.service-process-step p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Service Detail Sidebar */
.service-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-cta-card {
  background: var(--gradient-navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--color-white);
}

.service-cta-card h4 {
  font-size: var(--text-lg);
  margin-bottom: 12px;
  color: var(--color-white);
}

.service-cta-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-cta-card .btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
}

.service-cta-card .btn-primary:hover {
  background: var(--color-accent-600);
}

.service-cta-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.service-cta-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-contact-info {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-contact-info h4 {
  font-size: var(--text-base);
  color: var(--color-navy-800);
  margin-bottom: 16px;
}

.service-contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex-wrap: nowrap;
}

.service-contact-item svg,
.service-contact-item i {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.service-contact-item a,
.service-contact-item span {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  word-break: break-word;
}

.service-contact-item a:hover {
  color: var(--color-accent);
}

/* Related Services */
.related-services {
  background: var(--color-soft);
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .related-header {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================================
   7. SECTORS SECTION
   ============================================================ */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sector-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(217, 230, 242, 0.5);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition-base);
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-navy);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

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

.sector-icon-wrapper {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition-base);
}

.sector-card:hover .sector-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}

.sector-icon-wrapper svg {
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.sector-card:hover .sector-icon-wrapper svg {
  color: var(--color-white);
}

.sector-title {
  position: relative;
  z-index: 1;
  font-size: var(--text-xl);
  color: var(--color-navy-800);
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.sector-card:hover .sector-title {
  color: var(--color-white);
}

.sector-desc {
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color var(--transition-base);
}

.sector-card:hover .sector-desc {
  color: rgba(255, 255, 255, 0.8);
}

.sector-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  transition:
    color var(--transition-base),
    gap var(--transition-base);
}

.sector-card:hover .sector-link {
  color: var(--color-white);
}

.sector-link:hover {
  gap: 12px;
}

.sector-link svg {
  transition: transform var(--transition-base);
}

.sector-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   8. STATS / COUNTER SECTION
   ============================================================ */

.stats-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-navy);
  z-index: 0;
}

.stats-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../images/cta-bg.jpg") center/cover;
  opacity: 0.1;
}

.stats-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 27, 58, 0.9),
    rgba(7, 27, 58, 0.7)
  );
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

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

.stat-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-icon svg {
  color: var(--color-accent);
}

.stat-value {
  margin-bottom: 8px;
}

.stat-number,
.stat-suffix {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: 4px;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ============================================================
   9. CTA SECTION
   ============================================================ */

.cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
  z-index: 0;
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../images/cta-bg.jpg") center/cover;
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.cta-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
}

.cta-badge svg {
  color: var(--color-white);
}

.cta-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary svg {
  transition: transform var(--transition-base);
}

.cta-btn-primary:hover svg {
  transform: translateX(4px);
}

.cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   10. BLOG SECTION
   ============================================================ */

.blog-section {
  background: rgba(238, 247, 255, 0.5);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.blog-preview-image {
  position: relative;
  height: 208px;
  overflow: hidden;
}

.blog-preview-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-preview-card:hover .blog-preview-image img {
  transform: scale(1.05);
}

.blog-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 58, 0.4), transparent);
}

.blog-preview-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-navy-800);
}

.blog-preview-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-preview-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.blog-preview-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-preview-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-preview-title a:hover {
  color: var(--color-accent);
}

.blog-preview-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-preview-excerpt p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-preview-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: gap var(--transition-base);
}

.blog-preview-read-more:hover {
  gap: 12px;
}

.blog-preview-footer {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   11. CONTACT SECTION
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
}

.contact-info .section-title {
  font-size: var(--text-3xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--color-accent);
}

.contact-detail strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy-800);
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  word-break: break-word;
}

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

/* Contact Form Wrapper */

.contact-form-wrapper {
  background: var(--color-soft);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(217, 230, 242, 0.5);
}

/* ============================================================
   12. PAGE HEADER (inner pages)
   ============================================================ */

.page-header {
  padding: 120px 0 48px;
  text-align: center;
}

.page-header .page-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-header .breadcrumb-list {
  justify-content: center;
}

.page-header .breadcrumbs,
.page-header .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item.current {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   13. BLOG LAYOUT (index.php)
   ============================================================ */

.blog-layout {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.blog-grid {
  display: grid;
  gap: 48px;
}

.blog-grid.has-sidebar {
  grid-template-columns: 1fr 320px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(217, 230, 242, 0.5);
  transition: all var(--transition-base);
  height: auto;
  align-self: stretch;
}

.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
}

@media (min-width: 768px) {
  .blog-card .blog-card-content {
    padding: 32px;
  }
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.blog-card-image a {
  display: block;
  height: 100%;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-image .blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 58, 0.3), transparent);
}

.blog-card-image .blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy-800);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: var(--color-navy-800);
}

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.blog-card-excerpt p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   14. SIDEBAR & WIDGETS
   ============================================================ */

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(217, 230, 242, 0.5);
}

.widget-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-soft);
}

/* Search Form Widget */

.search-form {
  display: flex;
  gap: 0;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: var(--color-white);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  outline: none;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.search-field::placeholder {
  color: var(--color-text-muted);
}

.search-field:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(46, 168, 255, 0.15);
}

.search-submit {
  padding: 0 16px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
  cursor: pointer;
  font-weight: 600;
}

.search-submit:hover {
  background: var(--color-accent-500);
}

/* Category List Widget */

.widget-category-list {
  list-style: none;
}

.widget-category-list li {
  border-bottom: 1px solid var(--color-border);
}

.widget-category-list li:last-child {
  border-bottom: none;
}

.widget-category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition:
    color var(--transition-base),
    padding-left var(--transition-base);
}

.widget-category-list a:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

.widget-category-list .cat-item-count {
  background: var(--color-soft);
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-navy-800);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 48px;
  padding: 64px 0 48px;
}

/* Footer Branding */

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo-link img, .footer-logo img, .footer-logo-img { max-height: 500px; max-width: 500px; width: auto; display: block; }
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-link .logo-box {
  background: var(--color-accent);
}

.footer-logo-link .logo-title {
  color: var(--color-white);
  font-size: 1.8rem;
}

.footer-logo-link .logo-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.footer-description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Footer Social Icons */

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-base);
}

.social-icon:hover {
  background: var(--color-accent);
}

/* Footer Headings */

.footer-heading {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

/* Footer Links */

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

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

/* Footer Contact */

.footer-contact {
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  word-break: break-word;
}

.contact-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

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

/* Footer Newsletter */

.footer-newsletter {
  margin-top: 24px;
}

.newsletter-heading {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.newsletter-field {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  color: var(--color-white);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-base);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.newsletter-submit {
  width: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
  cursor: pointer;
}

.newsletter-submit:hover {
  background: var(--color-accent-500);
}

/* Footer Bottom Bar */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

.copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   16. WHATSAPP FLOAT BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-top);
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   17. BACK TO TOP
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: var(--z-top);
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-button);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent-500);
  transform: translateY(-2px);
}

/* ============================================================
   18. SCROLL PROGRESS BAR
   ============================================================ */

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 1;
}

/* ============================================================
   19. PAGINATION
   ============================================================ */

.pagination-nav {
  margin-top: 48px;
}

.pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  margin: 0 4px;
}

.pagination-nav .page-numbers:hover {
  background: var(--color-soft);
  color: var(--color-navy-800);
  border-color: var(--color-accent);
}

.pagination-nav .page-numbers.current {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  font-weight: 600;
}

.pagination-nav .page-numbers.dots {
  border: none;
  background: transparent;
}

/* ============================================================
   20. BREADCRUMBS
   ============================================================ */

.breadcrumbs {
  margin-bottom: 16px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: var(--text-sm);
}

.breadcrumbs a {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

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

.breadcrumb-sep {
  color: var(--color-border);
  font-weight: 300;
}

.breadcrumb-item.current {
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ============================================================
   21. NO RESULTS
   ============================================================ */

.no-results {
  text-align: center;
  padding: 64px 0;
}

.no-results-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-soft);
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.no-results-icon svg {
  color: var(--color-accent);
}

.no-results h2 {
  font-size: var(--text-xl);
  color: var(--color-navy-800);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--color-text-muted);
}

/* ============================================================
   22. FORM STYLES
   ============================================================ */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy-800);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  outline: none;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.form-control::placeholder {
  color: rgba(102, 112, 133, 0.6);
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(46, 168, 255, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox */

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================================================
   23. COMMENTS
   ============================================================ */

.comments-area {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.comments-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 32px;
}

.comment-list {
  list-style: none;
}

.comment-list li {
  margin-bottom: 32px;
}

.comment-body {
  display: flex;
  gap: 16px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-meta {
  margin-bottom: 8px;
}

.comment-author .fn {
  font-weight: 600;
  color: var(--color-navy-800);
}

.comment-metadata {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.comment-metadata a {
  color: var(--color-text-muted);
}

.comment-content {
  font-size: var(--text-base);
  color: var(--color-text-dark);
  line-height: 1.6;
}

.comment-awaiting-moderation {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-style: italic;
}

.reply a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
}

/* ============================================================
   24. PRINT STYLES
   ============================================================ */

@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .back-to-top,
  .scroll-progress,
  .mobile-menu-toggle,
  .pagination-nav {
    display: none !important;
  }

  .site-main {
    padding-top: 0 !important;
  }
}

/* ============================================================
   25. RESPONSIVE: 1200px+ (Large Desktop)
   ============================================================ */

/* Tablet container */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 720px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}

/* ============================================================
   26. RESPONSIVE: 768px - 1023px (Tablet)
   ============================================================ */

@media (max-width: 1023px) {
  /* Header */
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-actions {
    display: none !important;
  }
  .header-inner {
    gap: 12px;
  }

  .header-phone {
  white-space: nowrap;
    display: none;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: var(--text-xs);
  }

  .header-cta {
    font-size: var(--text-sm);
    padding: 8px 16px;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-cards {
    align-items: center;
    margin-top: 40px;
  }

  .floating-card {
    padding: 12px 20px;
    font-size: var(--text-base);
    max-width: 100%;
    width: 280px;
  text-decoration: none;
    justify-content: center;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .sector-card {
    padding: 20px;
  }

  /* Services Archive Tablet */
  .services-archive-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Why Us */
  .why-grid {
    gap: 48px;
  }

  /* Roadmap */
  .roadmap-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .roadmap-line {
    left: 10%;
    right: 10%;
    top: 71px;
  }

  .roadmap-circle {
    width: 80px;
    height: 80px;
  }

  .roadmap-icon svg {
    width: 26px;
    height: 26px;
  }
  .roadmap-icon i {
    font-size: 26px;
  }

  .roadmap-step {
    padding: 0 8px;
  }

  .roadmap-step-title {
    font-size: var(--text-base);
  }

  .roadmap-step-desc {
    font-size: var(--text-xs);
    max-width: 100%;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section titles */
  .section-title {
    font-size: var(--text-2xl);
  }

  .section-description {
    font-size: var(--text-base);
  }

  /* Stats */
  .stats-grid {
    gap: 32px;
  }

  /* Blog */
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    gap: 48px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-grid .footer-brand {
    max-width: 400px;
  }
}

/* ============================================================
   27. RESPONSIVE: max 767px (Mobile)
   ============================================================ */

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Header */
  .main-navigation {
    display: none;
  }

  .header-actions .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  

  .header-inner {
    min-height: 64px;
    height: auto;
    padding: 10px 0;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
  white-space: nowrap;
    width: 100%;
  }

  .hero-trust {
    gap: 16px;
  }

  .trust-item {
    font-size: var(--text-xs);
  }

  /* Floating Cards (mobile inline) */
  .hero-cards {
    margin-top: 32px;
    gap: 16px;
  }

  .floating-card {
    padding: 12px 16px;
    font-size: var(--text-sm);
    max-width: 100%;
    width: 100%;
  }






  .floating-icon {
    width: 28px;
    height: 28px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-image-wrapper {
    order: 2;
  }

  .why-content {
    order: 1;
  }

  .why-stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -24px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  /* Services Archive */
  .services-archive-grid {
    grid-template-columns: 1fr;
  }

  .service-archive-card {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  /* Service Detail */
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    order: -1;
  }

  .service-detail-features ul {
    grid-template-columns: 1fr;
  }

  /* Roadmap */
  .roadmap-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0;
  }

  .roadmap-circle {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .roadmap-icon svg {
    width: 28px;
    height: 28px;
  }
  .roadmap-icon i {
    font-size: 28px;
  }

  .roadmap-content {
    align-items: flex-start;
    padding-top: 8px;
  }

  .roadmap-step-title {
    font-size: var(--text-lg);
  }

  .roadmap-step-desc {
    max-width: 100%;
  }

  .roadmap-circle::after {
    display: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-section {
    padding: 64px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-number,
  .stat-suffix {
    font-size: var(--text-3xl);
  }

  /* CTA */
  .cta-section {
    padding: 64px 0;
  }

  .cta-title {
    font-size: var(--text-2xl);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
  white-space: nowrap;
    width: 100%;
    justify-content: center;
  }

  /* Section titles on mobile */
  .section-title {
    font-size: var(--text-2xl);
  }

  .section-description {
    font-size: var(--text-base);
  }

  /* Blog */
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Blog Layout (index) */
  .blog-grid.has-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    order: 2;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-content {
    padding: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand .footer-logo-link img, .footer-logo img, .footer-logo-img { max-height: 500px; max-width: 500px; width: auto; display: block; }
.footer-logo-link {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact .contact-item {
    justify-content: center;
  }

  .footer-newsletter {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Page Header */
  .page-header {
    padding: 96px 0 40px;
  }

  .page-header .page-title {
    font-size: var(--text-2xl);
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  /* Back to top */
  .back-to-top {
    bottom: 76px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   28. RESPONSIVE: max 479px (Small Mobile)
   ============================================================ */

@media (max-width: 479px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Hero */
  .hero-badge {
    font-size: var(--text-xs);
    padding: 6px 12px;
  }

  .hero-title {
    font-size: var(--text-2xl);
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  /* Hero cards compact on small screens */
  .hero-cards {
  }

  .floating-card {
    padding: 10px 16px;
  }

  .floating-icon {
    width: 24px;
    height: 24px;
  }

  /* Section titles */
  .section-title {
    font-size: var(--text-xl);
  }

  .section-description {
    font-size: var(--text-sm);
  }

  /* Cards */
  .card {
    padding: 20px;
  }

  /* Stats single column */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Buttons in key areas full width on small screens */
  .hero-ctas .btn,
  .cta-buttons .btn,
  .contact-form-wrapper .btn[type="submit"],
  .footer-newsletter .btn {
  white-space: nowrap;
    width: 100%;
    justify-content: center;
  }

  /* Form */
  .contact-form-wrapper {
    padding: 20px;
    border-radius: var(--radius-lg);
  }

  /* Pagination */
  .pagination-nav .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: var(--text-xs);
    margin: 0 2px;
  }

  /* Footer */
  .footer-heading {
    font-size: var(--text-sm);
  }

  .footer-legal,
  .footer-legal ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================================
   29. ACCESSIBILITY: REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .animate-float {
    animation: none;
  }
}

/* ============================================================
   HIGH CONTRAST MODE SUPPORT
   ============================================================ */

@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--color-border);
  }

  .form-control {
    border: 2px solid var(--color-border);
  }

  .btn-primary {
    border: 2px solid var(--color-accent);
  }
}

/* ============================================================
   SOCIAL SHARE HOVER
   ============================================================ */

.social-share-link:hover {
  color: var(--color-primary-500) !important;
}

/* General Widget Styles */
.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: var(--color-navy-800);
  transition: color var(--transition-base);
  display: block;
}

.sidebar-widget ul li a:hover {
  color: var(--color-accent);
}

.sidebar-widget .recentcomments {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sidebar-widget .recentcomments a {
  display: inline;
}

.sidebar-widget select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-text-dark);
  font-size: var(--text-sm);
}

/* ============================================================
   15. ABOUT PAGE (HAKKIMIZDA)
   ============================================================ */
.about-hero-section {
  padding-top: 120px;
  padding-bottom: 96px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}
.about-hero-badge {
  margin-bottom: 16px;
}
.about-history-section {
  padding: 96px 0;
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 768px) {
  .history-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-values-section {
  padding: 128px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value-card {
  transition: all 0.5s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(7, 27, 58, 0.1);
}
.about-team-section {
  padding: 128px 0;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.team-member-card {
  width: 100%;
  max-width: 320px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(7, 27, 58, 0.05);
  transition: all 0.4s ease;
  height: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(7, 27, 58, 0.15);
}
.team-member-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}
.team-member-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-text-muted);
}
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 58, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-member-card:hover .team-social-overlay {
  opacity: 1;
}
.team-social-overlay a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.team-member-card:hover .team-social-overlay a {
  transform: translateY(0);
}
.team-social-overlay a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.team-social-overlay a:nth-child(2) {
  transition-delay: 0.1s;
}
.team-member-info {
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-member-name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 4px;
}
.team-member-role {
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 16px;
  display: block;
}
.team-member-desc {
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 0;
}
.team-member-desc p { margin-bottom: 0; }
.about-cta-section {
  padding: 96px 0;
}
.about-cta-blob {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.1;
  filter: blur(64px);
}
.about-cta-blob-1 {
  top: 0;
  right: 0;
  transform: translate(33%, -50%);
}
.about-cta-blob-2 {
  bottom: 0;
  left: 0;
  transform: translate(-33%, 50%);
}
@media (min-width: 640px) {
  .about-cta-actions {
    flex-direction: row !important;
  }
}

/* ============================================================
   16. FAQ PAGE (SSS)
   ============================================================ */
.faq-hero-section {
  padding: 160px 0 96px;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.faq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  background: linear-gradient(to left, var(--color-accent), transparent 50%);
}
.faq-search-wrapper {
  max-width: 672px;
  margin: 0 auto;
  position: relative;
}
.faq-search-box {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.faq-search-box:focus-within {
  box-shadow: 0 0 0 3px rgba(46, 168, 255, 0.2);
  border-color: var(--color-accent);
}
.faq-search-input {
  flex: 1;
  padding: 24px 16px;
  border: none;
  outline: none;
  font-size: var(--text-base);
  background: transparent;
}
.faq-search-btn {
  margin-right: 16px;
  background: var(--color-navy-800);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.faq-search-btn:hover {
  background: var(--color-accent);
}

.faq-content-section {
  padding: 80px 0;
  background: var(--color-soft);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 3fr 9fr;
  }
}
.faq-sidebar-nav {
  position: sticky;
  top: 100px;
}
.faq-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  color: var(--color-text-dark);
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.faq-cat-link:hover, .faq-cat-link.active {
  background: var(--color-white);
  border-color: var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-cat-link.active {
  color: var(--color-navy-800);
  border-color: var(--color-accent);
}
.faq-cat-link i, .faq-cat-link svg {
  color: var(--color-text-muted);
}
.faq-cat-link.active i, .faq-cat-link.active svg {
  color: var(--color-accent);
}

.faq-category-block {
  margin-bottom: 64px;
}
.faq-category-title {
  font-size: var(--text-2xl);
  color: var(--color-navy-800);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-category-title::before {
  content: '';
  display: block;
  width: 6px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 4px;
}

.accordion-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--color-navy-800);
  font-weight: 600;
  font-size: var(--text-lg);
}
.accordion-header i, .accordion-header .faq-chevron {
  color: var(--color-accent);
  transition: transform 0.3s ease;
}
.accordion-content {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  color: var(--color-text-dark);
}
.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding-bottom: 24px;
}
.accordion-item.active .accordion-header i, .accordion-item.active .accordion-header .faq-chevron {
  transform: rotate(180deg);
}

.faq-mid-cta {
  background: var(--color-navy-800);
  border-radius: 24px;
  padding: 32px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .faq-mid-cta {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.faq-bottom-section {
  padding: 96px 0;
  background: var(--color-white);
  text-align: center;
}
.faq-bottom-icon {
  width: 64px;
  height: 64px;
  background: rgba(46, 168, 255, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 32px;
}
.faq-bottom-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .faq-bottom-actions {
    flex-direction: row;
  }
}
.faq-bottom-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.faq-bottom-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-800);
  transition: all 0.3s ease;
}
.faq-bottom-phone:hover .faq-bottom-phone-icon {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.faq-bottom-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  display: none;
}
@media (min-width: 768px) {
  .faq-bottom-divider {
    display: block;
  }
}

/* ============================================================
   17. RELATED SERVICES SLIDER
   ============================================================ */
.related-services-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  /* Hide scrollbar for cleaner look */
  scrollbar-width: none; 
}
.related-services-slider::-webkit-scrollbar {
  display: none; 
}
.related-services-slider .slider-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .related-services-slider .slider-item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (min-width: 1024px) {
  .related-services-slider .slider-item {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.related-slider-nav {
  display: flex;
  gap: 16px;
}

.slider-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-navy-800);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-accent);
  transition: all var(--transition-base);
  margin-top: auto;
  padding-top: 16px;
}

.blog-card-read-more svg {
  transition: transform var(--transition-base);
}

.blog-card-read-more:hover {
  color: var(--color-accent-600);
}

.blog-card-read-more:hover svg {
  transform: translateX(4px);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.mobile-nav-header .site-logo {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy-800);
}

.mobile-nav-header .site-logo img {
  max-height: 500px;
  width: auto;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-navy-800);
  cursor: pointer;
  transition: all var(--transition-base);
}

.mobile-nav-close:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: rotate(90deg);
}

.mobile-nav-inner > .mobile-nav-menu,
.mobile-nav-inner > .mobile-nav-footer {
  padding: 0 24px;
}

body.menu-is-open .site-header, body.menu-is-open .back-to-top { display: none !important; }

.whatsapp-float { z-index: 10000 !important; }

.related-posts-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-soft);
}

.related-posts-slider::-webkit-scrollbar {
  height: 8px;
}

.related-posts-slider::-webkit-scrollbar-track {
  background: var(--color-soft);
  border-radius: 4px;
}

.related-posts-slider::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 4px;
}

.related-posts-slider .slider-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .related-posts-slider .slider-item {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .related-posts-slider .slider-item {
    flex: 0 0 calc(33.333% - 16px);
  }
}



/* --- Fix for Floating Cards Alignment Mobile --- */
@media (max-width: 991px) {
  .hero-cards {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .floating-card {
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 400px;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  .floating-card {
    max-width: 100% !important;
  }
}


@media (max-width: 1200px) {
  .header-phone {
    display: none !important;
  }
}





/* Utility Classes */
.text-center { text-align: center !important; }

/* ============================================================
   FINALPOINT LANGUAGE CONTROL V8
   Fixed EN/TR buttons for desktop, tablet and mobile.
   ============================================================ */
.fp-language-control {
  position: relative;
  flex: 0 0 auto;
}

.fp-language-source {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.fp-language-control--desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fp-language-buttons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 20px rgba(7, 27, 58, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.is-scrolled .fp-language-buttons {
  border-color: rgba(7, 27, 58, 0.10);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 27, 58, 0.08);
}

.fp-language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease, opacity .18s ease;
}

.fp-language-button:hover,
.fp-language-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .fp-language-button:hover,
.site-header.is-scrolled .fp-language-button:focus-visible {
  background: rgba(7, 27, 58, 0.08);
}

.fp-language-button.is-active {
  background: #0b1220;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.22);
}

.fp-language-button.is-loading {
  opacity: 0.65;
}

.fp-language-label,
.fp-language-name {
  display: none;
}

.fp-language-control--mobile {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-bottom: 6px;
  padding: 14px;
  border: 1px solid rgba(7, 27, 58, 0.10);
  border-radius: 16px;
  background: #f5f8fc;
}

.fp-language-control--mobile .fp-language-label {
  display: block;
  color: var(--color-navy-800);
  font-size: 13px;
  font-weight: 700;
}

.fp-language-control--mobile .fp-language-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  padding: 6px;
  border-color: rgba(7, 27, 58, 0.10);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(7, 27, 58, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fp-language-control--mobile .fp-language-button {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--color-navy-800);
  font-size: 16px;
  font-weight: 700;
}

.fp-language-control--mobile .fp-language-name {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
}

.fp-language-control--mobile .fp-language-button:hover,
.fp-language-control--mobile .fp-language-button:focus-visible {
  background: #eef3f8;
}

.fp-language-control--mobile .fp-language-button.is-active {
  background: #0b1220;
  color: #ffffff;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .header-actions {
    gap: 8px;
  }

  .fp-language-control--desktop .fp-language-button {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .header-phone {
    padding-left: 8px;
    padding-right: 8px;
  }

  .header-phone span {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fp-language-control--desktop .fp-language-buttons {
    padding: 3px;
  }

  .fp-language-control--desktop .fp-language-button {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .fp-language-control--desktop {
    display: none !important;
  }
}


/* FINALPOINT LANGUAGE CONTROL V9 — deterministic SVG flags */
.fp-language-button .fp-language-flag {
  display: block;
  width: 20px;
  height: 14px;
  flex: 0 0 20px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}

.fp-language-control--desktop .fp-language-buttons {
  min-width: 76px;
  min-height: 42px;
  justify-content: center;
}

.fp-language-control--desktop .fp-language-button {
  flex: 0 0 32px;
}

.fp-language-control--mobile .fp-language-button .fp-language-flag {
  width: 22px;
  height: 14px;
  flex-basis: 22px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .fp-language-control--desktop .fp-language-buttons {
    min-width: 70px;
    min-height: 38px;
  }
}
