/* ============================================
   Omerbeyoglu Unlu Ltd - Corporate Stylesheet
   Modern, Minimal & Professional Design
   ============================================ */

/* Root Variables - Corporate Color Palette */
:root {
  /* Primary Colors - Sophisticated Charcoal & Warm Brown */
  --primary-color: #2c2c2c;
  --primary-light: #3d3d3d;
  --primary-dark: #1a1a1a;

  /* Accent Colors - Warm Brown Tones */
  --accent-color: #8b7355;
  --accent-light: #a68968;
  --accent-dark: #6d5c48;
  --accent-warm: #b8956a;

  /* Backgrounds */
  --background-color: #ffffff;
  --background-alt: #f7f6f4;
  --background-dark: #eae8e4;
  --background-warm: #faf9f7;

  /* Text Colors */
  --text-color: #2c2c2c;
  --text-secondary: #545454;
  --text-muted: #767676;
  --text-light: #a0a0a0;

  /* Borders & Dividers */
  --border-color: #e0ddd8;
  --border-light: #ebe9e5;

  /* Shadows - Subtle & Professional */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Effects */
  --transition-base: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
}

/* ============================================
   Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100vw;
  height: 100%;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  padding-top: 80px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all var(--transition-base);
}

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

strong {
  font-weight: 600;
  color: var(--text-color);
}

/* ============================================
   Header & Navigation
   ============================================ */

header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-medium);
  width: 100%;
}

/* Sticky header scroll effect */
header.scrolled {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1rem 0;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  transition: transform var(--transition-base);
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem !important;
  color: var(--text-secondary) !important;
  transition: all var(--transition-base);
  border-radius: var(--border-radius-sm);
  position: relative;
  letter-spacing: -0.01em;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
  background-color: var(--background-alt) !important;
}

.nav-link.active::after,
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-color) !important;
  border-radius: 2px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  background: linear-gradient(135deg,
    var(--primary-color) 0%,
    var(--primary-light) 50%,
    var(--accent-dark) 100%);
  color: white;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  animation: gradientAnimation 15s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 149, 106, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-section h1 {
  color: white;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.15;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === Services Page Hero Custom Enhancements === */
.services-hero-highlight {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(90deg, #ffb347 0%, #e59729 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Glow kaldırıldı, yerine keskin shadow */
  text-shadow: 0 2px 0 #fffbe6, 0 4px 12px rgba(184,149,106,0.13), 0 1px 0 #ffe29f;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
  display: inline-block;
  /* animation: heroGlow 2.5s infinite alternate; kaldırıldı */
}

.services-hero-cta {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #fffbe6;
  background: linear-gradient(90deg, #8b7355 0%, #a68968 100%);
  padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 32px;
  font-weight: 700;
  display: inline-block;
  margin-top: 1.2rem;
  box-shadow: 0 2px 16px rgba(139, 115, 85, 0.10);
  letter-spacing: 0.01em;
  transition: background 0.3s, color 0.3s;
}

.services-hero-cta:hover {
  background: #fffbe6;
  color: #8b7355;
}

.services-hero-illustration {
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: linear-gradient(90deg, #ee5b5b 0%, #de3838 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(184,156,122,0.13);
  margin-bottom: 0.7rem;
  position: relative;
  overflow: hidden;
  animation: pulse 3.5s infinite;
}
.services-hero-illustration i {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  opacity: 0.92;
}

/* Cam efekti ve hover animasyonlu istatistik kartları */
.service-stats-bar.hero-mini {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
/* Minimal, modern stat badge style for hero */
.service-stat.hero-mini {
  background: linear-gradient(90deg, #ee5b5b 0%, #de3838 100%);
  color: #f5eee5;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  border-radius: 14px;
  padding: clamp(0.35rem, 0.8vw, 0.45rem) clamp(0.9rem, 2vw, 1.1rem);
  box-shadow: 0 2px 8px rgba(184,149,106,0.07);
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid #e2c9a0;
  min-width: 90px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-stat.hero-mini i {
  font-size: 1.15em;
  color: #f5eee5;
  margin-right: 0.3em;
}
.service-stat.hero-mini:hover {
  background: linear-gradient(90deg, #bc4949 0%, #922525 100%);
  color: #f5eee5;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,149,106,0.13);
  border-color: #b89c7a;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge-icon {
  color: #b8956a;
}

/* ============================================
   Main Content
   ============================================ */

main {
  flex: 1 0 auto;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  border-radius: 2px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  text-align: center;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-color) !important;
  color: white !important;
  border-color: var(--accent-color) !important;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background: var(--accent-dark) !important;
  color: white !important;
  border-color: var(--accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent !important;
  border: 2px solid white !important;
  color: white !important;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
  background-color: white !important;
  color: var(--primary-color) !important;
  border-color: white !important;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn i {
  font-size: 1.1em;
}

/* Override Bootstrap default button colors */
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  color: white !important;
}

/* Remove Bootstrap's default blue focus ring */
.btn:focus,
.btn:focus-visible,
.btn-primary:focus,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(139, 115, 85, 0.25) !important;
  outline: none !important;
}

/* Override any Bootstrap blue color remnants */
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background-color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: block;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

/* Service Card Modern Hover Effects */
.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15) !important;
  border-color: var(--accent-light) !important;
}

.service-card-modern:hover > div:first-child {
  transform: scale(1) !important;
}

.service-card-modern:hover .bi {
  transform: scale(1.1) rotate(5deg);
}

.service-card-modern:hover h3 {
  color: var(--accent-color);
}

/* Strength Items Hover Effects */
.strength-item {
  position: relative;
  overflow: hidden;
}

.strength-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.05), transparent);
  transition: left 0.5s ease;
}

.strength-item:hover::before {
  left: 100%;
}

.strength-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.15) !important;
  border-color: var(--accent-color) !important;
}

