/* ===== CSS VARIABLES ===== */
:root {
  --clr-primary: #6B4EFF;
  --clr-primary-dark: #4F36D6;
  --clr-text: #131022;
  --clr-muted: #6B6E76;
  --clr-border: #E5E1FA;
  --clr-bg: #FFFFFF;
  --clr-hero-tint: #F3F0FF;
  
  /* Border radius */
  --radius-large: 24px;
  --radius-small: 14px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 24px rgba(17, 12, 46, 0.08);
  --shadow-float: 0 8px 20px rgba(17, 12, 46, 0.12);
  
  /* Fonts */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --header-height: 72px;
  --promo-height: 44px;
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

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

/* ===== GLOBAL FOCUS STYLES ===== */
/* Remove default focus outlines */
*:focus {
  outline: none;
  box-shadow: none;
}

/* Custom focus styles for better UX */
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

/* Subtle focus for links that don't need strong outline */
a:focus-visible {
  outline: 1px solid var(--clr-primary);
  outline-offset: 1px;
}

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

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--clr-primary);
  height: var(--promo-height);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}

.promo-bar__text {
  color: #fff;
}

.promo-bar__link {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.promo-bar__link:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--clr-bg);
  border-bottom: 1px solid #EEEAFB;
  height: var(--header-height);
  padding: 0;
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 24px;
  color: var(--clr-text);
  text-decoration: none;
}

.navbar-brand {
  margin-right: 0;
  padding: 0;
}

.navbar-brand:hover .brand-logo {
  color: var(--clr-text);
}

.navbar-nav-container {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-left: 32px;
}

.navbar-nav {
  gap: 20px;
}

.nav-link {
  color: var(--clr-text);
  font-weight: 500;
  font-size: 14px;
  padding: 0;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--clr-primary);
}

.nav-link--active {
  color: var(--clr-primary);
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: var(--clr-primary);
  border-radius: 3px;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  width: 420px;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  padding: 16px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 24px;
  color: var(--clr-text);
  text-decoration: none;
  border: none;
  background: none;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background: #F8F6FF;
  color: var(--clr-text);
}

.dropdown-item__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  margin-top: 2px;
  color: var(--clr-primary);
}

.dropdown-item__title {
  font-weight: 600;
}

/* ===== NAVBAR ACTIONS ===== */
.navbar-actions {
  display: flex;
  align-items: center;
}

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  color: #fff;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}
.btn-primary2 {
  background: var(--clr-primary);
  color: #fff;
  border-color: #fff;
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  color: #fff;
}

.btn-outline-primary {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}

.btn-outline-primary:hover {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

.nav-link-plain {
  color: var(--clr-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link-plain:hover {
  color: var(--clr-primary);
}

.btn-icon {
  height: 40px;
  border: none;
  background: none;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 0 12px;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
  gap: 4px;
}

.btn-icon:hover {
  color: var(--clr-primary);
  background: var(--clr-hero-tint);
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
  position: relative;
}

.language-toggle {
  cursor: pointer;
}

.language-code {
  font-weight: 600;
  font-size: 12px;
}

.language-dropdown-custom {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--clr-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-float);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  border: 1px solid var(--clr-border);
}

.language-selector:hover .language-dropdown-custom,
.language-selector.open .language-dropdown-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-item-custom {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 4px 8px;
}

.language-item-custom:hover {
  background: var(--clr-hero-tint);
}

.language-item-custom.active {
  background: var(--clr-primary);
  color: #fff;
}

.language-item-custom.active:hover {
  background: var(--clr-primary-dark);
}

.language-flag-custom {
  font-size: 16px;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.language-text-custom {
  flex: 1;
  font-weight: 500;
  font-size: 14px;
}

.language-short-custom {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-muted);
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
}

.language-item-custom.active .language-short-custom {
  color: var(--clr-primary);
  background: rgba(255, 255, 255, 0.9);
}

/* ===== MOBILE NAVIGATION ===== */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: none;
  color: var(--clr-text);
  font-size: 18px;
}

.navbar-toggler:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

.navbar-toggler:hover {
  color: var(--clr-primary);
}

.offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--clr-border);
}

.offcanvas-title {
  font-weight: 600;
  color: var(--clr-text);
  font-size: 18px;
}

.btn-close {
  background-size: 20px;
  opacity: 0.7;
}

.btn-close:hover {
  opacity: 1;
}

.btn-close:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

