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

/* CSS Variables */
:root {
  --blue-primary: #1e40af;
  --blue-dark: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-accent: #60a5fa;
  --black-bg: #0a0a0a;
  --black-light: #111111;
  --text-muted: #9ca3af;
  --border-color: #1f2937;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--black-bg);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Typography */
.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(30, 64, 175, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-icon span {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-text .main {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  display: block;
}

.logo-text .sub {
  color: var(--blue-light);
  font-size: 0.875rem;
  display: block;
}

/* Nav Links */
.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: white;
}

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

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

/* Nav CTA */
.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.phone-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.phone-display svg {
  color: var(--blue-light);
  width: 1rem;
  height: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--blue-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid #4b5563;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #1f2937;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: white;
}

.mobile-menu .phone-display {
  padding: 0.75rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black-bg), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Rating Badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
}

.rating-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.rating-badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero Title */
.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title span {
  display: block;
}

.hero-title .white {
  color: white;
}

/* Hero Description */
.hero-desc {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.trust-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-badge-rating svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: currentColor;
}

.trust-badge-rating span {
  color: white;
  font-weight: 700;
}

/* Price Calculator Card */
.price-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(30, 64, 175, 0.3);
}

@media (min-width: 640px) {
  .price-card {
    padding: 2rem;
  }
}

.price-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-card-header h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.price-card-header p {
  color: var(--blue-light);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.info-icon {
  width: 1rem;
  height: 1rem;
  background: var(--blue-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  cursor: help;
}

/* Form Elements */
.form-group {
  margin-bottom: 1rem;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.form-select:focus {
  outline: none;
  border-color: var(--blue-primary);
}

.form-select option {
  background: #1a1a1a;
  color: white;
}

/* Price Display */
.price-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid #374151;
}

.price-display p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.price-display .total {
  color: var(--blue-light);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--blue-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: white;
}

@media (min-width: 640px) {
  .section-title h2 {
    font-size: 3rem;
  }
}

.section-title .highlight {
  color: var(--blue-light);
  font-size: 1.25rem;
  display: block;
  margin-top: 0.5rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Feature Lists */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(30, 64, 175, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--blue-light);
}

/* Cards */
.card {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(30, 64, 175, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 64, 175, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: var(--blue-primary);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue-light);
  transition: color 0.3s ease;
}

.card:hover .card-icon svg {
  color: white;
}

.card h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .card-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue-light);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Writer Cards */
.writer-card {
  overflow: hidden;
  padding: 0;
}

.writer-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.writer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.writer-card:hover .writer-image img {
  transform: scale(1.05);
}

.writer-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(30, 64, 175, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.writer-badge span {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.writer-info {
  padding: 1.5rem;
}

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

.writer-header h3 {
  color: white;
  font-size: 1.125rem;
}

.writer-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.writer-rating svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: currentColor;
}

.writer-rating span {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.writer-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.writer-skills span {
  font-size: 0.75rem;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

/* Process Steps */
.process-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  position: relative;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--blue-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Sample Cards */
.sample-card {
  display: flex;
  flex-direction: column;
}

.sample-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sample-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 64, 175, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sample-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue-light);
}

.sample-title span {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sample-title h3 {
  color: white;
  font-size: 1.125rem;
}

.sample-details {
  margin-bottom: 1.5rem;
}

.sample-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1f2937;
}

.sample-detail:last-child {
  border-bottom: none;
}

.sample-detail span:first-child {
  color: #6b7280;
  font-size: 0.875rem;
}

.sample-detail span:last-child {
  color: #d1d5db;
  font-size: 0.875rem;
}

.sample-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.sample-actions .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}

/* Subject Pills */
.subject-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .subject-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .subject-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.subject-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subject-pill:hover {
  border-color: rgba(30, 64, 175, 0.5);
  background: rgba(30, 64, 175, 0.1);
}

.subject-pill svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-light);
  transition: transform 0.3s ease;
}

.subject-pill:hover svg {
  transform: scale(1.1);
}

.subject-pill span {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.subject-pill:hover span {
  color: white;
}

/* Review Cards */
.review-card {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(30, 64, 175, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 64, 175, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar span {
  color: var(--blue-light);
  font-weight: 700;
  font-size: 1.125rem;
}

.review-meta h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.review-meta p {
  color: #6b7280;
  font-size: 0.875rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: currentColor;
}

.review-text {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  padding: 1rem 0;
}

.marquee {
  display: flex;
  gap: 1.5rem;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-card {
  flex-shrink: 0;
  width: 20rem;
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #1f2937;
}

/* FAQ Accordion */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  border: 1px solid #1f2937;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(30, 64, 175, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--blue-light);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: #9ca3af;
  line-height: 1.6;
}

/* Blog Cards */
.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-image {
  height: 12rem;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.blog-meta svg {
  width: 1rem;
  height: 1rem;
}

.blog-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--blue-light);
}

.blog-card p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--blue-light);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-link {
  opacity: 1;
}

/* Forms */
.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group label {
  display: block;
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
}

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

/* Contact Info Cards */
.contact-info-card {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #1f2937;
  margin-bottom: 2rem;
}

.contact-info-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 64, 175, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue-light);
}

.contact-item h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 64, 175, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--blue-primary);
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue-light);
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: white;
}

/* Footer */
.footer {
  background: var(--black-light);
  border-top: 1px solid #1f2937;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact {
  space-y: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  color: var(--blue-light);
  width: 1rem;
  height: 1rem;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--blue-light);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--blue-primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-social a:hover svg {
  color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 3.5rem;
  height: 3.5rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition: transform 0.3s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.7);
  }
}

/* Stats Badge */
.stats-badge {
  position: absolute;
  background: rgba(30, 64, 175, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(96, 165, 250, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stats-badge-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.stats-badge-text .number {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.stats-badge-text .label {
  color: #bfdbfe;
  font-size: 0.875rem;
}

/* Image with badge positioning */
.image-container {
  position: relative;
}

.image-container img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.image-container .stats-badge {
  bottom: -1.5rem;
  left: -1.5rem;
}

@media (max-width: 640px) {
  .image-container .stats-badge {
    bottom: -1rem;
    left: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Background Gradients */
.bg-gradient-dark {
  background: linear-gradient(to bottom, var(--black-bg), var(--black-light));
}

.bg-gradient-dark-reverse {
  background: linear-gradient(to bottom, var(--black-light), var(--black-bg));
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue-light);
}

/* Selection */
::selection {
  background: rgba(30, 64, 175, 0.5);
  color: white;
}

/* Focus */
*:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