.strength-item:hover .bi {
  transform: scale(1.15) rotate(-5deg);
}

.strength-item:hover .strength-badge {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.4) !important;
}

.card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
  color: var(--primary-color);
  font-weight: 600;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.card ul li {
  padding: 0.625rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.card ul li i {
  color: var(--accent-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Service Cards */
.service-card {
  text-align: center;
  transition: all var(--transition-medium);
}

.service-card:hover {
  background: linear-gradient(135deg,
    var(--background-alt) 0%,
    white 100%);
}

.service-card .card-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 2rem;
}

.team-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: var(--accent-color);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 0.5rem;
}

.team-card .specialty {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-bottom: 1.5rem;
}

.team-list {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

.team-list li {
  margin-bottom: 0.5rem;
}

.team-description {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
}

.team-card .social-links a {
  font-size: 1.75rem;
  margin: 0 0.5rem;
  color: var(--accent-color);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--background-alt);
}

.team-card .social-links a:hover {
  background: var(--accent-color) !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   Forms
   ============================================ */

.contact-form,
.contact-info {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.contact-form:hover,
.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  letter-spacing: -0.01em;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-base);
  background-color: var(--background-color);
  color: var(--text-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
  background-color: white;
}

.form-control::placeholder {
  color: var(--text-light);
}

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

select.form-control {
  cursor: pointer;
}

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-main {
  flex-grow: 1;
}

.contact-form h2,
.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-bottom: 1.5rem;
}

.quick-response-box {
  margin-top: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
}

.quick-response-box h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.quick-response-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  line-height: 1.6;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-alt);
  border-radius: var(--border-radius-sm);
}

.contact-info-item-content h4 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-item-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/* ============================================
   Services Hero - Expert, Bold, Creative
   ============================================ */
.hero-section-expert {
  background: linear-gradient(120deg, #1a1a1a 0%, #2c2c2c 60%, #8b7355 100%);
  color: #fff;
  position: relative;
  min-height: 260px;
  padding: 2.75rem 0 2.25rem 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44,44,44,0.13);
  animation: gradientAnimation 15s ease infinite;
  background-size: 200% 200%;
}
.hero-expert-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero-expert-content {
  text-align: center;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}
