/* ==========================================================================
   ICATLAR TECHNICAL SERVICES - BALANZA DESIGN SYSTEM (FULL-BLEED HERO)
   Theme: Exact Match to Balanza Template Kit (Image 2 Overlay & Glassmorphism)
   Colors: Deep Forest (#244436), Sage (#3F6E5B), Accent Red (#EE2B2A),
           Soft Mint (#EBF3EF), Dark Charcoal (#1C2823), Warm Cream (#F4F7F5)
   Zero JS - Pure CSS3 Animations, Responsive Layouts & Interactions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Outfit:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-main: #F4F7F5;
  --bg-card: #FFFFFF;
  --bg-dark-forest: #244436;
  --bg-sage: #3F6E5B;
  --bg-sage-light: #EBF3EF;
  --bg-mint-glow: rgba(163, 214, 193, 0.25);
  
  --primary-forest: #244436;
  --primary-sage: #3F6E5B;
  --accent-red: #EE2B2A;
  --accent-red-dark: #C91C1B;
  --accent-mint: #599C82;
  
  --text-dark: #1C2823;
  --text-muted: #556860;
  --text-light: #84968E;
  --text-white: #FFFFFF;
  
  --border-light: #E1E8E4;
  --border-sage: rgba(63, 110, 91, 0.2);
  
  --font-heading: 'Outfit', 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --shadow-soft: 0 10px 30px rgba(28, 40, 35, 0.05);
  --shadow-hover: 0 20px 40px rgba(28, 40, 35, 0.12);
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-body);
}

body {
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-sage-light);
  color: var(--primary-sage);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge.red {
  background: rgba(238, 43, 42, 0.1);
  color: var(--accent-red);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #1C2823;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 48px;
}

/* --- Buttons with Circular Arrow Icon --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-forest);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--primary-sage);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(36, 68, 54, 0.25);
}

.btn-sage {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-sage:hover {
  background: #5d215f;
  border-color: #5d215f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(93, 33, 95, 0.35);
}

.btn-red {
  background: #5d215f;
  color: #FFFFFF;
}

.btn-red:hover {
  background: #581C87;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(93, 33, 95, 0.35);
}

.btn-arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn:hover .btn-arrow-icon {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: var(--bg-sage-light);
  color: var(--primary-forest);
}

.btn-secondary:hover {
  background: #DCE8E2;
  transform: translateY(-2px);
}

/* --- TOP CONTACT BAR & HEADER --- */
.top-bar {
  background: #15271E;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 28px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFFFFF;
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: none;
}

.header.scrolled {
  background: #FFFFFF;
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-forest);
  border: 2px solid var(--primary-forest);
}

/* When scrolled â€” same dark links (navbar is always white) */
.header.scrolled .nav-link {
  color: var(--text-dark);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary-forest);
  border: 2px solid var(--primary-forest);
}

/* --- HERO SECTION (MATCHING IMAGE 2 EXACTLY: FULL BLEED SAGE GRADIENT & OVERLAYS) --- */
.hero-section {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  background: #000;
  color: #FFFFFF;
  padding: 90px 0 65px;
  overflow: hidden;
}

/* Full-bleed video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay over video */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-subhead {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-subhead::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-transform: none;
  overflow: hidden;
}

/* Slide wrapper â€” fixed height prevents layout shift */
.hero-slide-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 10rem;
}

/* All slides absolutely positioned inside wrapper */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Active slide â€” visible and in position */
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Exiting slide â€” slides up and fades out */
.hero-slide.exit {
  opacity: 0;
  transform: translateY(-100%);
}

.hero-title span {
  color: #5d215f;
  font-style: normal;
  position: relative;
}

.hero-title span::after {
  display: none;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 44px;
  max-width: 650px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Translucent Frosted Glass Cards (Right Overlays) */
.hero-overlays-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 230px;
}

