/* ============================================================
   IberTurk.com – Main Stylesheet
   Playfair Display + DM Sans | Cream, Mocha & Warm Tone Theme
   ============================================================ */

:root {
  /* Brand palette – warm cream & mocha */
  --mocha:       #6B4C3B;
  --mocha-dark:  #4e3429;
  --mocha-mid:   #8B6355;
  --mocha-light: #a8806e;
  --gold:        #C9A84C;
  --gold-light:  #e2c06a;
  --cream:       #F5EFE6;
  --cream-dark:  #EDE3D5;
  --cream-mid:   #F9F4EE;
  --linen:       #FBF8F3;
  --warm-white:  #FFFDF9;
  --text:        #2C1F17;
  --text-mid:    #4a3728;
  --muted:       #8a7060;
  --border:      rgba(107,76,59,0.12);
  --shadow-sm:   0 2px 12px rgba(107,76,59,0.08);
  --shadow-md:   0 8px 32px rgba(107,76,59,0.12);
  --shadow-lg:   0 20px 60px rgba(107,76,59,0.18);
  --radius:      12px;
  --radius-lg:   20px;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
em { font-style: italic; color: var(--gold); }
a { text-decoration: none; }
img { max-width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: transparent;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
  z-index: 1050;
}
#mainNav.scrolled {
  background: var(--mocha-dark);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(78,52,41,0.35);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-white) !important;
}
.brand-icon { font-size: 1.4rem; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -0.02em;
}
.brand-text em { color: var(--gold); font-style: normal; }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--gold-light) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-cta {
  background: var(--mocha);
  color: var(--warm-white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s;
  border: 2px solid var(--mocha);
}
.btn-cta:hover {
  background: var(--mocha-dark);
  border-color: var(--mocha-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(107,76,59,0.4);
}
.lang-switcher { display: flex; gap: 0.35rem; }
.lang {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.lang:hover, .lang.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.18);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
#heroCarousel { height: 100vh; min-height: 600px; }
.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Corporate / warm image set */
.hero-slide-1 {
  background-image:
    linear-gradient(135deg, rgba(78,52,41,0.72) 0%, rgba(107,76,59,0.45) 100%),
    url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1800&q=80');
}
.hero-slide-2 {
  background-image:
    linear-gradient(135deg, rgba(44,31,23,0.68) 0%, rgba(107,76,59,0.5) 100%),
    url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1800&q=80');
}
.hero-slide-3 {
  background-image:
    linear-gradient(135deg, rgba(44,31,23,0.65) 0%, rgba(78,52,41,0.55) 100%),
    url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1800&q=80');
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(44,31,23,0.78) 0%, rgba(44,31,23,0.3) 70%);
}
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item { height: 100%; }
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-content h1, .hero-content .h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--warm-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-hero-primary {
  background: var(--mocha);
  color: var(--warm-white);
  border: 2px solid var(--mocha);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
}
.btn-hero-primary:hover {
  background: var(--mocha-dark);
  border-color: var(--mocha-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,76,59,0.45);
}
.btn-hero-outline {
  background: transparent;
  color: var(--warm-white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  color: var(--warm-white);
}
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Round bullet indicators */
.hero-indicators { bottom: 2rem; }
.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.4);
  margin: 0 4px;
  padding: 0;
  transition: all 0.3s;
}
.hero-indicators button.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--mocha-dark);
  padding: 1.25rem 0;
  border-top: 3px solid var(--gold);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0;
}
.trust-item i { font-size: 1.1rem; color: var(--gold); }

/* ============================================================
   SECTIONS – COMMON
   ============================================================ */
.section-light {
  background: var(--cream-mid);
  padding: 6rem 0;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mocha);
  background: rgba(107,76,59,0.08);
  border: 1px solid rgba(107,76,59,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.label-gold  { color: var(--gold); background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); }
