/* =========================
   CSS RESET & BASE STYLES
   ========================= */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

ul {
  list-style: none;
}

/* =========================
   PLAYFUL DYNAMIC TYPOGRAPHY
   ========================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #2D5F8D;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-shadow: 3px 3px 0px rgba(232, 117, 79, 0.3);
  animation: bounceIn 1s ease-out;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #E8754F, #FFB74D);
  border-radius: 10px;
  animation: slideRight 0.6s ease-out;
}

h3 {
  font-size: 24px;
  color: #2D5F8D;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #34495e;
}

.tagline {
  font-size: 18px;
  font-weight: 600;
  color: #E8754F;
  font-style: italic;
}

/* =========================
   CONTAINER & LAYOUT
   ========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */

header {
  background: rgba(255, 255, 255, 0.98);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
  backdrop-filter: blur(10px);
  animation: slideDown 0.5s ease-out;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(-5deg) scale(1.1);
}

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #2D5F8D;
  position: relative;
  padding: 5px 0;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8754F, #FFB74D);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 10px;
}

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

.main-nav a:hover {
  color: #E8754F;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 15px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: white;
  color: #667eea;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: white;
  color: #667eea;
  transform: translateX(10px);
  border-color: #FFB74D;
}

/* =========================
   BUTTONS (PLAYFUL STYLE)
   ========================= */

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #E8754F, #FFB74D);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 15px rgba(232, 117, 79, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 117, 79, 0.5);
}

.cta-button.primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.cta-button.secondary {
  background: white;
  color: #2D5F8D;
  border: 3px solid #2D5F8D;
}

.cta-button.secondary:hover {
  background: #2D5F8D;
  color: white;
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  border-radius: 0;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '🎙️';
  position: absolute;
  top: -50px;
  right: -50px;
  font-size: 300px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 30px;
  text-shadow: 3px 3px 0px rgba(232, 117, 79, 0.5);
}

.hero-subheadline {
  color: white;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-badge {
  color: white;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

/* =========================
   SERVICE CARDS
   ========================= */

.services-overview,
.services-detailed {
  padding: 80px 20px;
  background: white;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 50px;
}

.service-cards,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.service-detail-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.service-card:hover,
.service-detail-card:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
  border-color: #FFB74D;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  filter: drop-shadow(0 5px 10px rgba(232, 117, 79, 0.3));
  animation: bounce 2s infinite;
}

.service-card h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #2D5F8D;
}

.service-card p {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.price {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #E8754F;
  margin: 20px 0;
}

.timeline {
  text-align: center;
  font-size: 14px;
  color: #95a5a6;
  font-style: italic;
}

.card-link {
  display: block;
  text-align: center;
  color: #667eea;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #E8754F;
  transform: translateX(5px);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFB74D, #E8754F);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.featured {
  border: 3px solid #FFB74D;
  background: linear-gradient(135deg, rgba(255, 183, 77, 0.05), rgba(232, 117, 79, 0.05));
}

.view-all-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  color: #667eea;
  text-decoration: underline;
}

/* =========================
   PROCESS STEPS
   ========================= */

.process {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(244, 241, 234, 0.8), rgba(255, 255, 255, 0.9));
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* =========================
   BENEFITS & STATS
   ========================= */

.benefits {
  padding: 80px 20px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.benefit {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-10px) scale(1.05);
}

.benefit img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 5px 10px rgba(232, 117, 79, 0.3));
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 50px 30px;
  border-radius: 30px;
}

.stat {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 200px;
  text-align: center;
  color: white;
}

.stat h3 {
  font-size: 48px;
  color: white;
  margin-bottom: 10px;
  text-shadow: 3px 3px 0px rgba(232, 117, 79, 0.5);
}

.stat p {
  color: white;
  font-size: 18px;
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(244, 241, 234, 0.5), rgba(255, 255, 255, 0.8));
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: white;
  padding: 40px 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FFB74D;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(232, 117, 79, 0.1);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  font-weight: 700;
  color: #2D5F8D;
  font-size: 16px;
}