.offcanvas-body {
  padding: 24px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  color: var(--clr-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav-link:hover {
  color: var(--clr-primary);
  padding-left: 8px;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
}

.mobile-actions .btn {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  height: 48px;
}

.mobile-actions .mobile-nav-link {
  border: none;
  text-align: center;
  font-weight: 500;
  color: var(--clr-muted);
  margin-top: 16px;
}

.mobile-actions .mobile-nav-link:hover {
  color: var(--clr-primary);
  padding-left: 0;
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.mobile-dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle[aria-expanded="true"] .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
  margin: 0 -24px;
  padding: 0 24px;
}

.mobile-dropdown-menu.open {
  max-height: 300px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.mobile-sub-link {
  padding: 12px 0 12px 20px !important;
  font-size: 15px;
  color: var(--clr-muted) !important;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}

.mobile-sub-link:hover {
  color: var(--clr-primary) !important;
  padding-left: 24px !important;
}



.mobile-sub-link:last-child {
  border-bottom: none;
}

.mobile-sub-link i {
  color: var(--clr-primary);
  font-size: 14px;
  width: 16px;
}

/* ===== MOBILE LANGUAGE SELECTOR ===== */
.mobile-language-selector {
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}

.mobile-language-flags {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.mobile-flag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 3px solid transparent;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-flag-btn:hover {
  transform: scale(1.1);
  border-color: var(--clr-primary);
}

.mobile-flag-btn.active {
  border-color: var(--clr-primary);
  background: var(--clr-hero-tint);
}

/* ===== HERO SECTION ===== */
.hero {
  background: radial-gradient(1200px 600px at 60% 0%, #F5F1FF 0%, #FFF 60%);
  padding: 56px 0 80px;
}

.hero__content {
  padding-right: 24px;
}

/* ===== HERO RATING ===== */
.hero__rating {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.rating-badge {
  width: 32px;
  height: 32px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.rating-text {
  font-size: 14px;
  color: var(--clr-muted);
}

/* ===== HERO TITLE ===== */
.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  margin-bottom: 32px;
}

/* ===== HERO DESCRIPTION ===== */
.hero__description {
  margin-bottom: 32px;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--clr-text);
}

.feature-item i {
  color: var(--clr-primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== OPTION CARDS ===== */
.option-cards {
  margin-bottom: 32px;
}

.option-card {
  position: relative;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-small);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.option-card--large {
  min-height: 112px;
  background: #F4F0FF;
  border-color: #F4F0FF;
  min-width: 280px;
}

.option-card--small {
  min-height: 92px;
  background: var(--clr-bg);
}

.option-card:hover {
  border-color: var(--clr-primary);
}

.option-card.is-selected {
  border-color: var(--clr-primary);
  background: var(--clr-hero-tint);
}

.option-card__checkbox {
  position: absolute;
  top: 16px;
  right: 16px;
}

.option-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--clr-primary);
}

.option-card__icon {
  font-size: 24px;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.option-card__title {
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.3;
}

/* ===== HERO CTA ===== */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__cta .btn-lg {
  height: 48px;
  padding: 12px 32px;
  font-size: 16px;
}

.demo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.demo-link:hover {
  color: var(--clr-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.demo-link i {
  color: var(--clr-primary);
}

/* ===== HERO VISUAL ===== */
.hero__visual {
  position: relative;
  margin-top: 32px;
}

.hero-image-container {
  position: relative;
  margin-left: 24px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}



/* ===== FLOATING CARDS ===== */
.floating-card {
  position: absolute;
  background: var(--clr-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-float);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}

.floating-card--1 {
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  animation: slideInFromLeft 0.6s ease 0.4s both;
}

.floating-card--2 {
  top: 60px;
  right: -50px;
  animation: slideInFromRight 0.6s ease 0.7s both;
}

.floating-card--3 {
  bottom: 60px;
  right: -50px;
  animation: slideInFromRight 0.6s ease 1s both;
}

.floating-card__icon {
  width: 32px;
  height: 32px;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card__icon--blue {
  background: #0d6efd;
}

.floating-card__icon--orange {
  background: #fd7e14;
}

.floating-card__content {
  font-size: 14px;
  line-height: 1.3;
}

.floating-card__content strong {
  display: block;
  margin-bottom: 2px;
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-by {
  padding: 56px 0;
  background: var(--clr-bg);
}

.trusted-by__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  overflow: hidden;
}

.trusted-by__header::before,
.trusted-by__header::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: #EDEAFB;
  width: 100vw;
}

.trusted-by__header::before {
  right: calc(50% + 120px);
}

.trusted-by__header::after {
  left: calc(50% + 120px);
}

.divider-line {
  display: none;
}

.trusted-by__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
  margin: 0;
  background: var(--clr-bg);
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-top: 32px;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  animation: scroll-left 40s linear infinite;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 40px;
  flex-shrink: 0;
}

.logo-image {
  height: 48px;
  width: auto;
  filter: grayscale(1) opacity(0.8);
  transition: filter 0.2s ease;
}

.logo-item:hover .logo-image {
  filter: opacity(1);
}

/* Marquee Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* ===== PLATFORM EXPERIENCE SECTION ===== */
.platform-experience {
  padding: 120px 0;
  background: #fafbfc;
  position: relative;
  overflow: visible;
  z-index: 50;
}

.experience__header {
  margin-bottom: 80px;
  position: relative;
  z-index: 9999;
  background: #fafbfc;
  padding: 20px 0;
}

.experience__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.experience__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== DASHBOARD SHOWCASE ===== */
.dashboard-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  padding: 80px 20px 20px 20px;
  overflow-x: auto;
  min-height: 600px;
  position: relative;
  z-index: 1;
  margin-top: -200px; 
  padding-top: 280px; 
}

.showcase-card {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  flex-shrink: 0;
  /* Mobil telefon 9:16 oranı - 240px genişlik, 427px yükseklik */
  width: 240px;
  height: 427px;
  position: relative;
  z-index: 1;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Parallax için gerekli sınıflar */
.showcase-card--parallax-up {
  transform: translateY(0px);
}

.showcase-card--parallax-down {
  transform: translateY(0px);
}

/* Tüm kartlar aynı boyut ve özel pozisyonlar */
.showcase-card--1,
.showcase-card--2,
.showcase-card--3,
.showcase-card--4,
.showcase-card--5,
.showcase-card--6 {
  width: 240px;
  height: 427px;
}

/* Kartların z-index değerleri - header'dan düşük ama görünür */
.showcase-card--1 {
  z-index: 5;
}

.showcase-card--2 {
  z-index: 4;
}

.showcase-card--3 {
  z-index: 3;
}

.showcase-card--4 {
  z-index: 2;
}

.showcase-card--5 {
  z-index: 1;
}

.showcase-card--6 {
  z-index: 0;
}

/* ===== RESPONSIVE VISIBILITY ===== */
.desktop-showcase {
  display: flex;
}

.mobile-vertical-slider {
  display: none;
}

/* ===== MOBILE VERTICAL SLIDER ===== */
.mobile-slider-container {
  position: relative;
  max-width: 280px;
  margin: 40px auto 0;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mobile-slide-wrapper {
  height: 100%;
  position: relative;
}

.mobile-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.mobile-slide.active {
  opacity: 1;
}

.mobile-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Navigation Arrows - Yuvarlak İçinde */
.mobile-slider-arrow {
  position: absolute;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--clr-primary);
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-slider-left {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-slider-right {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-slider-arrow:hover {
  background: var(--clr-primary);
  color: white;
}

.mobile-slider-left:hover {
  transform: translateY(-50%) scale(1.1);
}

.mobile-slider-right:hover {
  transform: translateY(-50%) scale(1.1);
}

.mobile-slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Dots Indicator */
.mobile-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.mobile-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dot.active {
  background: white;
  transform: scale(1.2);
}

.mobile-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 120px 0;
  background: var(--clr-bg);
}

.features__header {
  margin-bottom: 80px;
}

.features__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 0;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  margin-bottom: 120px;
  background: #fafbfc;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 500px;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-content {
  padding: 60px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.feature-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 32px;
}

.feature-btn {
  background: transparent;
  border: 2px solid var(--clr-border);
  color: var(--clr-text);
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.feature-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 78, 255, 0.25);
}

.feature-image {
  padding: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: translateY(-4px);
}

/* ===== DEMO SECTION ===== */
.demo-section {
  margin-top: 80px;
}

.demo__header {
  margin-bottom: 60px;
}

.demo__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.demo-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.demo-image-container:hover {
  transform: translateY(-4px);
}

.demo-image {
  width: 100%;
  height: auto;
  display: block;
}

.demo-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.demo-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(107, 78, 255, 0.9);
  border: none;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.demo-play-btn:hover {
  background: var(--clr-primary);
  transform: scale(1.1);
}

/* ===== DEMO MODAL ===== */
.demo-modal {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.demo-modal .modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 60px);
  margin: 30px auto;
}

.demo-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.demo-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.demo-modal-content {
  min-height: 600px;
}

/* Left Side - Form */
.demo-form-side {
  background: #f8f6ff;
  position: relative;
  overflow: hidden;
}

.demo-decorative-bg {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #ffe8d1;
  border-radius: 50%;
  opacity: 0.5;
}

.demo-form-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 60px;
}

.demo-form-content {
  width: 100%;
}

.demo-form-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--clr-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.demo-form-subtitle {
  color: var(--clr-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

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

.demo-form .form-control {
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.demo-form .form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(107, 78, 255, 0.1);
  outline: none;
}

.demo-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--clr-primary);
  border: none;
  border-radius: 9999px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.demo-submit-btn:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
}

/* Right Side - Info */
.demo-info-side {
  background: #2a1f5d;
  color: white;
}

.demo-info-content {
  padding: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-info-title {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 40px;
  color: white;
}

.demo-features-list {
  flex: 1;
}

.demo-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.demo-feature-icon {
  color: #22c55e;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.demo-feature span {
  line-height: 1.5;
  font-size: 16px;
}

.demo-preview-image {
  margin-top: 40px;
}

.demo-preview-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE STYLES ===== */

/* Large desktops (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-image {
    max-width: 720px;
  }
}

/* Medium desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero__title {
    font-size: clamp(32px, 4vw, 48px);
  }
  
  .hero-image {
    max-width: 560px;
  }
  

}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    padding: 40px 0 60px;
    overflow-x: hidden;
  }
  
  .hero__content {
    order: 2;
    margin-top: 32px;
    padding-right: 0;
  }
  
  .hero__visual {
    order: 1;
    margin-top: 0;
  }
  
  .hero-image-container {
    margin-left: 0;
    position: relative;
  }
  
  .hero__title {
    text-align: center;
    font-size: clamp(32px, 4vw, 42px);
  }
  
  .hero__description {
    text-align: center;
  }
  
  .hero__cta {
    align-items: center;
    justify-content: center;
  }
  
  .hero__cta .btn-lg {
    max-width: 320px;
  }
  
  /* Adjust floating cards for tablet */
  .floating-card--1 {
    left: -30px;
    max-width: 250px;
  }
  
  .floating-card--2,
  .floating-card--3 {
    right: -30px;
    max-width: 250px;
  }
  
  /* Platform Experience responsive for tablet */
  .platform-experience {
    padding: 80px 0;
  }
  
  .experience__header {
    margin-bottom: 60px;
  }
  
  .dashboard-showcase {
    gap: 20px;
    padding: 40px 10px;
    flex-wrap: wrap;
  }
  
  .showcase-card--1,
  .showcase-card--2,
  .showcase-card--3,
  .showcase-card--4,
  .showcase-card--5,
  .showcase-card--6 {
    width: 200px !important;
    height: 356px !important; /* 9:16 oranı korunuyor */
  }
  
  /* Tablet için pozisyon ayarları */
  .showcase-card--1 {
    margin-top: -170px !important;
  }
  
  .showcase-card--2 {
    margin-top: -100px !important;
  }
  
  .showcase-card--3 {
    margin-top: 0 !important;
  }
  
  .showcase-card--4 {
    margin-top: 0 !important;
  }
  
  .showcase-card--5 {
    margin-top: -50px !important;
  }
  
  .showcase-card--6 {
    margin-top: -100px !important;
  }
  
  /* Features Section Tablet */
  .features-section {
    padding: 80px 0;
  }
  
  .features__header {
    margin-bottom: 60px;
  }
  
  .demo-section {
    margin-top: 60px;
  }
  
  .demo__header {
    margin-bottom: 40px;
  }
  
  .demo-form-container {
    padding: 40px;
  }
  
  .demo-info-content {
    padding: 40px;
  }
  
  .feature-card {
    margin-bottom: 80px;
    padding: 0;
    height: 400px;
  }
  
  .feature-content {
    padding: 50px;
  }
  
  .feature-image {
    padding: 0;
  }
  
  .feature-title {
    font-size: clamp(28px, 4vw, 36px);
  }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }
  
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .hero {
    padding: 24px 0 40px;
    overflow-x: hidden;
  }
  
  .hero .container {
    overflow-x: hidden;
  }
  
  .hero .row {
    margin: 0;
  }
  
  .hero__content {
    order: 2;
    margin-top: 40px;
    padding: 0 16px;
  }
  
  .hero__visual {
    order: 1;
    margin-top: 0;
    padding: 0;
    margin-bottom: 32px;
  }
  
  .hero-image-container {
    margin: 0;
    position: relative;
    padding: 0 16px;
  }
  
  .hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .hero__title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
  }
  
  .hero__description {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .hero__text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .hero__features {
    align-items: center;
  }
  
  .feature-item {
    font-size: 14px;
    justify-content: center;
  }
  
  .hero__cta {
    align-items: center;
    text-align: center;
  }
  
  .hero__cta .btn-lg {
    width: 100%;
    max-width: 280px;
  }
  
  /* Hide all floating cards on mobile */
  .floating-card--1,
  .floating-card--2,
  .floating-card--3 {
    display: none !important;
  }
  
  /* Center rating section on mobile */
  .hero__rating {
    justify-content: center;
    margin-bottom: 32px;
  }
  
  /* Adjust logo marquee for mobile */
  .logo-item {
    margin: 0 20px;
  }
  
  .logo-image {
    height: 36px;
  }
  
  .trusted-by__header {
    gap: 16px;
  }
  
  .trusted-by__title {
    font-size: 14px;
  }
  
  /* Mobile navigation adjustments */
  .navbar-nav-container {
    margin-left: 0;
  }
  
  .promo-bar {
    font-size: 13px;
  }
  
  /* Platform Experience mobile */
  .platform-experience {
    padding: 60px 0;
  }
  
  .experience__header {
    margin-bottom: 40px;
  }
  
  .experience__title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .experience__description {
    font-size: 16px;
  }
  
  /* Mobile'da desktop showcase gizle, mobile slider göster */
  .desktop-showcase {
    display: none !important;
  }
  
  .mobile-vertical-slider {
    display: block !important;
  }
  
  /* Features Section Mobile */
  .features-section {
    padding: 60px 0;
  }
  
  .features__header {
    margin-bottom: 40px;
  }
  
  .features__title {
    font-size: clamp(28px, 6vw, 36px);
  }
  
  .demo-section {
    margin-top: 40px;
  }
  
  .demo__header {
    margin-bottom: 30px;
  }
  
  .demo__title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .demo-modal-content {
    min-height: auto;
  }
  
  .demo-form-side,
  .demo-info-side {
    min-height: 400px;
  }
  
  .demo-form-container {
    padding: 30px;
  }
  
  .demo-info-content {
    padding: 30px;
  }
  
  .demo-form-title {
    font-size: 24px;
  }
  
  .demo-info-title {
    font-size: 20px;
  }
  
  .demo-modal .modal-dialog {
    margin: 15px auto;
    min-height: calc(100vh - 30px);
  }
}

/* ===== ROLES SECTION ===== */
.roles-section {
  background: #fafbfc;
  padding: 80px 0;
}

.roles__header {
  margin-bottom: 80px;
}

.roles__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--clr-text);
  margin-bottom: 0;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== ROLE CARD ===== */
.role-card {
  perspective: 1000px;
  height: 500px;
  position: relative;
}

.role-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.role-card.flipped .role-card-inner {
  transform: rotateY(180deg);
}

.role-card-front,
.role-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
  background: white;
}

.role-card-back {
  transform: rotateY(180deg);
}

/* ===== FRONT SIDE ===== */
.role-card-front {
  display: flex;
  flex-direction: column;
  background: white;
}

.role-content {
  padding: 24px 24px 20px;
  background: white;
  order: 1;
}

.role-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0;
  text-align: center;
}

.role-image {
  flex: 1;
  overflow: hidden;
  order: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: white;
  position: relative;
}

.role-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
}

