/* Modern CSS Variables */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #06b6d4;
  --accent: #10b981;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

/* Top Bar */
.top-bar {
  background: var(--gray-900);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 32px;
  font-weight: 500;
}

.top-bar-item i {
  color: var(--accent);
  font-size: 14px;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}

.logo-text h4 {
  color: var(--gray-900);
  font-weight: 800;
  margin: 0;
  font-size: 20px;
}

.logo-text small {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 500;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.stars {
  color: #fbbf24;
  font-size: 14px;
}

.rating-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
}

.verified {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

/* Navigation */
.navbar-nav {
  gap: 8px;
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  padding: 12px 20px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(14, 165, 233, 0.1);
}

/* Search */
.search-box {
  position: relative;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--gray-50);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  background: var(--white);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 16px;
}

/* Buttons */
.btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-white:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--gray-50);
  padding: 20px 0;
}

.breadcrumb {
  margin: 0;
  background: none;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--gray-500);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--gray-800);
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="20" r="0.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
}

.hero-feature i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.stats-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.stats-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: #fbbf24;
}

.stats-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stats-label {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 600;
}

.badge-pro {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--white);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-description {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Blog Style Service Cards */
.service-blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
  height: 100%;
}

.service-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-blog-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(6, 182, 212, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-blog-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.service-content {
  padding: 32px;
}

.service-category {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.service-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15px;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.service-features i {
  color: var(--accent);
  font-size: 14px;
  width: 16px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.service-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

/* Service Details */
.service-details {
  padding: 80px 0;
  background: var(--gray-50);
}

.service-detail-section {
  margin-bottom: 120px;
  scroll-margin-top: 200px;
}

.service-detail-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-content {
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.service-detail-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.service-detail-content .lead {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--gray-700);
}

.feature-item i {
  color: var(--accent);
  font-size: 16px;
}

.service-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* Services Navigation */
.services-nav {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
  z-index: 999;
}

.nav-pills-container {
  overflow-x: auto;
  padding-bottom: 10px;
}

.nav-pills {
  flex-wrap: nowrap;
  gap: 12px;
  min-width: max-content;
}

.nav-pills .nav-link {
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  padding: 16px 24px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Info Cards */
.service-info-cards {
  margin-top: 80px;
}

.info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--white);
}

.info-card h5 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card ul li {
  padding: 8px 0;
  color: var(--gray-600);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.info-card ul li:last-child {
  border-bottom: none;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: var(--white);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.reviewer-info h6 {
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  font-size: 16px;
}

.reviewer-info small {
  color: var(--gray-500);
  font-weight: 500;
}

.review-rating {
  margin-left: auto;
}

.review-text {
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 15px;
}

.review-date {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--gray-50);
}

.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion-button {
  background: var(--white);
  color: var(--gray-900);
  font-weight: 600;
  padding: 24px 28px;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
}

.accordion-body {
  padding: 0 28px 24px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--white);
}

.contact-card h5 {
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  font-size: 18px;
}

.contact-card p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.contact-link:hover {
  color: var(--primary-dark);
}

/* Contact Info Cards */
.contact-info-cards {
  margin-bottom: 80px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.contact-info-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact-info-card .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

/* Contact Form */
.contact-form-section {
  background: var(--white);
  padding: 80px 0;
}

.form-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.form-header p {
  color: var(--gray-600);
  font-size: 16px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--gray-50);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  background: var(--white);
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.form-control.is-valid {
  border-color: var(--success);
}

.invalid-feedback {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.valid-feedback {
  color: var(--success);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.service-type-option {
  position: relative;
}

.service-type-option input[type="checkbox"] {
  display: none;
}

.service-type-label {
  display: block;
  padding: 12px 16px;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-type-option input[type="checkbox"]:checked + .service-type-label {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading {
  pointer-events: none;
}

.submit-btn.loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success Message */
.success-message {
  display: none;
  background: var(--success);
  color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 600;
}

.success-message.show {
  display: block;
  animation: slideDown 0.5s ease;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.map-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gray-600);
}

.map-placeholder i {
  font-size: 64px;
  margin-bottom: 16px;
  color: var(--primary);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 16px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.stat-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.stat-description {
  color: var(--gray-600);
  font-size: 14px;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--white);
}

.value-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--white);
}

.value-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 48px;
  color: var(--white);
  font-weight: 800;
}

.team-card h5 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.team-position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 0;
  padding-left: 40px;
  text-align: left;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}

.timeline-year {
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 32px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
}

/* Service Areas */
.service-areas {
  padding: 80px 0;
  background: var(--gray-50);
}

/* Filter Section */
.filter-section {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
  z-index: 999;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--gray-100);
  color: var(--gray-600);
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Company Cards */
.company-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.company-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
  color: inherit;
}

.company-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.company-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
}

.company-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.company-info .company-type {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.company-rating .stars {
  color: #fbbf24;
  font-size: 16px;
}

.company-rating .rating-score {
  font-weight: 700;
  color: var(--gray-700);
}

.company-services {
  margin-bottom: 24px;
}

.company-services h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.coverage-areas {
  margin-bottom: 24px;
}

.coverage-areas h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.area-list {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

.company-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-item .stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
}

/* Company Detail Page */
.company-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  color: var(--white);
}

.company-hero-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.company-hero-logo {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.company-hero-info h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.company-hero-type {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}

.company-hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.company-hero-rating .stars {
  color: #fbbf24;
  font-size: 24px;
}

.company-hero-rating .rating-score {
  font-size: 1.5rem;
  font-weight: 800;
}

.company-hero-description {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 32px;
}

.company-hero-actions {
  display: flex;
  gap: 20px;
}

/* Company Services Grid */
.company-services-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--white);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-card .btn {
  width: 100%;
}

/* Company Areas */
.company-areas-section {
  padding: 80px 0;
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.area-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.area-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Company Contact */
.company-contact-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-item-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.contact-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-item-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--white);
}

.contact-item-card h5 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.contact-item-card p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-item-card .contact-link {
  font-size: 16px;
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-section .lead {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer h5 {
  font-weight: 800;
  margin-bottom: 24px;
  font-size: 18px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  .mobile-menu {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 20px;
    padding: 20px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .service-detail-content {
    margin-top: 0;
    padding: 32px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .service-actions {
    flex-direction: column;
  }

  .form-container {
    padding: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 32px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .company-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .company-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-detail-content h2 {
    font-size: 2rem;
  }

  .service-content {
    padding: 24px;
  }

  .contact-info-card {
    padding: 32px;
  }

  .form-container {
    padding: 24px;
  }

  .service-type-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 24px;
  }

  .stat-card,
  .value-card,
  .team-card {
    padding: 32px;
  }

  .timeline-content {
    padding: 24px;
  }

  .company-header {
    flex-direction: column;
    text-align: center;
  }

  .company-stats {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .company-hero h1 {
    font-size: 2rem;
  }

  .company-hero-logo {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  animation: countUp 1s ease-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.btn.loading {
  position: relative;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Utility classes */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.shadow-custom {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
  border-radius: 15px;
}
.hemen-ara-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e53935; /* Kırmızı - dikkat çekici */
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.hemen-ara-btn:hover {
    background-color: #c62828; /* Hover rengi - daha koyu kırmızı */
}