.glass-pill-box {
  background: rgba(15, 10, 30, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(93, 33, 95, 0.35);
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(107,33,168,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-pill-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(107,33,168,0.2);
}

.glass-pill-item {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(93, 33, 95, 0.18);
  border: 1px solid rgba(93, 33, 95, 0.30);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.glass-pill-item:hover {
  background: rgba(93, 33, 95, 0.35);
  transform: scale(1.04);
}

.pill-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.glass-stat-box {
  background: rgba(15, 10, 30, 0.60);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(93, 33, 95, 0.4);
  border-radius: 24px;
  padding: 20px 22px;
  min-width: 240px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(107,33,168,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(107,33,168,0.25);
}

.glass-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(93, 33, 95, 0.30);
  border: 1px solid rgba(93, 33, 95, 0.45);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #e0a8e2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.glass-stat-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.glass-stat-number {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 3.4rem;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-pct {
  font-size: 2rem;
  font-weight: 700;
  color: #9b3f9d;
}

.glass-stat-bar {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.glass-stat-bar-fill {
  height: 100%;
  width: 98%;
  background: linear-gradient(90deg, #7a2d7c, #9b3f9d);
  border-radius: 999px;
  animation: barGrow 1.5s ease forwards;
}

@keyframes barGrow {
  from { width: 0; }
  to { width: 98%; }
}

.glass-stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 0;
}

.glass-stat-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9b3f9d;
  letter-spacing: 0.05em;
}

.stat-divider {
  color: rgba(255,255,255,0.2);
}

/* --- VALUE PROPOSITION CARDS --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-red);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--bg-sage-light);
  color: var(--primary-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- ABOUT SECTION (MODERN INDUSTRIAL COLLAGE & CHECKLIST BOX) --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-visual-cluster {
  position: relative;
  width: 100%;
  min-height: 440px;
  padding: 0 15px 15px 0;
}

.about-main-img {
  width: 78%;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 4px solid #FFFFFF;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 0;
  right: 10px;
  background: linear-gradient(135deg, #5d215f, #7a2d7c);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 18px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 15px 35px rgba(93, 33, 95, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.about-exp-num {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.about-exp-text {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.about-secondary-img {
  position: absolute;
  bottom: -10px;
  right: 15px;
  width: 280px;
  height: 280px;
  border-radius: 24px;
  border: 5px solid #FFFFFF;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.about-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features-box {
  background: #F3F4F6;
  border-radius: 18px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(93, 33, 95, 0.08);
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1F2937;
}

.about-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5d215f;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sleek-stats-row {
  display: flex;
  align-items: center;
  gap: 72px;
  margin: 4px 0 22px;
  flex-wrap: wrap;
}

.sleek-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sleek-stat-num {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: #5d215f;
  line-height: 1;
  letter-spacing: -0.01em;
}

.sleek-stat-lbl {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: #4B5563;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-features-box {
    grid-template-columns: 1fr;
  }
  .about-visual-cluster {
    min-height: 380px;
    padding: 0;
  }
  .about-main-img {
    width: 100%;
    height: 320px;
  }
  .about-secondary-img {
    display: none;
  }
  .about-experience-badge {
    top: -15px;
    right: 10px;
  }
}

/* --- MISSION, VISION & CORE VALUES SECTION --- */
.mission-section {
  background: #F8FAFC;
  padding: 85px 0 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 42px -24px 0;
}

.mv-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 26px;
  padding: 24px 28px;
  box-shadow: 0 14px 35px rgba(93, 33, 95, 0.05);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  position: relative;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(93, 33, 95, 0.12);
  border-color: rgba(93, 33, 95, 0.25);
}

.mv-img-wrap {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 3px solid #FFFFFF;
}

.mv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.mv-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #5d215f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.3s ease;
}

.mv-card:hover .mv-badge {
  transform: scale(1.15) rotate(15deg);
  background: #5d215f;
  color: #FFFFFF;
}

.mv-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mv-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mv-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(93, 33, 95, 0.08);
  color: #5d215f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mv-card:hover .mv-icon-box {
  background: #5d215f;
  color: #FFFFFF;
  transform: rotate(-6deg);
}

.mv-title {
  font-family: 'Outfit', 'Urbanist', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
}

.mv-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #4B5563;
  margin: 0;
}

.core-values-header {
  text-align: center;
  margin: 70px 0 36px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 -24px;
}