.testimonial-author span {
  color: #7f8c8d;
  font-size: 14px;
}

/* =========================
   PORTFOLIO GRID
   ========================= */

.portfolio-grid,
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.portfolio-card,
.blog-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.portfolio-card:hover,
.blog-card:hover {
  transform: translateY(-15px) rotate(-2deg);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.portfolio-image,
.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.portfolio-image img,
.blog-image img {
  max-width: 100px;
  max-height: 100px;
  filter: brightness(0) invert(1);
}

.portfolio-card h3,
.blog-card h3 {
  padding: 25px 25px 10px;
  margin-bottom: 5px;
}

.category,
.category-tag {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, #FFB74D, #E8754F);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 25px 15px;
}

.portfolio-card p,
.blog-card p {
  padding: 0 25px;
  margin-bottom: 20px;
}

.metrics,
.post-meta {
  display: flex;
  justify-content: space-around;
  padding: 20px 25px;
  background: rgba(244, 241, 234, 0.5);
  border-top: 2px solid #f4f1ea;
  gap: 10px;
  flex-wrap: wrap;
}

.metrics span,
.post-meta span {
  font-size: 13px;
  color: #7f8c8d;
  font-weight: 600;
}

/* =========================
   PAGE HERO & BREADCRUMB
   ========================= */

.page-hero {
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  text-align: center;
  margin-bottom: 60px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: white;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  color: white;
  margin-bottom: 20px;
}

.page-hero p {
  color: white;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 15px;
}

.last-updated,
.founding-year,
.response-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.portfolio-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.portfolio-stats span {
  color: white;
  font-weight: 700;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

/* =========================
   ABOUT/TIMELINE
   ========================= */

.story,
.mission-vision {
  padding: 80px 20px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.milestone {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #FFB74D;
}

.milestone:hover {
  transform: translateY(-10px);
}

.milestone strong {
  font-size: 32px;
  color: #E8754F;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.mission-box {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 25px;
  border: 3px solid #667eea;
}

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

.value {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

/* =========================
   TEAM & ACHIEVEMENTS
   ========================= */

.team,
.achievements {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(244, 241, 234, 0.5), rgba(255, 255, 255, 0.8));
}

.team-stats,
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.achievement {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.achievement:hover {
  transform: translateY(-10px) scale(1.05);
}

.achievement h3 {
  font-size: 42px;
  color: #E8754F;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px rgba(102, 126, 234, 0.3);
}

/* =========================
   BLOG FEATURES
   ========================= */

.featured-post {
  padding: 80px 20px;
}

.featured-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  padding: 50px 40px;
  border-radius: 25px;
  border: 3px solid #667eea;
  position: relative;
}

.read-more {
  display: inline-block;
  margin-top: 20px;
  color: #667eea;
  font-weight: 700;
  padding: 12px 30px;
  border: 2px solid #667eea;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #667eea;
  color: white;
  transform: translateX(5px);
}

.blog-categories {
  padding: 40px 20px;
  text-align: center;
}

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

.category {
  padding: 12px 25px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category:hover,
.category.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: #667eea;
  transform: translateY(-3px);
}

/* =========================
   NEWSLETTER
   ========================= */

.newsletter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.newsletter-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.newsletter-box h2 {
  color: white;
  margin-bottom: 20px;
}

.newsletter-benefits {
  margin: 30px 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-benefits p {
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}

.subscriber-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

/* =========================
   CONTACT SECTIONS
   ========================= */

.contact-options-section,
.location-section,
.faq-contact-section {
  padding: 60px 20px;
}

.contact-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.contact-option {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.contact-option img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 5px 10px rgba(232, 117, 79, 0.3));
}

.contact-detail {
  font-weight: 700;
  color: #2D5F8D;
  font-size: 18px;
  margin: 15px 0;
}

.location-content {
  margin-top: 40px;
}

.location-info {
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.faq-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FFB74D;
}

/* =========================
   ERROR PAGE (404)
   ========================= */

.error-section {
  padding: 100px 20px;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  color: #E8754F;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 5px 5px 0px rgba(102, 126, 234, 0.3);
  animation: wobble 2s infinite;
}

.navigation-helper {
  padding: 60px 20px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(33.333% - 25px);
  min-width: 200px;
  padding: 30px 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.link-card:hover {
  transform: translateY(-10px);
  border-color: #FFB74D;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.contact-support {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(244, 241, 234, 0.5), rgba(255, 255, 255, 0.8));
}

/* =========================
   THANK YOU PAGE
   ========================= */

.confirmation-section {
  padding: 100px 20px;
  text-align: center;
}

.confirmation-content {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  animation: scaleIn 0.5s ease-out;
}

.confirmation-message {
  font-size: 18px;
  margin: 30px 0;
  color: #2c3e50;
}

.next-steps {
  margin-top: 50px;
  padding: 40px 30px;
  background: rgba(244, 241, 234, 0.5);
  border-radius: 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: 30px 0;
}

.estimated-response {
  margin-top: 30px;
  font-weight: 700;
  color: #E8754F;
}

.recommended-actions {
  padding: 60px 20px;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.action-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-10px);
}

.action-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.action-link {
  display: inline-block;
  margin-top: 15px;
  color: #667eea;
  font-weight: 700;
}

.contact-backup {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 25px;
}

.hours {
  font-weight: 600;
  color: #7f8c8d;
  margin-top: 10px;
}

.navigation-section {
  padding: 40px 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  padding: 12px 25px;
  background: white;
  border: 2px solid #667eea;
  border-radius: 25px;
  color: #667eea;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
}

/* =========================
   LEGAL PAGES
   ========================= */

.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px 50px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 3px solid rgba(232, 117, 79, 0.2);
}

.content-wrapper h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-wrapper ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.content-wrapper li {
  list-style: disc;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* =========================
   CTA SECTIONS
   ========================= */

.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  text-align: center;
  margin: 60px 0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '✨';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 200px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* =========================
   RESULTS SHOWCASE
   ========================= */

.results-showcase {
  padding: 80px 20px;
  background: white;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.result-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 25px;
  border: 3px solid #667eea;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-10px);
  border-color: #FFB74D;
}

.result-card h3 {
  font-size: 56px;
  color: #E8754F;
  margin-bottom: 15px;
  text-shadow: 3px 3px 0px rgba(102, 126, 234, 0.3);
}

/* =========================
   FOOTER
   ========================= */

footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #FFB74D;
  transform: translateX(5px);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal a:hover {
  color: #FFB74D;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.cookie-button {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-button.accept {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  color: white;
}

.cookie-button.reject {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
}

.cookie-button.settings {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal.show {
  display: block;
  animation: scaleIn 0.3s ease-out;
}

.cookie-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.cookie-overlay.show {
  display: block;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #2c3e50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(232, 117, 79, 0.1);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(244, 241, 234, 0.5);
  border-radius: 15px;
  border-left: 5px solid #667eea;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.toggle-switch {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}

/* =========================
   ANIMATIONS
   ========================= */

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes wobble {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  /* Layout adjustments */
  .hero-cta {
    flex-direction: column;
  }
  
  .service-cards,
  .service-grid,
  .benefits-grid,
  .portfolio-grid,
  .blog-grid {
    flex-direction: column;
  }
  
  .service-card,
  .service-detail-card,
  .benefit,
  .portfolio-card,
  .blog-card {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .stats {
    flex-direction: column;
  }
  
  .testimonial-grid {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* Padding adjustments */
  .section,
  .hero,
  .services-overview,
  .process,
  .benefits,
  .testimonials,
  .cta-banner {
    padding: 40px 15px;
  }
  
  .content-wrapper {
    padding: 30px 20px;
  }
  
  /* Error page */
  .error-code {
    font-size: 80px;
  }
  
  /* Contact options */
  .contact-options-grid,
  .faq-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .cookie-modal {
    padding: 25px;
  }
}