/* ============================================
   MODERN TEKNIK TESISAT - Soft Color Palette
   ============================================ */
:root {
  /* Soft Color System - Pastel & Elegant */
  --primary: #5b8def;
  --primary-light: #8bb4f7;
  --primary-dark: #3d6bc7;
  --primary-glow: rgba(91, 141, 239, 0.4);

  --secondary: #f8f9fc;
  --secondary-light: #ffffff;
  --secondary-dark: #eef0f5;

  --accent: #e8927c;
  --accent-light: #f4b8a8;
  --accent-glow: rgba(232, 146, 124, 0.3);

  --success: #7dd3a8;
  --warning: #f5d08c;
  --danger: #e78b8b;

  --text: #2d3748;
  --text-muted: #718096;
  --text-dark: #1a202c;

  /* Soft Glass Effect Colors */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(91, 141, 239, 0.2);
  --glass-shadow: 0 8px 32px rgba(91, 141, 239, 0.12);

  --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 252, 0.98));
  --card-border: 1px solid rgba(91, 141, 239, 0.15);

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
  --transition-slow: 0.8s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 50%, #e8ecf1 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Selection */
::selection {
  background: var(--primary-glow);
  color: var(--text);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(91, 141, 239, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(91, 141, 239, 0.08);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(91, 141, 239, 0.12);
  border-color: rgba(91, 141, 239, 0.25);
}

/* ============================================
   MODERN NAVBAR
   ============================================ */
.modern-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition-normal);
}

.modern-navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(91, 141, 239, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.navbar-brand span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 80%;
}

/* ============================================
   HERO SECTION - Soft & Elegant
   ============================================ */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(91, 141, 239, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(232, 146, 124, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #f8f9fc 0%, #eef2f7 50%, #e8ecf1 100%);
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 141, 239, 0.15) 0%, transparent 70%);
  animation: pulse-glow 10s ease-in-out infinite;
  filter: blur(80px);
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 249, 252, 0.85), rgba(238, 242, 247, 0.6));
  z-index: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(91, 141, 239, 0.15), rgba(232, 146, 124, 0.1));
  border: 1px solid rgba(91, 141, 239, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: var(--space-md) 0;
  background: linear-gradient(135deg, #2d3748 0%, #5b8def 50%, #e8927c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Modern Buttons */
.btn-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.btn-primary-modern {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(91, 141, 239, 0.3);
  border: none;
}

.btn-primary-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(91, 141, 239, 0.25);
}

.btn-primary-modern:hover::before {
  left: 100%;
}

.btn-secondary-modern {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(91, 141, 239, 0.3);
  box-shadow: 0 0 20px rgba(91, 141, 239, 0.1);
}

.btn-secondary-modern:hover {
  background: rgba(91, 141, 239, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-main-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(91, 141, 239, 0.2);
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Floating Cards in Hero */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(91, 141, 239, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(91, 141, 239, 0.15);
  animation: float-card 4s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 2s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-padding {
  padding: var(--space-2xl) 0;
}

/* ============================================
   SERVICES SECTION - Header & Layout
   ============================================ */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 141, 239, 0.2), transparent);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, rgba(91, 141, 239, 0.1), rgba(232, 146, 124, 0.08));
  border: 1px solid rgba(91, 141, 239, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5b8def;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3748;
  line-height: 1.2;
}

.section-title .text-gradient {
  background: linear-gradient(135deg, #5b8def 0%, #e8927c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SERVICE CARDS - Clean & Professional
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.service-card-modern {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 2px 8px rgba(91, 141, 239, 0.08),
    0 8px 24px rgba(91, 141, 239, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-modern:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 32px rgba(91, 141, 239, 0.15),
    0 4px 12px rgba(91, 141, 239, 0.1);
}

/* Service Image Wrapper - Fixed Aspect Ratio */
.service-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-image-wrapper img {
  transform: scale(1.05);
}

/* Default Icon when no image */
.service-image-wrapper .service-default-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef4ff 0%, #f0f7ff 50%, #fef5f2 100%);
}

.service-image-wrapper .service-default-icon i {
  font-size: 3.5rem;
  color: #5b8def;
  opacity: 0.7;
}

/* Gradient Overlay */
.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7) 20%,
    transparent 50%
  );
  pointer-events: none;
}

