* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00d4aa;
  --primary-dark: #00a886;
  --secondary: #1a2332;
  --accent: #f59e42;
  --accent-dark: #d97826;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --gradient: linear-gradient(135deg, #00d4aa 0%, #f59e42 100%);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo .logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-logo 2s ease-in-out infinite;
}

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

.loader-spinner {
  margin: 2rem 0;
}

.spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 4px solid rgba(0, 212, 170, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: #cbd5e1;
  font-size: 0.95rem;
  letter-spacing: 1px;
  animation: fade-in-out 1.5s ease-in-out infinite;
}

@keyframes fade-in-out {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 35, 50, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

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

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

.nav-links a:hover {
  color: var(--primary);
}

.cta-button {
  background: var(--gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 170, 0.4);
}

/* Hero Section */
.hero {
  padding: 10rem 2rem 6rem;
  text-align: center;
  background: var(--secondary);
  margin-top: 70px;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(0, 212, 170, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(245, 158, 66, 0.15),
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}

.hero p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

/* Floating Shapes Animation */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: 10%;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 60%;
  right: 10%;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--primary);
  bottom: 10%;
  left: 50%;
  animation: float 18s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* Services Section */
.services {
  background: var(--bg);
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* About Section */
.about-section {
  background: var(--bg);
  padding: 5rem 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.about-text h2 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.about-image {
  position: relative;
}

.image-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: scale(1.02);
}

.image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.mini-stat {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.mini-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.mini-stat h3 {
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.mini-stat p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Our Approach Section */
.approach-section {
  background: var(--secondary);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.approach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 66, 0.1), transparent 40%);
  pointer-events: none;
}

.approach-header {
  position: relative;
  z-index: 1;
}

.approach-header h2 {
  color: white;
}

.approach-header .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.approach-header p {
  color: #cbd5e1;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.approach-card {
  perspective: 1000px;
  height: 280px;
}

.approach-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.approach-card:hover .approach-card-inner {
  transform: rotateY(180deg);
}

.approach-card-front,
.approach-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.approach-card-front {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-card-back {
  background: var(--gradient);
  transform: rotateY(180deg);
  color: white;
}

.approach-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.approach-icon svg {
  width: 100%;
  height: 100%;
}

.approach-card-front h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.approach-card-front p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.approach-card-back h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.approach-card-back ul {
  list-style: none;
  text-align: left;
}

.approach-card-back li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.approach-card-back li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.approach-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.approach-cta h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.approach-cta p {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.btn-approach {
  background: white;
  color: var(--secondary);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-approach:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  background: var(--primary);
  color: white;
}

/* Stats Section */
.stats {
  background: var(--bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-item h3 {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-item p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Process Section */
.process-section {
  background: white;
  padding: 5rem 2rem;
}

.process-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.process-number::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0;
  transform: scale(1);
  transition: all 0.3s ease;
}

.process-step:hover .process-number::before {
  opacity: 0.3;
  transform: scale(1.3);
}

.process-step:hover .process-number {
  transform: rotate(360deg);
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-light);
}

/* Contact Section */
.contact-section {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--secondary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
}

.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.social-links h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--bg-alt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

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

.btn-submit {
  grid-column: 1 / -1;
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.btn-submit:hover::before {
  width: 400px;
  height: 400px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Footer */
footer {
  background: var(--secondary);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p,
.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    gap: 3rem;
  }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    padding: 1rem 1.5rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Hero Section */
  .hero {
    padding: 8rem 1.5rem 4rem;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  /* Floating Shapes - Smaller on Mobile */
  .shape-1 {
    width: 200px;
    height: 200px;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
  }

  .shape-3 {
    width: 100px;
    height: 100px;
  }

  /* Container */
  .container {
    padding: 3rem 1.5rem;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-stats-mini {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mini-stat h3 {
    font-size: 1.75rem;
  }

  .value-item {
    padding: 1.25rem;
  }

  .value-item:hover {
    transform: translateX(5px);
  }

  /* Approach Section */
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-card {
    height: 260px;
  }

  .approach-card-front,
  .approach-card-back {
    padding: 1.5rem;
  }

  .approach-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .approach-card-front h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .approach-card-front p {
    font-size: 0.875rem;
  }

  .approach-card-back h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .approach-card-back li {
    font-size: 0.875rem;
  }

  .approach-cta {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }

  .approach-cta h3 {
    font-size: 1.5rem;
  }

  .approach-cta p {
    font-size: 1rem;
  }

  .btn-approach {
    padding: 0.875rem 2rem;
  }

  /* Stats Section */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .stat-item p {
    font-size: 1rem;
  }

  /* Process Section */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  /* Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info h3 {
    font-size: 1.75rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Page Loader */
  .loader-logo .logo-text {
    font-size: 2rem;
  }

  .loader-text {
    font-size: 0.875rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  /* Hero */
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.75rem;
  }

  /* Service Cards */
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  /* About Section */
  .about-text h2 {
    font-size: 1.75rem;
  }

  .value-icon {
    min-width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  /* Approach Cards */
  .approach-card {
    height: 240px;
  }

  .approach-icon {
    width: 50px;
    height: 50px;
  }

  .approach-card-front h3 {
    font-size: 1.125rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.25rem;
  }

  /* Contact */
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Approach CTA */
  .approach-cta h3 {
    font-size: 1.25rem;
  }

  .approach-cta p {
    font-size: 0.95rem;
  }

  /* Social Icons */
  .social-icons {
    flex-direction: column;
  }

  .social-icon {
    width: 100%;
    text-align: center;
  }

  /* Loader */
  .loader-logo .logo-text {
    font-size: 1.75rem;
  }
}

/* Landscape Mobile (max-height: 500px) */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .container {
    padding: 2.5rem 1.5rem;
  }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover effects on approach cards, use tap instead */
  .approach-card-inner {
    transform: none !important;
  }

  .approach-card.active .approach-card-inner {
    transform: rotateY(180deg);
  }

  /* Larger touch targets */
  .cta-button,
  .btn-primary,
  .btn-secondary,
  .btn-submit,
  .btn-approach {
    min-height: 48px;
  }

  .nav-links a {
    padding: 0.5rem 0;
  }
}