.label-white { color: var(--warm-white); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.section-intro { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto 1rem; }
.sub-title {
  font-size: 1.3rem;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}
.text-white-75 { color: rgba(255,255,255,0.75) !important; }

/* ============================================================
   PARALLAX SECTIONS
   ============================================================ */
.parallax-section {
  position: relative;
  padding: 6rem 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(44,31,23,0.55);
}
.parallax-overlay-dark { background: rgba(30,18,12,0.72); }
.parallax-overlay-mid  { background: rgba(44,31,23,0.60); }

/* Parallax backgrounds – corporate + Turkey blend */
.parallax-turkey {
  background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1800&q=80');
}
.parallax-advantages {
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1800&q=80');
}
.parallax-onsite {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1800&q=80');
}

/* ============================================================
   WHY TURKEY – FEATURE CARDS
   ============================================================ */
.feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(6px);
  transition: transform 0.3s, background 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.16);
}
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h3 { color: var(--warm-white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; line-height: 1.65; }

.stats-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
}
.stat-block { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

/* ============================================================
   SERVICES – STEPS
   ============================================================ */
.steps-grid { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.step-card {
  background: var(--warm-white);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.step-card:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-icon i { font-size: 1.6rem; color: var(--mocha); margin-bottom: 0.75rem; display: block; }
.step-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.step-card p  { font-size: 0.87rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Industries */
.industry-pill {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s;
}
.industry-pill:hover {
  background: var(--mocha);
  border-color: var(--mocha);
  color: var(--warm-white);
}
.industry-pill i { color: var(--mocha); transition: color 0.25s; }
.industry-pill:hover i { color: var(--gold-light); }

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantage-list { list-style: none; padding: 0; margin: 0; }
.advantage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
}
.advantage-list li:last-child { border-bottom: none; }
.advantage-list li i { color: var(--gold-light); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.advantage-list li strong { color: var(--warm-white); }

.protection-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.protection-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: background 0.25s;
}
.protection-card:hover { background: rgba(255,255,255,0.12); }
.protection-card > i { font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.protection-card strong { color: var(--warm-white); font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.protection-card p { color: rgba(255,255,255,0.7); font-size: 0.83rem; margin: 0; line-height: 1.5; }
.text-gold { color: var(--gold-light) !important; }

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.success-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.success-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background: var(--mocha-dark);
}
.success-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.success-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,31,23,0.92) 0%, rgba(44,31,23,0.3) 50%);
  z-index: 1;
}
.success-visual-content {
  position: relative; z-index: 2;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.success-icon-big { font-size: 2.5rem; margin-bottom: 0.4rem; }
.success-sector {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.result-item { text-align: center; }
.result-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  display: block;
  line-height: 1;
}
.result-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}
.success-quote h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 0.75rem; }
.success-challenge {
  color: var(--muted);
  font-size: 0.93rem;
  background: var(--cream);
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  margin-bottom: 1.25rem;
}
.success-challenge strong { color: var(--text); }
.success-steps { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.success-step {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: var(--muted); font-size: 0.88rem;
}
.success-step i { color: var(--mocha); font-size: 1rem; margin-top: 0.1rem; }
.success-result {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.success-result i { color: var(--gold); font-size: 1.3rem; margin-top: 0.1rem; }
.success-result p { margin: 0; font-size: 0.9rem; color: var(--text-mid); }
.success-result strong { color: var(--text); }

.success-indicators { bottom: -1.5rem; position: relative; }
.success-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--mocha-light);
  margin: 0 4px;
  padding: 0;
  transition: all 0.3s;
}
.success-indicators button.active {
  background: var(--mocha);
  border-color: var(--mocha);
  transform: scale(1.3);
}