/* Service Content */
.service-content {
  padding: 1.5rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
}

/* Service Icon Badge */
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #5b8def 0%, #8bb4f7 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  box-shadow:
    0 4px 12px rgba(91, 141, 239, 0.25),
    0 2px 4px rgba(91, 141, 239, 0.15);
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon {
  transform: scale(1.05);
  box-shadow:
    0 6px 16px rgba(91, 141, 239, 0.3),
    0 3px 6px rgba(91, 141, 239, 0.2);
}

/* Service Title */
.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2d3748;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Service Description */
.service-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Service Link Button */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5b8def;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  background: rgba(91, 141, 239, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: 1px solid rgba(91, 141, 239, 0.15);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  background: #5b8def;
  color: white;
  border-color: #5b8def;
  transform: translateX(4px);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-content {
    padding: 1.25rem 1.5rem 1.75rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .service-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .service-content {
    padding: 1rem 1.25rem 1.5rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-desc {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }

  .service-link {
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-modern {
  background: linear-gradient(180deg, #eef2f7 0%, #f8f9fc 100%);
  position: relative;
  overflow: hidden;
}

.stats-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 141, 239, 0.3), transparent);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #5b8def, #8bb4f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: scaleY(0);
  transition: transform var(--transition-normal);
  border-radius: 2px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(91, 141, 239, 0.1);
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(91, 141, 239, 0.08), rgba(232, 146, 124, 0.08));
  border: 1px solid rgba(91, 141, 239, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.05);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-text {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  box-shadow: 0 4px 20px rgba(91, 141, 239, 0.06);
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.testimonial-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-modern {
  background: linear-gradient(135deg, #eef4ff 0%, #f0f7ff 50%, #fef5f2 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(91, 141, 239, 0.1);
  border-bottom: 1px solid rgba(91, 141, 239, 0.1);
}

.cta-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(91, 141, 239, 0.08) 0%, transparent 60%);
  animation: cta-rotate 20s linear infinite;
}

@keyframes cta-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 999;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.floating-btn:hover {
  transform: scale(1.15) rotate(10deg);
}

.floating-whatsapp-modern {
  bottom: 100px;
  background: linear-gradient(135deg, #7dd3a8, #5bb48a);
  box-shadow: 0 4px 15px rgba(125, 211, 168, 0.4);
}

.floating-call-modern {
  bottom: 24px;
  background: linear-gradient(135deg, #5b8def, #e8927c);
  animation: pulse-ring 2s infinite;
  box-shadow: 0 4px 15px rgba(91, 141, 239, 0.3);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(91, 141, 239, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(91, 141, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 141, 239, 0); }
}

/* ============================================
   FORM MODERN
   ============================================ */
.form-modern input,
.form-modern textarea,
.form-modern select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(91, 141, 239, 0.2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-modern input:focus,
.form-modern textarea:focus,
.form-modern select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(91, 141, 239, 0.1);
}

.form-modern input::placeholder {
  color: var(--text-muted);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  transform: translateZ(0);
  will-change: transform;
}

/* Shimmer Loading Effect */
.shimmer {
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Magnetic Button Effect */
.magnetic-btn {
  transition: transform 0.3s ease;
}

/* Tilt Effect for Cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

/* Progress Bar */
.progress-bar {
  height: 4px;
  background: rgba(91, 141, 239, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ============================================
   PAGE HEADER - Simple (No Cover Image)
   ============================================ */
.page-header-simple {
  padding: 120px 0 40px;
  background: linear-gradient(180deg, #f8f9fc 0%, #eef4ff 50%, #ffffff 100%);
  border-bottom: 1px solid rgba(91, 141, 239, 0.1);
  position: relative;
  overflow: hidden;
}

.page-header-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5b8def, #8bb4f7, #e8927c);
}

.page-header-simple .page-breadcrumb {
  margin-bottom: 1.5rem;
}

.page-header-simple .page-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-header-simple .page-breadcrumb .breadcrumb-item a {
  color: #5b8def;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-header-simple .page-breadcrumb .breadcrumb-item a:hover {
  color: #e8927c;
}

.page-header-simple .page-breadcrumb .breadcrumb-item.active {
  color: #64748b;
  font-weight: 500;
}

.page-header-simple .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #94a3b8;
  content: "/";
}

.page-header-simple .page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #2d3748;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-header-simple .page-description {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

/* Service Keywords Tags */
.service-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.keyword-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(91, 141, 239, 0.1), rgba(232, 146, 124, 0.08));
  border: 1px solid rgba(91, 141, 239, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5b8def;
  transition: all 0.3s ease;
}

.keyword-tag:hover {
  background: linear-gradient(135deg, #5b8def, #8bb4f7);
  color: white;
  border-color: #5b8def;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 141, 239, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .page-header-simple {
    padding: 100px 0 30px;
  }

  .page-header-simple .page-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-header-simple .page-description {
    font-size: 1rem;
  }

  .service-keywords {
    gap: 0.5rem;
  }

  .keyword-tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   PAGE HERO - Inner Page Header with Cover Image
   ============================================ */
.page-hero {
  position: relative;
  min-height: 400px;
  max-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 60px 0 40px;
  margin-top: 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef4ff 50%, #fef5f2 100%);
}

.page-hero.has-image {
  min-height: 450px;
  max-height: 550px;
}

.page-hero.no-image {
  min-height: 280px;
  max-height: 350px;
}

/* Hero Image Container - Full visibility without cropping */
.page-hero-image-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef4ff 0%, #f0f7ff 50%, #fef5f2 100%);
  z-index: 0;
  padding: 20px;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 1200px;
  max-height: 450px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(91, 141, 239, 0.15);
}

/* Overlay for better text readability */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(248, 249, 252, 0.3) 0%,
    rgba(248, 249, 252, 0.6) 50%,
    rgba(248, 249, 252, 0.95) 100%
  );
  z-index: 1;
}

/* Hero Content */
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-breadcrumb {
  margin-bottom: 1rem;
}

.page-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-breadcrumb .breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
  color: var(--accent);
}

.page-breadcrumb .breadcrumb-item.active {
  color: var(--text-muted);
  font-weight: 500;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
  content: ">";
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2d3748;
  background: linear-gradient(135deg, #2d3748 0%, #5b8def 50%, #e8927c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.page-hero-description {
  font-size: 1.125rem;
  color: #718096;
  max-width: 700px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Inner Page Main Content */
.inner-page {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 10%);
  min-height: 50vh;
}

/* ============================================
   CONTENT CARD - All text dark for readability
   ============================================ */
.content-card {
  background: #ffffff;
  border: 1px solid rgba(91, 141, 239, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 20px rgba(91, 141, 239, 0.08);
  color: #2d3748 !important;
}

/* Force all text elements to be dark */
.content-card * {
  color: #2d3748;
}

.content-card h1,
.content-card h2,
.content-card h3,
.content-card h4,
.content-card h5,
.content-card h6 {
  color: #1a202c !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-card p,
.content-card span,
.content-card div,
.content-card li,
.content-card td,
.content-card th {
  color: #2d3748 !important;
}

.content-card a {
  color: #5b8def !important;
  text-decoration: none;
}

.content-card a:hover {
  color: #3d6bc7 !important;
  text-decoration: underline;
}

.content-card strong,
.content-card b {
  color: #1a202c !important;
  font-weight: 600;
}

.content-card small {
  color: #64748b !important;
}

/* Fix for any imported content that might have inline styles */
.content-card [style*="color: white"],
.content-card [style*="color: #fff"],
.content-card [style*="color:#fff"],
.content-card [style*="color: rgb(255"],
.content-card [style*="color: #ffffff"],
.content-card [style*="color:#ffffff"] {
  color: #2d3748 !important;
}

/* Form elements in content card */
.content-card input,
.content-card textarea,
.content-card select {
  background: #ffffff;
  border: 1px solid rgba(91, 141, 239, 0.2);
  color: #2d3748;
}

.content-card input::placeholder,
.content-card textarea::placeholder {
  color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hero {
    min-height: 350px;
    max-height: 450px;
    padding: 40px 0 30px;
    margin-top: 60px;
  }

  .page-hero.has-image {
    min-height: 400px;
    max-height: 500px;
  }

  .page-hero-image {
    max-height: 350px;
    padding: 10px;
  }

  .page-hero-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .page-hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 300px;
    max-height: 400px;
    padding: 30px 0 25px;
  }

  .page-hero.has-image {
    min-height: 350px;
    max-height: 450px;
  }

  .page-hero-image {
    max-height: 280px;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .floating-card {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--space-xl) 0;
  }

  .hero-modern {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn-modern {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   MAP SECTION - Full Width Responsive Map
   ============================================ */
.map-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 50%, #eef4ff 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 141, 239, 0.3), transparent);
}

.map-container-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.map-container {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(91, 141, 239, 0.15),
    0 8px 24px rgba(91, 141, 239, 0.1);
  background: #ffffff;
  border: 1px solid rgba(91, 141, 239, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
  border: none;
}

.map-feature {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(91, 141, 239, 0.12);
  box-shadow: 0 4px 16px rgba(91, 141, 239, 0.06);
  transition: all 0.3s ease;
}

.map-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(91, 141, 239, 0.12);
  border-color: rgba(91, 141, 239, 0.2);
}

.map-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #5b8def, #8bb4f7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(91, 141, 239, 0.25);
}

.map-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.map-feature p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Map Heights */
@media (min-width: 1400px) {
  .map-container iframe {
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .map-container iframe {
    min-height: 400px;
  }

  .map-container-wrapper {
    padding: 0 0.75rem;
  }

  .map-container {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 3rem 0;
  }

  .map-container iframe {
    min-height: 350px;
  }

  .map-container {
    border-radius: 16px;
  }

  .map-container-wrapper {
    padding: 0 0.5rem;
  }

  .map-feature {
    padding: 1.25rem;
  }

  .map-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    min-height: 300px;
  }

  .map-container {
    border-radius: 12px;
  }
}

/* ============================================
   PAGE HERO SIMPLE - Modern Inner Page Header
   ============================================ */
.page-hero-simple {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  margin-top: 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(91, 141, 239, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(232, 146, 124, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #f8f9fc 0%, #eef4ff 50%, #fef5f2 100%);
}

.page-hero-simple::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 141, 239, 0.12) 0%, transparent 70%);
  animation: pulse-glow 10s ease-in-out infinite;
  filter: blur(80px);
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(248, 249, 252, 0.9) 0%,
    rgba(238, 244, 255, 0.8) 50%,
    rgba(254, 245, 242, 0.9) 100%
  );
  z-index: 0;
}

.hero-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.hero-breadcrumb .breadcrumb-item a {
  color: #5b8def;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.hero-breadcrumb .breadcrumb-item a:hover {
  color: #e8927c;
}

.hero-breadcrumb .breadcrumb-item.active {
  color: #64748b;
  font-weight: 500;
  font-size: 0.9rem;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #94a3b8;
  content: ">";
}

.page-hero-simple .hero-badge-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, rgba(91, 141, 239, 0.1), rgba(232, 146, 124, 0.08));
  border: 1px solid rgba(91, 141, 239, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5b8def;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: float 3s ease-in-out infinite;
}

.page-hero-simple .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #2d3748 0%, #5b8def 50%, #e8927c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero-simple .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.page-hero-simple .service-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.page-hero-simple .keyword-tag {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(91, 141, 239, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5b8def;
  box-shadow: 0 2px 8px rgba(91, 141, 239, 0.08);
}

.page-hero-simple .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero-simple {
    min-height: 400px;
    padding: 120px 0 60px;
  }

  .page-hero-simple .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .page-hero-simple .hero-subtitle {
    font-size: 1rem;
  }

  .page-hero-simple .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .page-hero-simple .hero-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }
}
