/* ============================================
   MEDILLAH LANDING PAGE STYLES
   ============================================ */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
  --primary: #179BD0;
  --primary-dark: #127CA6;
  --primary-light: rgba(23, 155, 208, 0.1);
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --black: #1C2434;
  --white: #FFFFFF;
  --body: #64748B;
  --bodydark: #AEB7C0;
  --stroke: #E2E8F0;
  --gray: #EFF4FB;
  --gray-2: #F7F9FC;
  --boxdark: #24303F;
  --boxdark-2: #1A222C;
  --strokedark: #2E3A47;
  --meta-4: #313D4A;
  --whiter: #F5F7FD;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flexbox */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Spacing */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-32 { padding-top: 8rem; }
.pb-20 { padding-bottom: 5rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-auto { height: auto; }
.max-w-screen-xl { max-width: 1280px; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.-top-6 { top: -1.5rem; }
.-right-6 { right: -1.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }

/* Z-Index */
.z-50 { z-index: 50; }

/* Border */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-2 { border-width: 2px; }
.border-stroke { border-color: var(--stroke); }
.border-primary { border-color: var(--primary); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }

/* Background Colors */
.bg-white { background-color: var(--white); }
.bg-primary { background-color: var(--primary); }
.bg-gray { background-color: var(--gray); }
.bg-gray-2 { background-color: var(--gray-2); }
.bg-boxdark { background-color: var(--boxdark); }
.bg-boxdark-2 { background-color: var(--boxdark-2); }
.bg-whiter { background-color: var(--whiter); }
.bg-success { background-color: var(--success); }
.bg-meta-4 { background-color: var(--meta-4); }
.bg-opacity-90 { --tw-bg-opacity: 0.9; }

/* Background with opacity */
.bg-primary\/10 { background-color: rgba(23, 155, 208, 0.1); }
.bg-primary\/5 { background-color: rgba(23, 155, 208, 0.05); }
.bg-success\/10 { background-color: rgba(34, 197, 94, 0.1); }

/* Border with opacity */
.border-primary\/20 { border-color: rgba(23, 155, 208, 0.2); }

/* Text Colors */
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.text-primary { color: var(--primary); }
.text-body { color: var(--body); }
.text-bodydark { color: var(--bodydark); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }

/* Text white with opacity */
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }

/* Font Size */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

/* Font Weight */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text Alignment */
.text-center { text-align: center; }

/* Line Height */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { 
  transition-property: color, background-color, border-color;
  transition-timing-function: ease;
  transition-duration: 0.3s;
}

/* Hover States */
.hover\:bg-gray:hover { background-color: var(--gray); }
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:bg-gray-2:hover { background-color: var(--gray-2); }
.hover\:bg-meta-4:hover { background-color: var(--meta-4); }
.hover\:bg-opacity-90:hover { opacity: 0.9; }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-white:hover { color: var(--white); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:bg-primary\/5:hover { background-color: rgba(23, 155, 208, 0.05); }
.hover\:bg-primary\/10:hover { background-color: rgba(23, 155, 208, 0.1); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }

/* Group Hover */
.group:hover .group-hover\:bg-primary\/20 { background-color: rgba(23, 155, 208, 0.2); }

/* Order (for flexbox) */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Backdrop Filter */
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ============================================
   DARK MODE STYLES
   ============================================ */
.dark .dark\:bg-boxdark { background-color: var(--boxdark); }
.dark .dark\:bg-boxdark-2 { background-color: var(--boxdark-2); }
.dark .dark\:bg-meta-4 { background-color: var(--meta-4); }
.dark .dark\:border-strokedark { border-color: var(--strokedark); }
.dark .dark\:text-white { color: var(--white); }
.dark .dark\:text-bodydark { color: var(--bodydark); }
.dark .dark\:hover\:bg-meta-4:hover { background-color: var(--meta-4); }
.dark .dark\:hover\:text-primary:hover { color: var(--primary); }
.dark .dark\:hover\:bg-primary\/10:hover { background-color: rgba(23, 155, 208, 0.1); }

/* Dark mode gradient backgrounds */
.dark .dark\:from-boxdark-2 { --tw-gradient-from: var(--boxdark-2); }
.dark .dark\:via-boxdark { --tw-gradient-via: var(--boxdark); }
.dark .dark\:to-boxdark-2 { --tw-gradient-to: var(--boxdark-2); }
.dark .dark\:from-boxdark { --tw-gradient-from: var(--boxdark); }
.dark .dark\:via-boxdark-2 { --tw-gradient-via: var(--boxdark-2); }
.dark .dark\:to-boxdark { --tw-gradient-to: var(--boxdark); }

/* ============================================
   GRADIENT BACKGROUNDS
   ============================================ */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-from, transparent), var(--tw-gradient-via, transparent) 50%, var(--tw-gradient-to, transparent));
}

.from-white { --tw-gradient-from: var(--white); }
.via-whiter { --tw-gradient-via: var(--whiter); }
.to-white { --tw-gradient-to: var(--white); }
.from-whiter { --tw-gradient-from: var(--whiter); }
.via-white { --tw-gradient-via: var(--white); }
.to-whiter { --tw-gradient-to: var(--whiter); }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:block { display: block; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:space-y-0 > * + * { margin-top: 0; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */
nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--stroke);
}