.value-card-new {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 26px 28px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.value-card-new:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(93, 33, 95, 0.4);
  box-shadow: 0 15px 35px rgba(93, 33, 95, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.value-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(93, 33, 95, 0.12), inset 0 1px 1px #FFF;
  color: #5d215f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.value-card-new:hover .value-icon-circle {
  background: #5d215f;
  color: #FFFFFF;
  transform: scale(1.08);
}

.value-card-new h3 {
  color: #FFFFFF;
  font-family: 'Outfit', 'Urbanist', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.value-card-new p {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- SERVICES SECTION (ENHANCED LUXURY CARDS WITH BRAND THEME) --- */
.services-section {
  background: #F4F7F5;
  color: var(--text-dark);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(93, 33, 95, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
}

.service-card:hover {
  background: #FFFFFF;
  border-color: #5d215f;
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(93, 33, 95, 0.12);
}

.service-img-wrap {
  position: relative;
  width: calc(100% - 24px);
  height: 240px;
  margin: 12px 12px 0;
  border-radius: 18px;
  overflow: hidden;
  background: #E5E7EB;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-num-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(93, 33, 95, 0.9);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card h3 {
  font-family: 'Outfit', 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  min-height: 78px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #5d215f;
}

.word-black {
  color: #111827;
  transition: color 0.3s ease;
}

.word-purple {
  color: #5d215f;
  transition: color 0.3s ease;
}

.service-card:hover h3 .word-black {
  color: #5d215f;
}

.service-card:hover h3 .word-purple {
  color: #7a2d7c;
}

.service-card p {
  color: #6B7280;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5d215f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(93, 33, 95, 0.06);
  margin-top: auto;
}

.service-card:hover .service-action {
  background: #5d215f;
  color: #FFFFFF;
  transform: translateX(4px);
}

/* --- PRICING / TURNKEY TIERS SECTION --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid var(--accent-red);
  box-shadow: var(--shadow-hover);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 36px;
  background: var(--accent-red);
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-forest);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* --- LEAD MAGNET DOWNLOAD BANNER --- */
.lead-banner {
  background: linear-gradient(135deg, #244436 0%, #3F6E5B 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-hover);
}

.lead-banner h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.lead-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* --- FAQ ACCORDION --- */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  transition: var(--transition);
}

details.faq-item[open] {
  border-color: var(--accent-red);
  box-shadow: var(--shadow-soft);
}

summary.faq-header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary.faq-header::-webkit-details-marker {
  display: none;
}

summary.faq-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-red);
  transition: transform 0.3s ease;
}

details[open] summary.faq-header::after {
  content: 'âˆ’';
}

.faq-body {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer-premium {
  background: linear-gradient(135deg, #1c091f 0%, #431444 100%);
  color: #FFFFFF;
  padding: 40px 0 20px;
  font-family: var(--font-body, 'Inter', sans-serif);
}

.footer-premium-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-premium-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 440px;
}

.footer-premium-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
  transition: all 0.3s ease;
}

.premium-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-premium-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.footer-premium-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
}

.premium-card-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.premium-card-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-card-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.premium-card-links a:hover {
  color: #FFFFFF;
}

.premium-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.premium-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.premium-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF;
}

.premium-contact-item span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}

.premium-contact-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-premium-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .footer-premium-grid {
    grid-template-columns: 1fr;
  }
  .footer-premium-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* --- RESPONSIVE Breakpoints --- */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .lead-banner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-overlays-container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }

  .features-grid,
  .pricing-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    margin: 36px 0 0;
  }

  .service-card h3 {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 8px;
  }

  /* nav-links is now hidden via mobile-responsive.css at 950px; keep this for safety */
  .nav-links {
    display: none;
  }

  .features-grid,
  .pricing-grid,
  .services-grid,
  .footer-grid,
  .core-values-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .mv-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 20px;
  }

  .mv-header-row {
    justify-content: center;
  }
}

/* --- OUR PORTFOLIO / PROJECTS SECTION --- */
.portfolio-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 30px;
}

.portfolio-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5d215f; /* Brand purple */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio-title {
  font-family: 'Outfit', 'Urbanist', sans-serif;
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 800;
  color: #2D1B36; /* Deep executive wine/purple dark tone */
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.portfolio-divider {
  width: 65px;
  height: 4px;
  background: #5d215f;
  border-radius: 4px;
  margin: 0 auto 36px;
}

/* Filter Capsule Buttons */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  background: #FFFFFF;
  color: #4B5563;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.filter-btn:hover {
  border-color: #5d215f;
  color: #5d215f;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #5d215f;
  color: #FFFFFF;
  border-color: #5d215f;
  box-shadow: 0 10px 24px rgba(93, 33, 95, 0.28);
  transform: translateY(-2px);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}

.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 330px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 4px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #F8FAFC;
  display: block;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
  border-color: #5d215f;
}

/* Ensure ZERO image shading, fading, or dark gradient overlays on the photograph! */
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.project-card:hover img {
  transform: scale(1.04);
}

/* Crisp Project Name Bar that appears on click / hover WITHOUT shading the photo */
.project-name-bar {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border-left: 5px solid #5d215f;
  transform: translateY(125%);
  opacity: 0;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  pointer-events: none;
}

