/* Detay Sürücü Kursu - Modern Tasarım */
:root {
  --brand-primary: #4494a6;
  --brand-dark: #2c5f6f;
  --brand-light: #eeeef0;
  --success: #198754;
  --warning: #ffc107;
  --info: #0dcaf0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: linear-gradient(180deg, #f0f2f5 0%, #ffffff 50%, #f8f9fa 100%);
  background-attachment: fixed;
  color: var(--brand-dark);
  line-height: 1.6;
  min-height: 100vh;
}


/* Global Page Styles */
* {
  scroll-behavior: smooth;
}

.section {
  position: relative;
  overflow: hidden;
}
.text-blue{
  color: var(--brand-primary);
}
/* Enhanced Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2c5f6f 0%, #4494a6 50%, #5aa3b5 100%);
}

/* Background Layers */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/img/direksiyon.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(68, 148, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(90, 163, 181, 0.08) 0%, transparent 50%);
  z-index: 2;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 95, 111, 0.8) 0%,
    rgba(44, 95, 111, 0.6) 30%,
    rgba(44, 95, 111, 0.3) 60%,
    rgba(44, 95, 111, 0.1) 80%,
    transparent 100%
  );
  z-index: 3;
}

/* Floating Elements */
.hero-float-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
  z-index: 4;
}

.hero-float-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-float-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.min-vh-75 {
  min-height: 75vh;
}

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

/* Hero Content Styles */
.hero-badge-wrapper {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  animation: fadeInUp 0.9s ease;
}

.hero-title-line {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(68, 148, 166, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  animation: fadeInUp 1s ease;
}

/* Enhanced Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  animation: fadeInUp 1.1s ease;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.stat-symbol {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(68, 148, 166, 0.3);
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(68, 148, 166, 0.4);
  color: white;
  text-decoration: none;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

/* Hero Image Side */
.hero-image-container {
  position: relative;
  animation: fadeInRight 1.3s ease;
}

.hero-image-bg-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, rgba(68, 148, 166, 0.2) 0%, rgba(90, 163, 181, 0.2) 100%);
  border-radius: 30px;
  z-index: -1;
  animation: pulseShape 4s ease-in-out infinite;
}

@keyframes pulseShape {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 34, 64, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(68, 148, 166, 0.1) 0%, rgba(90, 163, 181, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .hero-image-overlay {
  opacity: 1;
}

/* Achievement Badge */
.achievement-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;

  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(68, 148, 166, 0.3);
  animation: bounce 2s infinite;
  z-index: 5;
}

.achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.achievement-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.achievement-label {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 500;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-image-wrap {
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  box-shadow: 0 25px 50px rgba(11, 34, 64, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.hero-image-wrap:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-floating-card {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(242, 240, 240, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Buttons & Badges */
.btn-shine {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
  z-index: 1;
}

.btn-shine span,
.btn-shine svg {
  position: relative;
  z-index: 2;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.btn-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--brand-dark);
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
}

.soft-badge {
  background: linear-gradient(180deg, #3a7bfd, #2e6cf1);
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.25);
  padding: 0.5rem 1rem;
}

.bg-primary-soft {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
}

/* Features Section */
.features-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
}

/* Enhanced Section Spacing */
.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
}

.section:nth-child(odd) {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Section Separators */
.section:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 20%, var(--brand-primary) 80%, transparent 100%);
  opacity: 0.2;
}

.feature-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateY(-15px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-light) 0%, rgba(255, 255, 255, 0.9) 100%);
  color: var(--brand-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px rgba(68, 148, 166, 0.3);
}

.feature-item:hover .feature-icon::before {
  opacity: 1;
}

.feature-item:hover .feature-icon svg {
  color: white;
  z-index: 2;
  position: relative;
}


.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  color: var(--brand-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
    border-radius: 50%;
      color: white;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px rgba(68, 148, 166, 0.3);
}

.feature-item:hover .feature-icon::before {
  opacity: 1;
}

.feature-item:hover .feature-icon svg {
  color: white;
  z-index: 2;
  position: relative;
}

.feature-icon-mini {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-light) 0%, rgba(255, 255, 255, 0.9) 100%);
  color: var(--brand-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-icon-mini::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature-item:hover .feature-icon-mini {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px rgba(68, 148, 166, 0.3);
}

.feature-item:hover .feature-icon-mini::before {
  opacity: 1;
}

.feature-item:hover .feature-icon-mini svg {
  color: white;
  z-index: 2;
  position: relative;
}

.shadow-hover {
  transition: all 0.4s ease;
  border: 1px solid rgba(13, 110, 253, 0.1);
  border-radius: 20px;
  background: white;
}

.shadow-hover:hover {
  box-shadow: 0 15px 40px rgba(11, 34, 64, 0.1);
  border-color: var(--brand-primary);
  transform: translateY(-5px);
}

/* Navbar */
.navbar-glass {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  border-bottom: 1px solid rgba(68, 148, 166, 0.1);
  box-shadow: 0 2px 20px rgba(44, 95, 111, 0.08);
}

.brand-logo {
  border-radius: 8px;
}


.fancy-underline {
  position: relative;
}

.fancy-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), #5aa3b5);
  transition: width 250ms ease;
}