.role-flip-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--clr-text);
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.role-flip-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
  transform: scale(1.1);
}

/* ===== BACK SIDE ===== */
.role-card-back {
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  background: white;
}

.role-back-content {
  flex: 1;
}

.role-card-footer {
  margin-top: auto;
  padding-top: 20px;
}

.role-back-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 20px;
  text-align: left;
}

.role-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.role-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.role-features i {
  color: var(--clr-primary);
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 16px;
}

.role-features span {
  color: var(--clr-text);
  text-align: left;
}

.role-learn-btn {
  background: transparent;
  border: 2px solid var(--clr-border);
  color: var(--clr-text);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  width: 100%;
  margin-top: 8px;
}

.role-learn-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
}

/* ===== RESPONSIVE ROLES ===== */
@media (max-width: 991px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .role-card {
    height: 450px;
  }
  
  .roles__title {
    font-size: clamp(32px, 5vw, 40px);
  }
}

@media (max-width: 767px) {
  .roles-section {
    padding: 60px 0;
  }
  
  .roles__header {
    margin-bottom: 40px;
  }
  
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .role-card {
    height: 400px;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .role-flip-btn {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  
  .role-back-title {
    font-size: 16px;
  }
  
  .role-title {
    font-size: 16px;
  }
  
  .role-features li {
    font-size: 13px;
  }
  
  .role-card-back {
    padding: 24px 20px;
  }
  
  .feature-card {
    margin-bottom: 60px;
    padding: 0;
    height: auto;
  }
}

/* ===== COMPANY SAVINGS SECTION ===== */
.savings-section {
  background: white;
  padding: 80px 0;
}

.savings__header {
  margin-bottom: 80px;
}

.savings__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--clr-text);
  margin-bottom: 24px;
}