.hero-expert-title {
  font-size: clamp(2.85rem, 6.75vw, 3,9rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.4rem;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
  animation: slideInUp 0.6s cubic-bezier(.4,2,.3,1);
}
.hero-dot {
  color: #ff4d00;
  font-size: 1.2em;
  font-weight: 900;
  text-shadow: 0 2px 12px #d05a5a, 0 1px 0 #f01010;
}
.hero-expert-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #ffb347;
  letter-spacing: 0.5px;
  margin-top: 0.2em;
  display: inline-block;
}
.hero-expert-lead { display: none; }
.hero-expert-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
  flex-wrap: wrap;
}
.hero-expert-badge {
  background: linear-gradient(90deg, #504232 0%, #3a2d1e 100%);
    color: #e1c9ae;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 800;
    border-radius: 12px;
    padding: clamp(0.3rem, 0.6vw, 0.35rem) clamp(0.7rem, 1.5vw, 0.85rem);
    box-shadow: 0 2px 12px rgba(184, 149, 106, 0.12);
  display: flex;
  align-items: center;
  gap: 0.45em;
  border: 1.25px solid #585440;
  min-width: 0;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.hero-expert-badge i {
  font-size: 1.25em;
  color: #e59729;
  margin-right: 0.3em;
}
.hero-expert-badge:hover {
  background: linear-gradient(90deg, #bc4949 0%, #922525 100%);
  color: #fffbe6;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,149,106,0.13);
  border-color: #b89c7a;
}
.hero-expert-trusted {
  margin-bottom: 2.1rem;
  color: #fffbe6;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.trusted-client {
  background: rgba(255,255,255,0.13);
  color: #fffbe6;
  border-radius: 10px;
  padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.7rem, 1.5vw, 0.9rem);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 0.2em;
  border: 1.5px solid #ffb347;
}
.hero-expert-cta {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #fffbe6;
  background: linear-gradient(90deg, #8b7355 0%, #a68968 100%);
  padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 36px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.7rem;
  box-shadow: 0 6px 24px rgba(139, 115, 85, 0.25);
  letter-spacing: 0.01em;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  border: none;
}

.hero-expert-cta:hover {
  background: #fffbe6;
  color: #8b7355;
  transform: translateY(-2px);
}

.hero-expert-cta i { font-size: 1.2em; }
.hero-expert-cta:hover {
  background: #fffbe6;
  color: #8b7355;
}

/* Typed keywords animation (simple JS, see below) */
.typed-keywords {
  color: #ffb347;
  font-weight: 900;
  letter-spacing: 0.5px;
  min-width: 120px;
  display: inline-block;
  transition: color 0.3s;
}
/* Contact form response message styles */
.form-response-message {
  margin-top: 1.2rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.08);
  background: #f7f6f4;
  color: #8b7355;
  border: 1.5px solid #e2c9a0;
  display: none;
  transition: all 0.3s;
}
.form-response-message.success {
  background: #e6fbe6;
  color: #2c7a2c;
  border-color: #b6e6b6;
  display: block;
}
.form-response-message.error {
  background: #fff0f0;
  color: #b30000;
  border-color: #ffb3b3;
  display: block;
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
  /*margin-top: 6rem;*/
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
  display: inline-block;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0.75rem;
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: white;
}

/* === Services Page Custom Classes (only for services.html) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.service-animated-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(139, 115, 85, 0.08);
  border: 1.5px solid #ebe9e5;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: pointer;
  will-change: transform, box-shadow;
  opacity: 0;
  transform: translateY(40px);
}

.service-animated-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(.4,2,.3,1), transform 0.7s cubic-bezier(.4,2,.3,1);
}

.service-animated-card:hover {
  box-shadow: 0 16px 48px rgba(139, 115, 85, 0.15);
  border-color: #a68968;
  transform: translateY(-8px) scale(1.025);
}

.service-animated-card .service-icon {
  font-size: 3.5rem;
  color: #8b7355;
  margin-bottom: 0.5rem;
  margin-left: 0.1rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.service-animated-card:hover .service-icon {
  color: #1a1a1a;
  transform: scale(1.15) rotate(-6deg);
}

.service-animated-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.service-animated-card .service-desc {
  color: #545454;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.6;
}

.service-animated-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.service-animated-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  color: #545454;
  font-size: clamp(0.875rem, 1.2vw, 0.98rem);
}

.service-animated-card ul li i {
  color: #8b7355;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* Service Stats Bar */
.service-stats-bar {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0 1.5rem 0;
}

.service-stat {
  background: linear-gradient(135deg, #a68968 0%, #8b7355 100%);
  color: white;
  border-radius: 12px;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.08);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 140px;
  justify-content: center;
  animation: fadeInRight 1s;
}

.service-stat i {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-right: 0.5rem;
  color: #fffbe6;
}

 @keyframes orb1 { 0%{transform:translateY(0);} 100%{transform:translateY(8px) scale(1.02);} }
        @keyframes orb2 { 0%{transform:translateY(0);} 100%{transform:translateY(-6px) scale(1.01);} }
        .services-hero-underline { color: #ff4d00 !important; background: none !important; filter: none !important; text-shadow: 0 2px 12px #d05a5a, 0 1px 0 #f01010; font-weight: 800; letter-spacing: 0.5px; }
        .services-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: center; max-width: 1100px; margin: 0 auto; }
        .services-hero-left { text-align: left; }
        .services-hero-right { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }

          .industry-expertise-modern {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 6px 32px rgba(139,115,85,0.08);
            border: 1px solid #ebe9e5;
            padding: 2.5rem 2rem 2.2rem 2rem;
            margin: 0 auto 2.5rem auto;
            max-width: 950px;
            text-align: center;
          }
          .expertise-intro {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.1rem;
            margin-bottom: 1.5rem;
          }
          .expertise-icon {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            color: #b89c7a;
            border-radius: 50%;
            padding: 0.5rem 0.7rem;
            box-shadow: 0 2px 8px rgba(184,149,106,0.08);
          }
          .expertise-lead {
            font-size: clamp(0.85rem, 1.3vw, 1rem) !important;
            line-height: 1.6;
          }

          /* Certifications Grid */
          .cert-container {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
            border: 2px solid rgba(139, 115, 85, 0.1);
          }

          .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
          }

          .cert-badge {
            padding: 0.75rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
          }

          .cert-badge:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          }

          .cert-name {
            font-weight: 800;
            font-size: clamp(1.05rem, 1.8vw, 1.25rem);
            color: white;
            margin-bottom: 0.25rem;
          }

          .cert-subtitle {
            font-size: clamp(0.65rem, 1vw, 0.7rem);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
          }

          .cert-ibm {
            background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
          }

          .cert-sap {
            background: linear-gradient(135deg, #0078D4 0%, #005a9e 100%);
          }

          .cert-google {
            background: linear-gradient(135deg, #EA4335 0%, #c23321 100%);
          }

          .cert-meta {
            background: linear-gradient(135deg, #0668E1 0%, #0552b5 100%);
          }

          .cert-pmi {
            background: linear-gradient(135deg, #00853F 0%, #006630 100%);
          }
          .expertise-summary {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
          }
          .expertise-summary-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: #f7f6f4;
            border-radius: 12px;
            padding: clamp(0.8rem, 1.5vw, 1.1rem) clamp(1.2rem, 2.5vw, 1.7rem);
            box-shadow: 0 2px 8px rgba(184,149,106,0.07);
            min-width: 180px;
            margin-bottom: 0.7rem;
            font-size: clamp(0.85rem, 1.2vw, 0.95rem);
          }
          .expertise-summary-item strong {
            font-size: clamp(0.95rem, 1.3vw, 1.05rem);
          }
          .expertise-summary-icon {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: #b89c7a;
            flex-shrink: 0;
          }

/* Reveal Animation for JS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,2,.3,1), transform 0.7s cubic-bezier(.4,2,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service CTA Section */
.service-cta {
  background: linear-gradient(135deg, #8b7355 0%, #a68968 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(139, 115, 85, 0.08);
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin: 0;
  animation: fadeIn 1.2s;
}

.service-cta h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-cta p {
  color: #fffbe6;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.service-cta .btn {
  background: white;
  color: #8b7355;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.08);
  transition: background 0.2s, color 0.2s;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(1.5rem, 3vw, 2rem);
}

.service-cta .btn:hover {
  background: #1a1a1a;
  color: white;
}

/* ============================================
   Utility Classes
   ============================================ */

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

.text-muted {
  color: var(--text-muted) !important;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* ============================================
   Grid System
   ============================================ */

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-8,
.col-md-10,
.col-md-12 {
  padding: 0 1rem;
  width: 100%;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333%; }
  .col-md-5 { width: 41.666%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666%; }
  .col-md-10 { width: 83.333%; }
  .col-md-12 { width: 100%; }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .hero-section {
    padding: 3rem 0 2rem;
  }

  .content-section {
    padding: 2.5rem 0;
  }

  .navbar {
    min-height: 70px;
    padding: 0.75rem 0;
  }

  .navbar-brand img {
    height: 42px;
  }

  .navbar-nav {
    gap: 0.25rem;
    width: 100%;
  }

  .nav-link {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .contact-form,
  .contact-info {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  /* Hero Section Mobile */
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta a {
    width: 100%;
  }

  .trust-badges {
    justify-content: center;
  }

  /* Service Cards Mobile */
  .service-card-modern {
    margin-bottom: 1.5rem;
  }

  .services-showcase .row {
    gap: 1.5rem;
  }

  /* About Page Stats */
  .about-hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .about-stat-box {
    padding: 1rem 0.5rem !important;
  }

  /* Core Strengths */
  .strength-item {
    padding: 1.25rem !important;
  }

  .strength-item > div:first-child {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }

  .strength-badge {
    align-self: flex-start;
  }

  /* Footer Minimal */
  .footer-minimal-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

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

  .footer-brand p {
    margin: 0 auto;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-links a {
    font-size: 0.875rem;
    padding: 0.4rem 0.5rem;
  }

  .footer-social {
    display: none;
  }

  .footer-minimal-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 0.75rem;
    max-width: 100%;
  }

  .hero-section {
    padding: 2.5rem 0 1.5rem;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .hero-section .container {
    padding: 0 1rem !important;
  }

  /* Index Hero Badge Fix */
  .hero-badge {
    max-width: 100% !important;
    padding: 0.4rem 0.75rem !important;
    font-size: 0.8rem !important;
  }

  /* Index Hero Columns */
  .hero-section .row {
    margin: 0 !important;
  }

  .hero-section .col-lg-7,
  .hero-section .col-lg-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Hide hero shapes on mobile */
  .hero-shapes,
  .shape {
    display: none !important;
  }

  .content-section {
    padding: 2rem 0;
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.625rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  p {
    font-size: 0.95rem;
  }

  .lead {
    font-size: 1rem !important;
  }

  /* About Page Hero Title - Mobile Fix */
  .text-hero-title {
    font-size: 2.30rem !important;
    line-height: 1.2 !important;
    word-break: break-word;
    hyphens: auto;
  }

  .text-hero-index {
    font-size: 2.30rem !important;
    word-break: break-word;
    hyphens: auto;
  }

  /* Hide decorative elements on small screens */
  .hero-decoration {
    display: none !important;
  }

  /* Stats grid - keep 3 columns on mobile */
  .about-hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.4rem !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .about-stat-box {
    padding: 0.6rem 0.25rem !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* About hero title wrapper */
  .hero-section .container > div {
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* Stat labels smaller text for mobile */
  .stat-label {
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  .stat-number {
    font-size: 1.4rem !important;
    margin-bottom: 0.25rem !important;
  }

  /* Override inline font-sizes on mobile */
  [style*="font-size: 2."] {
    font-size: 1.75rem !important;
  }

  [style*="font-size: 1.5"] {
    font-size: 1.25rem !important;
  }

  [style*="font-size: 1.25"] {
    font-size: 1.05rem !important;
  }

  [style*="font-size: 1.125"] {
    font-size: 1rem !important;
  }

  .navbar-brand img {
    height: 36px;
  }

  .navbar-nav {
    padding-top: 1rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem;
    text-align: center;
  }

  .card {
    padding: 1.7rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  /* Hero adjustments */
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 3rem) !important;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .hero-title-index {
    font-size: clamp(2.75rem, 7vw, 3rem) !important;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .hero-cta {
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .trust-badge-item {
    gap: 0.5rem;
  }

  /* Stats card mobile */
  .hero-stats-card {
    padding: 1.5rem !important;
    margin: 0 !important;
  }

  .stat-item {
    margin-bottom: 1.5rem !important;
  }

  .stat-item span {
    font-size: 1rem;
  }

  /* Button mobile */
  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  /* Footer mobile spacing */
  .footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem 1rem !important;
  }

  .footer-links a {
    font-size: 0.85rem !important;
    padding: 0.3rem 0.5rem !important;
  }

  .footer-social {
    display: none !important;
  }

  .footer-minimal-bottom {
    font-size: 0.75rem !important;
  }

  /* About Page Stats Box */
  .about-stat-box {
    padding: 1rem !important;
  }

  /* Core Strengths Icons */
  .strength-item {
    padding: 1rem !important;
  }

  .strength-item [style*="width: 48px"] {
    width: 40px !important;
    height: 40px !important;
  }

  .strength-item [style*="width: 48px"] i {
    font-size: 1.25rem !important;
  }

  /* Why Choose Icons */
  .why-choose-icon {
    width: 50px !important;
    height: 50px !important;
  }

  /* Certifications Grid */
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .cert-badge {
    grid-column: span 2;
  }

  /* Center the last item when it's alone in the row */
  .cert-badge:nth-child(5) {
    grid-column: 2 / 4;
  }

  .cert-container {
    padding: 1rem;
  }

  /* Service Portfolio - Mobile Optimization */
  .service-card-modern {
    padding: 1.5rem !important;
  }

  .service-card-modern > div > div:first-child {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 1rem !important;
  }

  .service-card-modern > div > div:first-child i {
    font-size: 1.5rem !important;
  }

  .service-card-modern h3 {
    font-size: 1.125rem !important;
    margin-bottom: 0.75rem !important;
  }

  .service-card-modern p {
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
  }

  .service-card-modern ul li {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }

  .service-card-modern ul li i {
    font-size: 0.95rem !important;
    margin-right: 0.5rem !important;
  }
}

/* 380px and below */
@media (max-width: 380px) {
  .footer-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.4rem 0.75rem !important;
  }

  .footer-links a {
    display: inline-block;
    width: auto;
    font-size: 0.8rem !important;
  }
}

/* 900px and below - Services Hero & Grid */
@media (max-width: 900px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-hero-left {
    text-align: center;
    padding-left: 0;
  }

  .services-hero-right {
    margin-top: 1.5rem;
  }

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

  .hero-expert-title {
    font-size: 1.6rem;
  }

  .hero-expert-badges {
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-expert-badge {
    font-size: 0.85rem;
    padding: 0.32rem 0.6rem;
    width: auto;
    flex: 0 1 auto;
    min-width: fit-content;
  }
}

/* 700px and below - Expertise Summary */
@media (max-width: 700px) {
  .expertise-summary {
    flex-direction: column;
    gap: 1.2rem;
  }

  .expertise-summary-item {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}

/* 600px and below - Services Hero Details */
@media (max-width: 600px) {
  .services-hero-grid {
    gap: 1rem;
  }

  .services-hero-left {
    padding: 0 1rem;
  }

  .hero-section-expert {
    padding: 2.25rem 0 1.75rem 0;
  }

  .hero-expert-title {
    font-size: 1.35rem;
  }

  .hero-expert-badges {
    flex-direction: row;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-expert-badge {
    width: auto;
    flex: 0 1 auto;
    justify-content: center;
    min-width: fit-content;
  }

  .hero-expert-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Animations
   ============================================ */

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.6s ease-out;
}

/* ============================================
   Responsive Typography Utility Classes
   ============================================ */

/* Hero Text Sizes */
.text-hero-title {
  font-size: clamp(2rem, 7vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.text-hero-index {
  font-size: clamp(2rem, 7vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.text-hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
}

/* Display Text Sizes */
.text-display-1 {
  font-size: clamp(2.2rem, 4vw, 2.5rem);
}

.text-display-2 {
  font-size: clamp(1.9rem, 3.5vw, 2.25rem);
}

/* Body Text Sizes */
.text-lg {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem) !important;;
}

.text-md {
  font-size: clamp(1rem, 1.2vw, 1.125rem) !important;;
}

.text-base {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem) !important;;
}

.text-sm {
  font-size: clamp(0.8rem, 1vw, 0.95rem) !important;
}

.text-xs {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem) !important;
}

/* Icon Sizes */
.icon-xl {
  font-size: clamp(3rem, 4vw, 4rem) !important;;
}

.icon-lg {
  font-size: clamp(2rem, 2.5vw, 2.5rem) !important;;
}

.icon-md {
  font-size: clamp(1.5rem, 2vw, 2rem) !important;;
}

.icon-sm {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem) !important;;
}

/* Stat Numbers */
.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;;
  font-weight: 800;
  color: var(--accent-color);
}

.stat-label {
  font-size: clamp(0.8rem, 1vw, 0.9rem) !important;;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Avatar/Profile */
.avatar-initial {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
}

.avatar-initial.team-avatar-initial {
  width: 88px;
  height: 88px;
  min-width: 88px;
  min-height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,44,44,0.09);
}

.avatar-initial.team-avatar-initial-bilge {
  width: 88px;
  height: 88px;
  min-width: 88px;
  min-height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,44,44,0.09);
}

/* Section Headings */
.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.subsection-heading {
  font-size: clamp(1.125rem, 1.5vw, 1.35rem) !important;;
  margin-bottom: 1rem;
}

/* About Hero Stats */
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

/* About Hero Title Decorative Lines */
.hero-title-decorator {
  width: 3px;
  height: 30px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-light) 100%);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero-title-decorator {
    display: none;
  }
}

/* Core Strengths Section */
.strength-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.strength-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.15);
  border-color: var(--accent-color);
}

.strength-item:last-child {
  margin-bottom: 0;
}

.strength-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.strength-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.strength-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.strength-icon i {
  font-size: 1.5rem;
  color: white;
}

.strength-item:hover .strength-icon {
  transform: rotate(5deg) scale(1.1);
}

.strength-item h4 {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  color: var(--primary-color);
}

.strength-item p {
  margin: 0;
  font-size: clamp(0.8rem, 1.2vw, 0.875rem);
  color: var(--text-secondary);
}

.strength-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  white-space: nowrap;
  color: white;
}

.strength-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.strength-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 600;
}

/* Why Choose Icons */
.why-choose-icon {
  width: clamp(50px, 10vw, 60px) !important;
  height: clamp(50px, 10vw, 60px) !important;
}

/* Team Page - Mobile Tabs */
.team-tabs-mobile {
  display: none;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.75rem;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-tab-btn i {
  font-size: 2.25rem;
  transition: all 0.3s ease;
}

.team-tab-btn span {
  font-weight: 700;
  font-size: 1rem;
}

.team-tab-btn small {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.team-tab-btn:hover {
  background: rgba(139, 115, 85, 0.05);
  color: var(--accent-color);
}

.team-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  color: white;
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.team-tab-btn.active i {
  transform: scale(1.15);
}

.team-tab-btn.active small {
  opacity: 1;
}

@media (max-width: 768px) {
  .team-tabs-mobile {
    display: flex;
  }

  .team-member-card {
    display: none;
  }

  .team-member-card.active {
    display: block;
    animation: fadeInUp 0.4s ease;
  }
}

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

/* ============================================
   Accessibility
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
  border-radius: var(--border-radius-sm);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  header,
  footer,
  .btn,
  .hero-section {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* ============================================
   Special Effects
   ============================================ */

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-base);
}

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

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  background: var(--accent-color);
  color: white;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--border-color);
  margin: 3rem 0;
}

/* ============================================
   Hero Enhancements
   ============================================ */

/* Animated Background Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.15;
  border-radius: 50%;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-warm) 0%, transparent 70%);
  top: -250px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-shape 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-50px) translateX(30px);
  }
}

@keyframes pulse-shape {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.25;
  }
}

/* Hero gradient text */
.gradient-text-hero {
  background: linear-gradient(135deg, #e6bf90 0%, #e3bb8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Hero title animation */
.hero-title {
  animation: slideInUp 0.8s ease-out;
}

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

/* Hero stats card hover */
.hero-stats-card {
  animation: fadeInRight 1s ease-out;
}

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

/* Stat item hover effect */
.stat-item {
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateX(5px);
}

/* ============================================
   Minimal Footer Styles
   ============================================ */

footer.minimal-footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem 0 1rem;
  /*margin-top: 6rem;*/
  border-top: 1px solid var(--border-color);
}

.footer-minimal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
  max-width: 450px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-minimal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-minimal-bottom strong {
  color: #e6e6e6 !important;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}