.fancy-underline:hover::after,
.fancy-underline.active::after {
  width: 100%;
}

.btn-call {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
}

/* Services Section */
.services-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

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

.service-card {
  transition: all 0.4s ease;
  background: white;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.05), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 34, 64, 0.1);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
}

/* Modern Service Cards */
.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.02) 0%, rgba(13, 110, 253, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 34, 64, 0.15);
}

.service-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.service-icon-container {
  position: relative;
  display: inline-block;
}

.service-icon-bg {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #6ea8fe 100%);
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-bg {
  opacity: 0.2;
  transform: scale(1.2);
}

.service-icon {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(13, 110, 253, 0.2));
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(13, 110, 253, 0.3));
}

.service-badge {
  margin-top: 1rem;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #6ea8fe 100%);
}

.bg-gradient-success {
  background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
}

.bg-gradient-info {
  background: linear-gradient(135deg, var(--info) 0%, #0dcaf0 100%);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.feature-item {
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(13, 110, 253, 0.05);
  transform: translateX(5px);
}

.feature-icon-mini {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

/* Psikoteknik Card Special Styles */
.psikoteknik-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.psikoteknik-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(68, 148, 166, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.psikoteknik-card:hover::before {
  opacity: 1;
}

.psikoteknik-image-container {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.psikoteknik-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.psikoteknik-card:hover .psikoteknik-image {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.2) saturate(1.3);
}

.psikoteknik-overlay {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.psikoteknik-card:hover .psikoteknik-overlay {
  opacity: 1;
}

.psikoteknik-badge {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.psikoteknik-card:hover .psikoteknik-badge {
  transform: translateY(0);
}

.psikoteknik-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.psikoteknik-card:hover .psikoteknik-glow {
  opacity: 1;
}

.psikoteknik-price {
  background: linear-gradient(135deg, var(--brand-primary), #5aa3b5);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.psikoteknik-card:hover .psikoteknik-price {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(68, 148, 166, 0.4);
}

/* Pulse Button Animation */
.btn-pulse {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-pulse:hover::after {
  width: 300px;
  height: 300px;
}

.btn-pulse:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.service-price {
  background: linear-gradient(135deg, var(--brand-primary), #6ea8fe);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.service-features {
  background: rgba(13, 110, 253, 0.05);
  border-radius: 12px;
  padding: 1rem;
}

.service-features small {
  color: var(--brand-dark);
  font-weight: 500;
}

/* Enhanced Cards */
.card {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(44, 95, 111, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(44, 95, 111, 0.15);
}

.card img.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover img.card-img-top {
  transform: scale(1.08);
}

.card-title {
  font-weight: 700;
  color: var(--brand-dark);
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accordion-clean .accordion-item {
  border: 1px solid rgba(13, 110, 253, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.04);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.accordion-clean .accordion-item:hover {
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.1);
  border-color: var(--brand-primary);
}

.accordion-clean .accordion-button {
  font-weight: 600;
  padding: 1.5rem;
}

.accordion-clean .accordion-button:not(.collapsed) {
  color: var(--brand-primary);
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.05));
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card {
  transition: all 0.4s ease;
  border-radius: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 34, 64, 0.1);
}

.testimonial-rating {
  display: flex;
  align-items: center;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  color: var(--brand-dark);
}

.testimonial-author {
  border-top: 1px solid rgba(13, 110, 253, 0.1);
  padding-top: 1rem;
}

.testimonial-avatar {
  flex-shrink: 0;
}

/* Footer */
.footer-gradient {
  background: radial-gradient(800px 300px at 10% 0%, rgba(13, 110, 253, 0.15) 0%, transparent 60%),
              radial-gradient(800px 300px at 90% 10%, rgba(110, 168, 254, 0.15) 0%, transparent 60%),
              linear-gradient(135deg, var(--brand-dark) 0%, #1a365d 100%);
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateX(5px);
}

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

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Map */
.map-wrapper {
  transition: all 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 34, 64, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Enhanced Visual Effects */
::selection {
  background: var(--brand-primary);
  color: white;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--brand-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-dark);
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Modern Buttons */
.btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #5aa3b5 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(68, 148, 166, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(68, 148, 166, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(68, 148, 166, 0.3);
}

/* Responsive */
@media (max-width: 575.98px) {
  .display-5 { font-size: 2rem; }
  .hero-section { padding: 4rem 0; }
  .hero-shape { display: none; }
  .section { padding: 4rem 0; }
}