/* Show title cleanly when clicked (.show-title) or hovered */
.project-card:hover .project-name-bar,
.project-card.show-title .project-name-bar {
  transform: translateY(0);
  opacity: 1;
}

.project-name-bar h3 {
  font-family: 'Outfit', 'Urbanist', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.project-name-bar span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5d215f;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #599C82; /* Sage green to contrast the purple */
  transition: opacity 0.3s, transform 0.3s;
}
.project-card:hover .project-learn-more {
  color: #5d215f; /* Turns purple on hover */
}


@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-filters {
    gap: 10px;
  }
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* --- OUR CLIENTS LOGO SLIDING TICKER SECTION (BRAND THEME) --- */
.client-logo-section {
  background: #F8FAFC;
  padding: 95px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 10px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
  padding-right: 36px;
}

/* Row 1 animation: slide left */
.marquee-row.scroll-left .marquee-content {
  animation: scrollLeft 38s linear infinite;
}

/* Row 2 animation: slide right */
.marquee-row.scroll-right .marquee-content {
  animation: scrollRight 42s linear infinite;
}

.marquee-row:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* Individual Client Logo Card */
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #FFFFFF;
  padding: 0 20px;
  width: 260px;
  height: 80px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: normal;
  flex-shrink: 0;
}

.client-logo-item:hover {
  background: #FFFFFF;
  border-color: #5d215f;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(93, 33, 95, 0.16);
}

