/* ===========================
   SCREE SAFARI - SOFT PASTEL DESIGN
   CSS Reset & Base Styles
   =========================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #4A5568;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 50%, #F0E6F6 100%);
  overflow-x: hidden;
}

/* ===========================
   SOFT PASTEL COLOR PALETTE
   =========================== */
:root {
  --pastel-pink: #FFB6C1;
  --pastel-blue: #B0C4DE;
  --pastel-lavender: #E6E6FA;
  --pastel-mint: #B2E8DC;
  --pastel-peach: #FFDAB9;
  --pastel-yellow: #FFFACD;
  --text-dark: #4A5568;
  --text-light: #718096;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(255, 182, 193, 0.15);
  --shadow-medium: 0 8px 30px rgba(176, 196, 222, 0.2);
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
}

a {
  color: var(--pastel-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--pastel-pink);
}

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

/* ===========================
   CONTAINER & LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

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

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender));
  transition: var(--transition);
}

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

.cta-button {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1001;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--white), var(--pastel-lavender));
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  color: var(--white);
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--pastel-lavender);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.5);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  transform: translateX(8px);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: var(--pastel-lavender);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 245, 247, 0.8), rgba(230, 230, 250, 0.8));
  border-radius: var(--border-radius);
  margin: 32px auto;
  box-shadow: var(--shadow-medium);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.badge img {
  width: 32px;
  height: 32px;
}

.badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===========================
   HERO PAGE (Interior pages)
   =========================== */
.hero-page {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
  text-align: center;
  margin-bottom: 60px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--pastel-blue);
}

.last-update {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* ===========================
   SERVICES GRID
   =========================== */
.services-preview {
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  margin: 32px auto;
  box-shadow: var(--shadow-medium);
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 230, 250, 0.3));
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-card img,
.card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.service-card h3,
.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.card p {
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
}

.price,
.price-tag {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  margin-top: 12px;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-yellow));
  margin: 60px auto;
  border-radius: var(--border-radius);
}

.stats-grid,
.stats-bar {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  min-width: 200px;
  text-align: center;
}

.stat img {
  width: 48px;
  height: 48px;
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--pastel-pink);
  font-family: 'Rajdhani', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.stats-bar span {
  padding: 12px 24px;
  background: var(--white);
  border-radius: 12px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 60px 20px;
  background: var(--white);
  margin: 60px auto;
  border-radius: var(--border-radius);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 560px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.stars {
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 4px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
}

.client {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client strong {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
}

.client span {
  color: var(--text-light);
  font-size: 14px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  text-align: center;
  margin: 60px auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.response-badge {
  display: inline-block;
  background: var(--white);
  color: var(--pastel-pink);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
}

/* ===========================
   ABOUT SECTIONS
   =========================== */
.about-story,
.team,
.expertise {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.values-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.value-item,
.feature-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.value-item img,
.feature-item img {
  width: 48px;
  height: 48px;
}

.team-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.team-member img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.team-member h3 {
  margin-bottom: 8px;
}

.team-member span {
  display: block;
  color: var(--pastel-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.expertise-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.expertise-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, var(--white), var(--pastel-lavender));
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

/* ===========================
   SERVICES DETAILED
   =========================== */
.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.service-detail img {
  width: 64px;
  height: 64px;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text-light);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-pink);
  font-weight: 700;
  font-size: 18px;
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio-showcase {
  padding: 60px 20px;
}

.portfolio-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 560px;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.portfolio-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  width: 80px;
  height: 80px;
}

.portfolio-item h3 {
  padding: 20px 24px 8px;
}

.portfolio-item p {
  padding: 0 24px 16px;
}

.tags {
  display: flex;
  gap: 8px;
  padding: 0 24px 24px;
  flex-wrap: wrap;
}

.tags span {
  background: var(--pastel-lavender);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.results {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-yellow));
  margin: 60px auto;
  border-radius: var(--border-radius);
}

.results-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.result-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.result-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--pastel-pink);
  margin-bottom: 12px;
  font-family: 'Rajdhani', sans-serif;
}

/* ===========================
   TECHNOLOGIES
   =========================== */