.big-quote {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  border-left: 4px solid var(--gold);
  text-align: left;
}
.big-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.big-quote footer {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ============================================================
   ON-SITE SUPPORT
   ============================================================ */
.onsite-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.onsite-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.onsite-list li:last-child { border-bottom: none; }
.onsite-list li i { color: var(--gold-light); width: 1.2rem; text-align: center; flex-shrink: 0; }

.onsite-cards { display: flex; flex-direction: column; gap: 1rem; }
.onsite-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.25s;
}
.onsite-card:hover { background: rgba(255,255,255,0.16); }
.onsite-card > i { font-size: 1.6rem; color: var(--gold-light); flex-shrink: 0; margin-top: 0.1rem; }
.onsite-card strong { display: block; color: var(--warm-white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.onsite-card p { margin: 0; color: rgba(255,255,255,0.68); font-size: 0.85rem; line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-accordion .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item .accordion-button {
  background: var(--warm-white);
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
  box-shadow: none;
  padding: 1.15rem 1.5rem;
}
.faq-item .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--mocha-dark);
  box-shadow: none;
}
.faq-item .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236B4C3B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-item .accordion-body {
  background: var(--cream-mid);
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   PHOTO STRIP – new section for more images
   ============================================================ */
.photo-strip {
  padding: 0;
  background: var(--cream-dark);
}
.photo-strip .strip-row {
  display: flex;
  height: 320px;
  overflow: hidden;
}
.photo-strip .strip-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s ease;
  position: relative;
  overflow: hidden;
}
.photo-strip .strip-img:hover { flex: 2; }
.photo-strip .strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,31,23,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.photo-strip .strip-caption {
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.photo-strip .strip-img:hover .strip-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background: var(--cream);
  padding: 6rem 0;
}
.contact-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-info-side {
  background: linear-gradient(150deg, var(--mocha-dark) 0%, var(--mocha) 100%);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-side h2 { font-size: 2rem; color: var(--warm-white); margin-bottom: 1rem; }
.contact-details { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.contact-details li i { color: var(--gold-light); width: 1.2rem; text-align: center; }
.contact-details li a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.contact-details li a:hover { color: var(--gold-light); }
.flags-row { margin-top: 1.5rem; display: flex; gap: 0.75rem; font-size: 2rem; }

.contact-form-side {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
}
.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mocha-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.contact-form .form-control {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: all 0.25s;
  background: var(--cream-mid);
  color: var(--text);
}
.contact-form .form-control:focus {
  border-color: var(--mocha);
  box-shadow: 0 0 0 3px rgba(107,76,59,0.1);
  background: var(--warm-white);
  outline: none;
}
.btn-cta-large {
  background: var(--mocha);
  color: var(--warm-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-cta-large:hover {
  background: var(--mocha-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,76,59,0.35);
}
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--mocha-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; line-height: 1.6; }
.footer-langs a {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-langs a:hover, .footer-langs a.active { color: var(--gold-light); }
.footer-heading {
  color: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.87rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.55); font-size: 0.85rem; padding: 0.3rem 0;
}
.footer-contact li i { color: var(--gold-light); width: 1rem; text-align: center; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.btn-footer-cta {
  background: var(--mocha);
  color: var(--warm-white);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-block;
}
.btn-footer-cta:hover { background: var(--mocha-light); color: var(--warm-white); transform: translateY(-1px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; margin-top: 2rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-disclaimer { font-size: 0.72rem !important; color: rgba(255,255,255,0.3) !important; margin-top: 0.3rem !important; }
.scroll-top-btn {
  color: rgba(255,255,255,0.45);
  font-size: 0.83rem;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.scroll-top-btn:hover { color: var(--gold-light); }
.scroll-top-btn i { font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .parallax-section,
  .parallax-turkey,
  .parallax-advantages,
  .parallax-onsite { background-attachment: scroll !important; }
  .hero-slide { background-attachment: scroll !important; }
  .stat-divider { display: none; }
  .stats-ribbon { gap: 1rem; }
  .navbar-collapse {
    background: var(--mocha-dark);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.5rem;
  }
  .contact-info-side { padding: 2.5rem 2rem; }
  .contact-form-side { padding: 2.5rem 2rem; }
  .photo-strip .strip-row { height: 220px; }
}
@media (max-width: 767.98px) {
  .hero-stats { gap: 1.25rem; }
  .hero-stats .stat strong { font-size: 1.3rem; }
  .success-card { padding: 1.5rem; }
  .section-light, .section-contact { padding: 4rem 0; }
  .parallax-section { padding: 4rem 0; }
  .big-quote { padding: 1.75rem; }
  .big-quote p { font-size: 1.1rem; }
  .steps-grid .col-md-6 { border-right: none !important; }
  .photo-strip .strip-row { height: 160px; }
  .stats-ribbon { padding: 1.5rem; }
}
@media (max-width: 575.98px) {
  #heroCarousel, .hero-slide { height: 100svh; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; }
  .photo-strip .strip-row { height: 130px; }
}

.carousel-indicators [data-bs-target] {


	width: 20px !important;
	height: 20px !important;
	border-radius: 20px!important;

}
.carousel-indicators [data-bs-target] {

    border-top: 0 !important; 
    border-bottom: 0 solid !important; 
	}
/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUBBLE
══════════════════════════════════════════════════════════ */
#waBubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
#waBubble.wa-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
#waBubble a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#waBubble a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
#waBubble a:active { transform: scale(0.96); }
#waBubble svg { width: 32px; height: 32px; }
.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  background: var(--mocha-dark);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%) translateX(6px);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--mocha-dark);
  border-right: none;
}
#waBubble a:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0;   }
  100% { transform: scale(1.65); opacity: 0;   }
}
@media (max-width: 575.98px) {
  #waBubble { bottom: 18px; right: 18px; }
  #waBubble a { width: 54px; height: 54px; }
  #waBubble svg { width: 28px; height: 28px; }
  .wa-tooltip { display: none; }
}