.client-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-text {
  font-family: 'Outfit', 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.client-logo-item:hover .client-text {
  color: #5d215f;
}

@media (max-width: 768px) {
  .marquee-container::before,
  .marquee-container::after {
    width: 60px;
  }
  .client-logo-item {
    padding: 14px 24px;
    gap: 12px;
  }
  .client-text {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   TESTIMONIAL CAROUSEL SECTION (ICATLAR THEMED)
   ========================================================================== */
.testimonial-section {
  background: #FAFAFA;
  color: var(--text-dark, #1C2823);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.testimonial-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-header-left {
  max-width: 800px;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(93, 33, 95, 0.08);
  border: 1px solid rgba(93, 33, 95, 0.2);
  border-radius: var(--radius-full);
  color: #5d215f;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(93, 33, 95, 0.05);
}

.testimonial-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark, #1C2823);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(36, 68, 54, 0.15);
  color: var(--text-dark, #1C2823);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.testimonial-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.25s ease;
}

.testimonial-btn:hover {
  background: #5d215f;
  border-color: #5d215f;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(93, 33, 95, 0.25);
  color: #FFFFFF;
}

.testimonial-btn:hover svg {
  transform: scale(1.15);
}

.testimonial-btn:active {
  transform: scale(0.95);
}

.testimonial-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  scroll-snap-align: start;
  background: linear-gradient(135deg, #ffffff 0%, #fdf5fd 100%);
  border: none;
  border-top: 4px solid #5d215f;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(93, 33, 95, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(93, 33, 95, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #F59E0B;
  flex-shrink: 0;
}

.testimonial-quote {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4B5563;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 400;
}

.testimonial-divider {
  width: 100%;
  height: 0;
  border-top: 1px dashed rgba(63, 110, 91, 0.2);
  margin: 0 0 24px 0;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.avatar-orange { background: linear-gradient(135deg, #F97316, #EA580C); }
.avatar-blue { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.avatar-green { background: linear-gradient(135deg, #22C55E, #16A34A); }
.avatar-purple { background: linear-gradient(135deg, #9333EA, #7E22CE); }
.avatar-red { background: linear-gradient(135deg, #EF4444, #DC2626); }

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark, #1C2823);
  margin: 0 0 3px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-author-role {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-light, #84968E);
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(93, 33, 95, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  outline: none;
}

.testimonial-dot:hover {
  background: rgba(93, 33, 95, 0.35);
  transform: scale(1.15);
}

.testimonial-dot.active {
  width: 32px;
  background: #5d215f;
  box-shadow: 0 0 12px rgba(93, 33, 95, 0.4);
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .testimonial-controls {
    align-self: flex-end;
  }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 280px;
    padding: 28px 24px;
  }
  .testimonial-author-name,
  .testimonial-author-role {
    white-space: normal;
  }
}

/* ==========================================================================
   12. BLOG / NEWS SECTION (ICATLAR THEMED)
   ========================================================================== */
.blog-section {
  padding: 10px 0 20px;
  background: var(--bg-main);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 15px;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(93, 33, 95, 0.1);
  border-color: #5d215f;
}

.blog-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
}

.blog-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #5d215f;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-meta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0 0 16px 0;
  transition: color 0.25s ease;
}

.blog-card:hover .blog-title {
  color: #5d215f;
}

.blog-excerpt {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 24px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border-light);
  padding-top: 20px;
  margin-top: auto;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #5d215f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.blog-read-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.blog-read-more:hover {
  color: var(--primary-sage);
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   13. DARK CONTACT SECTION (ICATLAR THEMED)
   ========================================================================== */
.dark-contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdf5fd 100%);
  border: 1px solid rgba(93, 33, 95, 0.08);
  border-radius: 32px;
  padding: 40px 50px;
  box-shadow: 0 30px 60px rgba(93, 33, 95, 0.06);
  overflow: hidden;
}

.dark-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dark-contact-title {
  color: #1C2823;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.dark-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dark-input {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 20px;
  color: #1C2823;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.dark-input::placeholder {
  color: #9CA3AF;
}

.dark-input:focus {
  outline: none;
  border-color: #5d215f;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(93, 33, 95, 0.1);
}

.dark-input.full-width {
  width: 100%;
}

.dark-input.half-width {
  width: calc(50% - 8px);
}

.dark-submit-btn {
  background: #5d215f;
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  padding: 16px 36px;
  font-family: 'Outfit', 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.dark-submit-btn:hover {
  opacity: 0.9;
}

.dark-contact-image-side {
  width: 100%;
  height: 100%;
  min-height: 340px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.dark-contact-image-side img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .dark-contact-card {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .dark-contact-grid {
    grid-template-columns: 1fr;
  }
  .dark-contact-image-side {
    min-height: 300px;
    order: -1;
  }
  .dark-input.half-width {
    width: 100%;
  }
  .dark-contact-card {
    padding: 40px 20px;
  }
}

/* ==========================================================================
   TEAM SECTION (ABOUT PAGE)
   ========================================================================== */
.team-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5d215f;
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(93, 33, 95, 0.4);
  transition: all 0.3s ease;
}

.team-nav-btn:hover {
  background: #3a153c;
  transform: translateY(-50%) scale(1.1);
}

.team-nav-btn.prev-btn {
  left: -40px;
}

.team-nav-btn.next-btn {
  right: -40px;
}

.team-slider-container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 20px 30px;
}

.team-slider-container::-webkit-scrollbar {
  display: none;
}

.team-slider-track {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  width: max-content;
}

.team-card-hover {
  scroll-snap-align: center;
  position: relative;
  background: #EAEAEA;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 320px;
  flex-shrink: 0;
  white-space: normal;
  box-shadow: 0 15px 40px rgba(93, 33, 95, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(93, 33, 95, 0.15);
}

.tc-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card-hover:hover .tc-bg-img {
  transform: scale(1.05);
}

.tc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(93, 33, 95, 0.95) 0%, rgba(93, 33, 95, 0.6) 40%, rgba(93, 33, 95, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card-hover:hover .tc-overlay {
  opacity: 1;
  transform: translateY(0);
}

.tc-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
}

.tc-role {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.tc-social {
  display: flex;
  gap: 12px;
}

.tc-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.tc-social a:hover {
  background: #FFFFFF;
  color: #5d215f;
  transform: translateY(-2px);
}

.team-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   ABOUT PAGE STATSOVERLAP
   ========================================================================== */
.about-stats-row {
  display: flex;
  gap: 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: max-content;
  max-width: 95%;
  z-index: 10;
}

.about-stat-card {
  background: linear-gradient(135deg, rgba(93, 33, 95, 0.75) 0%, rgba(58, 21, 60, 0.75) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(93, 33, 95, 0.2);
}

.about-stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.about-stat-info h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px;
  line-height: 1;
}

.about-stat-info p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about-stats-row {
    flex-direction: row;
    bottom: -30px;
    width: 90%;
    gap: 12px;
  }
  .about-stat-card {
    padding: 12px 14px;
    gap: 10px;
    flex: 1;
    justify-content: center;
  }
  .about-stat-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .about-stat-info h4 {
    font-size: 1.25rem;
  }
  .about-stat-info p {
    font-size: 0.75rem;
  }
  .about-visual-cluster {
    padding-bottom: 50px !important;
  }
}


/* Dropdown Menu CSS */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  padding: 0;
}
.nav-dropdown .dropdown-toggle:hover {
  color: #5d215f;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #5d215f;
  min-width: 220px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(93, 33, 95, 0.2);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}
.dropdown-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Outfit', 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, padding-left 0.2s;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 28px;
}