.tech-stack {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.tech-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.tech-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.tech-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.experience {
  display: block;
  margin-top: 16px;
  color: var(--pastel-blue);
  font-weight: 600;
  font-size: 14px;
}

/* ===========================
   BLOG
   =========================== */
.blog-featured {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.featured-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, var(--white), var(--pastel-lavender));
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.featured-post img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.blog-posts {
  padding: 60px 20px;
}

.posts-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.post-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.post-card h3 {
  padding: 20px 20px 8px;
}

.post-card p {
  padding: 0 20px 16px;
}

.post-card .post-meta {
  padding: 0 20px 20px;
}

.blog-categories {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-peach));
  border-radius: var(--border-radius);
  margin: 60px auto;
}

.categories-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 360px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.category-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.category-card span {
  display: block;
  margin-top: 16px;
  color: var(--pastel-blue);
  font-weight: 600;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-info {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 360px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-card a {
  color: var(--pastel-blue);
  font-weight: 600;
}

.contact-card span {
  display: block;
  margin-top: 12px;
  color: var(--text-light);
  font-size: 14px;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
  border-radius: var(--border-radius);
  margin: 60px auto;
}

.form-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-info {
  flex: 1 1 300px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.form-info ul {
  list-style: none;
  padding-left: 0;
}

.form-info li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text-light);
}

.form-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-pink);
  font-weight: 700;
  font-size: 18px;
}

.contact-form-placeholder {
  flex: 1 1 500px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.form-notice {
  background: var(--pastel-yellow);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text-dark);
  font-weight: 600;
}

.form-fields-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-preview label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.input-placeholder,
.select-placeholder,
.textarea-placeholder {
  background: var(--pastel-lavender);
  border: 2px solid var(--pastel-blue);
  border-radius: 12px;
  width: 100%;
}

.input-placeholder,
.select-placeholder {
  height: 48px;
}

.textarea-placeholder {
  height: 120px;
}

.faq-section {
  padding: 60px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  color: var(--pastel-pink);
  margin-bottom: 12px;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  line-height: 1.8;
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--pastel-pink);
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--pastel-blue);
}

.content-wrapper ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  border-radius: var(--border-radius);
  margin: 32px auto;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.thank-you-hero .hero-subtitle {
  color: var(--white);
  margin-bottom: 32px;
}

.confirmation-details {
  padding: 60px 20px;
}

.confirmation-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(230, 230, 250, 0.3), rgba(178, 232, 220, 0.3));
  border-radius: 12px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--pastel-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 4px;
}

.step-content p {
  margin: 0;
  color: var(--text-light);
}

.explore-more,
.quick-links {
  padding: 60px 20px;
}

.links-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 360px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.link-card img {
  width: 64px;
  height: 64px;
}

.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-yellow));
  border-radius: var(--border-radius);
  margin: 60px auto;
}

.stats-highlight {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  min-width: 180px;
}

.emergency-contact {
  padding: 60px 20px;
}

.emergency-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.contact-info {
  margin: 20px 0;
  font-size: 18px;
}

.response-note {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 16px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h4 {
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-section a {
  color: var(--text-light);
  font-size: 14px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--pastel-pink);
  transform: translateX(4px);
}

.footer-section p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(74, 85, 104, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--text-light);
  font-size: 14px;
}

.copyright {
  color: var(--text-light);
  font-size: 14px;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--white), var(--pastel-lavender));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  color: var(--text-dark);
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.cookie-reject {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--pastel-lavender);
}

.cookie-reject:hover {
  background: var(--pastel-lavender);
  color: var(--white);
}

.cookie-settings {
  background: transparent;
  color: var(--pastel-blue);
  text-decoration: underline;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: var(--pastel-pink);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(230, 230, 250, 0.3), rgba(178, 232, 220, 0.3));
  border-radius: 12px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #CBD5E0;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle.active {
  background: var(--pastel-pink);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .cta-button {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-badges {
    flex-direction: column;
  }

  .service-card,
  .card {
    flex: 1 1 100%;
  }

  .stats-grid,
  .stats-bar {
    flex-direction: column;
    align-items: center;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    align-items: center;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-image-section {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ===========================
   TEXT-IMAGE SECTIONS
   =========================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.text-image-section img {
  flex: 0 0 auto;
  max-width: 300px;
}

.text-image-section .text-content {
  flex: 1 1 400px;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

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

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===========================
   ACCESSIBILITY
   =========================== */
:focus-visible {
  outline: 3px solid var(--pastel-pink);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--pastel-pink);
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}