.dark nav {
  background-color: var(--boxdark);
  border-bottom-color: var(--strokedark);
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
}

.hero-title {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dark .hero-title {
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  line-height: 1.8;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.landing-btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.landing-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.landing-btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.landing-btn-secondary {
  position: relative;
  transition: all 0.3s ease;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  position: relative;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(23, 155, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card-glow {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

/* ============================================
   FLOATING CARDS
   ============================================ */
.floating-card-1 {
  animation: float-card-1 4s ease-in-out infinite;
}

.floating-card-2 {
  animation: float-card-2 5s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-15px) translateX(-5px);
  }
}

@keyframes float-card-2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-12px) translateX(8px);
  }
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  line-height: 1.7;
}

/* ============================================
   STEPS
   ============================================ */
.step-card {
  position: relative;
}

.step-number-wrapper {
  position: relative;
}

.step-number {
  position: relative;
  z-index: 2;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(23, 155, 208, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(23, 155, 208, 0);
  }
}

.step-line {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 155, 208, 0.5) 0%, transparent 100%);
  transform: translateY(-50%);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefit-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
  padding: 30px;
  border: rgb(203, 203, 203) 1px solid;
}

.pricing-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Free Trial Card Specific */
.pricing-card:first-child:hover {
  border-color: var(--success);
}

/* Pro Card Specific */
.pricing-card:last-child {
  background: linear-gradient(135deg, rgba(23, 155, 208, 0.08) 0%, rgba(23, 155, 208, 0.15) 100%);
}

.dark .pricing-card:last-child {
  background: linear-gradient(135deg, rgba(23, 155, 208, 0.15) 0%, rgba(23, 155, 208, 0.25) 100%);
}

.pricing-card:last-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(23, 155, 208, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

/* Pricing Features List */
.pricing-card ul li {
  transition: all 0.2s ease;
}

.pricing-card ul li:hover {
  transform: translateX(4px);
}

/* Pricing Button Animations */
.pricing-card a {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.pricing-card a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.pricing-card a:hover::before {
  width: 400px;
  height: 400px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: rgba(23, 155, 208, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */

/* Form Container */
#contactForm {
  position: relative;
}

/* Form Labels */
#contactForm label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--black);
  transition: color 0.2s ease;
}

.dark #contactForm label {
  color: var(--white);
}

/* Input Container */
#contactForm .relative {
  position: relative;
}

/* Input Icons */
#contactForm .absolute {
  position: absolute;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

#contactForm .absolute i {
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

/* Input Fields Base Styles */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  padding-left: 2.75rem;
  border: 2px solid var(--stroke);
  border-radius: 0.5rem;
  background-color: var(--gray);
  color: var(--black);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.dark #contactForm input[type="text"],
.dark #contactForm input[type="email"],
.dark #contactForm input[type="tel"],
.dark #contactForm select,
.dark #contactForm textarea {
  border-color: var(--strokedark);
  background-color: var(--boxdark-2);
  color: var(--white);
}

/* Textarea Specific */
#contactForm textarea {
  resize: none;
  line-height: 1.6;
  font-family: inherit;
}

/* Select Specific */
#contactForm select {
  cursor: pointer;
  appearance: none;
  padding-right: 2.5rem;
}

/* Placeholder Styles */
#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: var(--body);
  opacity: 0.6;
}

.dark #contactForm input::placeholder,
.dark #contactForm textarea::placeholder {
  color: var(--bodydark);
  opacity: 0.5;
}

/* Focus States */
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(23, 155, 208, 0.1);
  transform: translateY(-1px);
}

.dark #contactForm input:focus,
.dark #contactForm select:focus,
.dark #contactForm textarea:focus {
  background-color: var(--boxdark);
  box-shadow: 0 0 0 3px rgba(23, 155, 208, 0.15);
}

/* Icon Color Change on Focus */
#contactForm input:focus ~ .absolute i,
#contactForm select:focus ~ .absolute i,
#contactForm textarea:focus ~ .absolute i {
  color: var(--primary);
}

/* Hover States */
#contactForm input:hover:not(:focus),
#contactForm select:hover:not(:focus),
#contactForm textarea:hover:not(:focus) {
  border-color: var(--primary);
  border-opacity: 0.5;
}

/* Required Field Asterisk */
#contactForm .text-danger {
  color: var(--danger);
  margin-left: 0.125rem;
}

/* Submit Button */
#contactForm button[type="submit"] {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 1.5rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#contactForm button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#contactForm button[type="submit"]:hover::before {
  width: 400px;
  height: 400px;
}

#contactForm button[type="submit"]:active {
  transform: scale(0.98);
}

/* Validation States */
#contactForm input:invalid:not(:placeholder-shown),
#contactForm select:invalid:not(:placeholder-shown),
#contactForm textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

#contactForm input:valid:not(:placeholder-shown),
#contactForm select:valid:not(:placeholder-shown),
#contactForm textarea:valid:not(:placeholder-shown) {
  border-color: var(--success);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .floating-card-1,
  .floating-card-2 {
    display: none !important;
  }
  
  .step-line {
    display: none;
  }
}