.savings__description {
  font-size: 18px;
  color: var(--clr-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== SAVINGS MOCKUP ===== */
.savings-mockup {
  text-align: center;
  margin: 0 auto;
}

.savings-mockup-img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* ===== NUMBERED FEATURES ===== */
.numbered-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
}

.numbered-feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feature-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--clr-text);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  font-family: 'DM Serif Display', Georgia, serif;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-description {
  font-size: 16px;
  color: var(--clr-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE SAVINGS ===== */
@media (max-width: 991px) {
  .numbered-features {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }
  
  .savings__title {
    font-size: clamp(32px, 5vw, 40px);
  }
}

@media (max-width: 767px) {
  .savings-section {
    padding: 60px 0;
  }
  
  .savings__header {
    margin-bottom: 40px;
  }
  
  .savings__description {
    font-size: 16px;
  }
  
  .feature-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .feature-title {
    font-size: 18px;
  }
  
  .feature-description {
    font-size: 14px;
  }
}

/* Extra small mobile (480px and below) */
@media (max-width: 480px) {
  .hero {
    padding: 20px 0 32px;
  }
  
  .hero__content {
    margin-top: 36px;
  }
  
  .hero__visual {
    margin-bottom: 28px;
  }
  
  .hero__title {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 16px;
  }
  
  .hero__text {
    font-size: 15px;
  }
  
  .feature-item {
    font-size: 13px;
  }
  
  .feature-item i {
    font-size: 16px;
  }
  
  .hero__cta .btn-lg {
    max-width: 260px;
    padding: 10px 24px;
    font-size: 15px;
  }
  
  /* Rating section remains centered and gets more space */
  .hero__rating {
    margin-bottom: 24px;
  }
  
  .rating-text {
    font-size: 13px;
  }
  
  /* Mobile menu improvements for small screens */
  .offcanvas-header {
    padding: 16px 20px;
  }
  
  .offcanvas-body {
    padding: 20px;
  }
  
  .mobile-nav-link {
    padding: 14px 0;
    font-size: 15px;
  }
  
  .mobile-actions {
    margin-top: 24px;
    padding-top: 20px;
  }
  
  .mobile-actions .btn {
    height: 44px;
    font-size: 15px;
  }
  
  .logo-track {
    animation-duration: 30s;
  }
  
  .logo-item {
    margin: 0 16px;
  }
  
  .trusted-by {
    padding: 32px 0;
  }
  
  .hero-image-container {
    padding: 0 8px;
  }
}

/* ===== MODAL STYLES ===== */
.modal-content {
  border-radius: var(--radius-small);
  border: none;
  box-shadow: var(--shadow-float);
}

.modal-header {
  border-bottom: 1px solid var(--clr-border);
}

.modal-title {
  font-weight: 600;
  color: var(--clr-text);
}



/* ===== CUSTOMER TESTIMONIAL SECTION ===== */
.testimonial-section {
  background: #f8f9ff;
  padding: 120px 0;
  position: relative;
}

.testimonial__header {
  margin-bottom: 80px;
}

.testimonial__main-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 0;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.testimonial__highlight {
  color: var(--clr-text);
  font-weight: 400;
}

.testimonial-container {
  background: #e6e0ff;
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.testimonial-content {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

/* ===== LEFT SIDE - TESTIMONIAL ===== */
.testimonial-left {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #e6e0ff;
}

.testimonial-logo {
  margin-bottom: 32px;
}

.company-logo {
  height: 48px;
  width: auto;
  filter: none;
  opacity: 1;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
  color: var(--clr-text);
  margin: 0 0 40px 0;
  padding: 0;
  border: none;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.testimonial-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-video-btn {
  background: transparent;
  border: 2px solid var(--clr-text);
  color: var(--clr-text);
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.testimonial-video-btn:hover {
  background: var(--clr-text);
  border-color: var(--clr-text);
  color: white;
  transform: translateY(-2px);
}

.testimonial-link {
  color: var(--clr-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.testimonial-link:hover {
  color: var(--clr-primary);
  text-decoration-thickness: 2px;
}

/* ===== RIGHT SIDE - VIDEO ===== */
.testimonial-right {
  flex: 1;
  position: relative;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-image {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--clr-text);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: ripple 2s infinite;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: white;
  color: var(--clr-primary);
}

.video-play-btn i {
  margin-left: 3px; /* Çünkü play ikonu optik olarak merkezde görünmeli */
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* ===== TESTIMONIAL MODAL ===== */
.testimonial-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
  background: transparent;
}

.testimonial-modal .modal-dialog {
  max-width: 90vw;
  width: auto;
  margin: 2rem auto;
}

.testimonial-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.testimonial-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.testimonial-modal-content {
  background: black;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}

.modal-video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}

/* ===== RESPONSIVE TESTIMONIAL ===== */
@media (max-width: 991px) {
  .testimonial-section {
    padding: 80px 0;
  }
  
  .testimonial__header {
    margin-bottom: 60px;
  }
  
  .testimonial__main-title {
    font-size: clamp(32px, 5vw, 42px);
  }
  
  .testimonial-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .testimonial-left {
    padding: 50px 40px;
  }
  
  .testimonial-right {
    min-height: 400px;
    padding: 20px;
  }
  
  .video-thumbnail {
    max-width: 350px;
  }
  
  .testimonial-quote {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 60px 0;
  }
  
  .testimonial__header {
    margin-bottom: 40px;
  }
  
  .testimonial__main-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .testimonial-container {
    border-radius: 20px;
  }
  
  .testimonial-left {
    padding: 40px 30px;
  }
  
  .testimonial-quote {
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 24px;
  }
  
  .testimonial-actions {
    align-items: stretch;
  }
  
  .testimonial-video-btn {
    text-align: center;
    width: 100%;
  }
  
  .testimonial-link {
    text-align: center;
    font-size: 14px;
  }
  
  .testimonial-right {
    min-height: 300px;
    padding: 15px;
  }
  
  .video-thumbnail {
    max-width: 280px;
  }
  
  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .testimonial-left {
    padding: 30px 20px;
  }
  
  .testimonial__main-title {
    font-size: clamp(20px, 7vw, 28px);
  }
  
  .testimonial-quote {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .testimonial-video-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .testimonial-right {
    padding: 12px;
  }
  
  .video-thumbnail {
    max-width: 240px;
  }
  
  .company-logo {
    height: 36px;
  }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, #f8f6ff 0%, #f0efff 100%);
  padding: 80px 0;
  position: relative;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-border) 50%, transparent 100%);
  opacity: 0.5;
}

.newsletter-container {
  background: white;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107, 78, 255, 0.08);
  border: 1px solid rgba(107, 78, 255, 0.1);
  position: relative;
}

.newsletter-content {
  padding: 48px 40px;
  text-align: center;
  position: relative;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, #8b5cf6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 16px rgba(107, 78, 255, 0.2);
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  color: var(--clr-text);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.newsletter-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--clr-muted);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NEWSLETTER FORM ===== */
.newsletter-form {
  margin-bottom: 24px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 4px;
  margin-bottom: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.newsletter-input-group:focus-within {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(107, 78, 255, 0.1);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--clr-text);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.newsletter-input:focus {
  background: white;
}

.newsletter-btn {
  background: var(--clr-primary);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 120px;
  justify-content: center;
}

.newsletter-btn:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 78, 255, 0.3);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-btn-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.newsletter-btn:hover .newsletter-btn-icon {
  transform: translateX(2px);
}

.newsletter-feedback {
  min-height: 20px;
  font-size: 14px;
  margin-bottom: 8px;
}

.newsletter-feedback.success {
  color: #059669;
}

.newsletter-feedback.error {
  color: #dc2626;
}

.newsletter-privacy {
  font-size: 13px;
  color: var(--clr-muted);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.4;
}

.newsletter-privacy i {
  color: #10b981;
  font-size: 12px;
}

/* ===== LOADING STATE ===== */
.newsletter-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.newsletter-btn.loading .newsletter-btn-text {
  opacity: 0.5;
}

.newsletter-btn.loading .newsletter-btn-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== RESPONSIVE NEWSLETTER ===== */
@media (max-width: 767px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-content {
    padding: 36px 24px;
  }
  
  .newsletter-title {
    font-size: clamp(20px, 5vw, 26px);
  }
  
  .newsletter-description {
    font-size: 15px;
    margin-bottom: 28px;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }
  
  .newsletter-input {
    padding: 14px 16px;
    text-align: center;
  }
  
  .newsletter-btn {
    width: 100%;
    padding: 14px 20px;
    min-width: auto;
  }
  
  .newsletter-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .newsletter-content {
    padding: 32px 20px;
  }
  
  .newsletter-title {
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 12px;
  }
  
  .newsletter-description {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .newsletter-privacy {
    font-size: 12px;
  }
}

/* ===== MAIN FOOTER ===== */
.main-footer {
  background: #2a1f5d;
  color: #ffffff;
  padding: 0;
  margin-top: 0;
}

/* ===== FOOTER TOP SECTION ===== */
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link {
  color: #c4b5fd;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: block;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ===== G2 REVIEWS SECTION ===== */
.footer-reviews {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.g2-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.rating-stars i {
  font-size: 16px;
}

.rating-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.rating-text2 {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.awards-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.award-badge {
  flex-shrink: 0;
}

.award-img {
  width: 60px;
  height: 75px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
}

/* ===== FOOTER BOTTOM SECTION ===== */
.footer-bottom {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Region Selector */
.region-selector {
  background: transparent;
  border: none;
  color: #c4b5fd;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  padding: 8px 0;
}

.region-selector:hover {
  color: #ffffff;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #c4b5fd;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 16px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

/* App Store Badges */
.footer-apps {
  display: flex;
  gap: 12px;
  align-items: center;
}

.app-badge {
  display: block;
  transition: transform 0.2s ease;
}

.app-badge:hover {
  transform: translateY(-2px);
}

.app-store-img,
.google-play-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

/* ===== LEGAL SECTION ===== */
.footer-legal {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.legal-link {
  color: #c4b5fd;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.legal-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 13px;
  white-space: nowrap;
}

/* ===== DISCLAIMER SECTION ===== */
.footer-disclaimer {
  padding: 20px 0;
}

.disclaimer-text {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 991px) {
  .footer-top {
    padding: 50px 0 30px;
  }
  
  .reviews-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 20px;
  }
  
  .reviews-rating {
    flex-direction: column;
    gap: 12px;
  }
  
  .awards-grid {
    justify-content: center;
    gap: 8px;
  }
  
  .award-img {
    width: 50px;
    height: 62px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-social {
    order: 1;
  }
  
  .footer-region {
    order: 2;
  }
  
  .footer-apps {
    order: 3;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 40px 0 20px;
  }
  
  .footer-title {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .footer-link {
    font-size: 13px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-reviews {
    padding: 30px 0;
  }
  
  .reviews-container {
    padding: 16px;
    gap: 16px;
  }
  
  .rating-text {
    font-size: 13px;
  }
  
  .awards-grid {
    gap: 6px;
  }
  
  .award-img {
    width: 40px;
    height: 50px;
  }
  
  .footer-bottom {
    padding: 24px 0;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .footer-apps {
    gap: 8px;
  }
  
  .app-store-img,
  .google-play-img {
    height: 36px;
  }
  
  .footer-legal {
    padding: 20px 0;
  }
  
  .legal-links {
    gap: 12px;
  }
  
  .legal-link {
    font-size: 12px;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
  
  .disclaimer-text {
    font-size: 11px;
    text-align: center;
  }
  
  .footer-disclaimer {
    padding: 16px 0;
  }
}

@media (max-width: 576px) {
  .reviews-rating {
    gap: 8px;
  }
  
  .rating-stars i {
    font-size: 14px;
  }
  
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .award-img {
    width: 35px;
    height: 44px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .legal-link {
    font-size: 11px;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* ===== CONTACT HERO SECTION ===== */
.contact-hero {
  background: linear-gradient(135deg, #f8f6ff 0%, #f0efff 100%);
  padding: 80px 0;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-border) 50%, transparent 100%);
  opacity: 0.5;
}

.contact-hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contact-hero__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--clr-border);
  margin-bottom: 40px;
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  color: var(--clr-text);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact-form__description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--clr-muted);
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact-form .form-control {
  padding: 16px 20px;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-small);
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  color: var(--clr-text);
  width: 100%;
}

.contact-form .form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(107, 78, 255, 0.1);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: #9ca3af;
}

.contact-form .form-control.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-form .form-control:invalid {
  border-color: #dc2626;
}

.contact-form select.form-control {
  cursor: pointer;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid var(--clr-border);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check-input:checked {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.form-check-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-muted);
  cursor: pointer;
  margin: 0;
}

.privacy-link {
  color: var(--clr-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: all 0.2s ease;
}

.privacy-link:hover {
  color: var(--clr-primary-dark);
  text-decoration-thickness: 2px;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  min-width: 200px;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 78, 255, 0.3);
}

.contact-submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(2px);
}

/* ===== CONTACT INFO ===== */
.contact-info-container {
  padding: 0;
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  color: var(--clr-text);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact-info__description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--clr-muted);
  margin-bottom: 0;
}

.contact-info-list {
  margin-bottom: 48px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: #fafbfc;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: var(--clr-hero-tint);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.contact-info-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-muted);
  margin: 0;
}

.contact-link {
  color: var(--clr-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: var(--clr-primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* ===== CONTACT SOCIAL ===== */
.contact-social {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--clr-border);
}

.contact-social__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.contact-social-links {
  display: flex;
  gap: 16px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--clr-hero-tint);
  border-radius: 12px;
  color: var(--clr-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.contact-social-link:hover {
  background: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== OFFICE LOCATIONS SECTION ===== */
.office-locations-section {
  padding: 100px 0;
  background: #fafbfc;
}

.office-locations-header {
  text-align: center;
  margin-bottom: 80px;
}

.office-locations__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.office-locations__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== OFFICE CARDS ===== */
.office-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--clr-border);
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.office-card-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.office-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, #8b5cf6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 16px rgba(107, 78, 255, 0.2);
}

.office-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.office-card__badge {
  display: inline-block;
  background: var(--clr-hero-tint);
  color: var(--clr-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.office-card-content {
  margin-bottom: 32px;
}

.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.office-info-item i {
  color: var(--clr-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.office-info-item span {
  color: var(--clr-muted);
}

.office-card-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
}

.office-direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--clr-border);
  color: var(--clr-text);
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.office-direction-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== CONTACT MAP SECTION ===== */
.contact-map-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.contact-map-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-map__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contact-map__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-map {
  position: relative;
  width: 100%;
  height: 400px;
  background: #f0f0f0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
}

.map-marker {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.map-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.map-info p {
  font-size: 14px;
  color: var(--clr-muted);
  margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background: #fafbfc;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.faq__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  background: white;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-header-item:hover {
  background: var(--clr-hero-tint);
}

.faq-header-item[aria-expanded="true"] {
  background: var(--clr-hero-tint);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 24px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-header-item[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 32px 32px 32px;
  background: white;
}

.faq-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin: 0;
}

/* ===== RESPONSIVE CONTACT STYLES ===== */
@media (max-width: 991px) {
  .contact-hero {
    padding: 60px 0;
  }
  
  .contact-info-section,
  .office-locations-section,
  .contact-map-section,
  .faq-section {
    padding: 80px 0;
  }
  
  .contact-form-container {
    padding: 40px;
    margin-bottom: 32px;
  }
  
  .office-locations-header,
  .contact-map-header,
  .faq-header {
    margin-bottom: 60px;
  }
  
  .contact-hero__title,
  .office-locations__title,
  .contact-map__title,
  .faq__title {
    font-size: clamp(28px, 5vw, 36px);
  }
  
  .contact-hero__description,
  .office-locations__description,
  .contact-map__description,
  .faq__description {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 50px 0;
  }
  
  .contact-info-section,
  .office-locations-section,
  .contact-map-section,
  .faq-section {
    padding: 60px 0;
  }
  
  .contact-form-container {
    padding: 32px 24px;
  }
  
  .contact-social {
    padding: 24px;
  }
  
  .office-card {
    padding: 24px;
  }
  
  .office-locations-header,
  .contact-map-header,
  .faq-header {
    margin-bottom: 40px;
  }
  
  .contact-hero__title,
  .office-locations__title,
  .contact-map__title,
  .faq__title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .contact-form__title,
  .contact-info__title {
    font-size: clamp(20px, 5vw, 26px);
  }
  
  .contact-hero__description,
  .office-locations__description,
  .contact-map__description,
  .faq__description {
    font-size: 15px;
  }
  
  .contact-info-item {
    padding: 20px;
  }
  
  .office-card-header {
    margin-bottom: 24px;
  }
  
  .office-card-content {
    margin-bottom: 24px;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .map-overlay {
    min-width: 240px;
    padding: 16px 20px;
  }
  
  .faq-header-item {
    padding: 24px 20px;
  }
  
  .faq-content {
    padding: 0 20px 24px 20px;
  }
  
  .faq-question {
    font-size: 16px;
    padding-right: 16px;
  }
  
  .contact-social-links {
    justify-content: center;
  }
  
  .office-direction-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 40px 0;
  }
  
  .contact-info-section,
  .office-locations-section,
  .contact-map-section,
  .faq-section {
    padding: 50px 0;
  }
  
  .contact-form-container {
    padding: 24px 20px;
  }
  
  .contact-social {
    padding: 20px;
  }
  
  .office-card {
    padding: 20px;
  }
  
  .contact-hero__title,
  .office-locations__title,
  .contact-map__title,
  .faq__title {
    font-size: clamp(22px, 7vw, 28px);
  }
  
  .contact-form__title,
  .contact-info__title {
    font-size: clamp(18px, 6vw, 22px);
  }
  
  .contact-submit-btn {
    min-width: 180px;
    height: 48px;
    font-size: 15px;
  }
  
  .contact-info-item {
    padding: 16px;
    gap: 16px;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .office-card-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .office-card__title {
    font-size: 20px;
  }
  
  .contact-map {
    height: 250px;
  }
  
  .map-overlay {
    min-width: 200px;
    padding: 12px 16px;
  }
  
  .faq-header-item {
    padding: 20px 16px;
  }
  
  .faq-content {
    padding: 0 16px 20px 16px;
  }
  
  .faq-question {
    font-size: 15px;
  }
  
  .faq-content p {
    font-size: 14px;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
  color: var(--clr-primary) !important;
}

.bg-primary {
  background-color: var(--clr-primary) !important;
}

.border-primary {
  border-color: var(--clr-primary) !important;
}

/* ===== MOBILE DROPDOWN STYLES ===== */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: inherit;
    padding: 12px 0;
    border: none;
    background: none;
    font-size: inherit;
    font-family: inherit;
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:focus {
    color: var(--clr-primary);
    text-decoration: none;
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
    margin-left: 8px;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--clr-hero-tint);
    border-radius: var(--radius-small);
    margin-top: 8px;
}

.mobile-dropdown-menu.open {
    max-height: 500px;
    padding: 12px 0;
}

.mobile-nav-link.mobile-sub-link {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link.mobile-sub-link:hover,
.mobile-nav-link.mobile-sub-link:focus {
    color: var(--clr-primary);
    background: rgba(107, 78, 255, 0.1);
    text-decoration: none;
}

.mobile-nav-link.mobile-sub-link i {
    color: var(--clr-primary);
    width: 16px;
    text-align: center;
}

/* Mobile dropdown animation improvements */
@media (max-width: 991.98px) {
    .mobile-dropdown-menu {
        transform-origin: top;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease;
        opacity: 0;
    }
    
    .mobile-dropdown-menu.open {
        opacity: 1;
    }
    
    .mobile-dropdown-toggle[aria-expanded="true"] .mobile-dropdown-icon {
        transform: rotate(180deg);
    }
}

/* Ensure proper spacing for mobile menu items */
.offcanvas-body .list-unstyled > li {
    border-bottom: 1px solid var(--clr-border);
}

.offcanvas-body .list-unstyled > li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--clr-primary);
    text-decoration: none;
}