/* ========================================
   CSS RESET AND 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: #1a1a1a;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(255, 107, 107, 0.3);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #ff6b6b;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #4ecdc4;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

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

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

/* ========================================
   HEADER - ELECTRIC & BOLD
   ======================================== */

header {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  border-bottom: 5px solid #ff6b6b;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::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 ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* ========================================
   MOBILE MENU - ENERGETIC SLIDE
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.7);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -10px 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);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(180deg) scale(1.1);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  border-left-color: #feca57;
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header {
    padding: 15px 0;
  }
}

/* ========================================
   BUTTONS - VIBRANT & DYNAMIC
   ======================================== */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #4ecdc4, #44a8a0);
  color: #fff;
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(78, 205, 196, 0.6);
}

/* ========================================
   HERO SECTION - EXPLOSIVE ENERGY
   ======================================== */

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.4) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 202, 87, 0.3) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero h1 {
  font-size: 56px;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideInUp 1s ease-out 0.5s both;
}

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

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

.trust-badges span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   BENEFITS SECTION - DYNAMIC CARDS
   ======================================== */

.benefits {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #feca57 0%, #ff6b6b 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.benefit-card:hover::before {
  top: -30%;
  right: -30%;
  width: 300px;
  height: 300px;
}

.benefit-card h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .benefit-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   SERVICES SECTIONS - BOLD PRESENTATION
   ======================================== */

.services-overview {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.services-overview h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 42px;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.service-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border-top: 6px solid #ff6b6b;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 6px;
  background: linear-gradient(90deg, #feca57, #ff6b6b);
  transition: width 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::after {
  width: 100%;
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card .price {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #ff6b6b;
  margin-bottom: 20px;
}

.services-overview > .container > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   HOW IT WORKS - ENERGETIC STEPS
   ======================================== */

.how-it-works {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.step h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.step p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step {
    flex: 1 1 100%;
  }
}

/* ========================================
   STATS SECTION - HIGH ENERGY NUMBERS
   ======================================== */

.stats {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
}

.stat {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: scale(1.1) rotate(-2deg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #feca57;
  margin-bottom: 12px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.stat-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .stat {
    flex: 1 1 calc(50% - 40px);
  }
}

/* ========================================
   TESTIMONIALS - VIBRANT FEEDBACK
   ======================================== */

.testimonials {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #4ecdc4;
  transition: all 0.3s ease;
  position: relative;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-left-color: #ff6b6b;
}

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

.testimonial-card .author {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ff6b6b;
  margin-top: 20px;
}

.testimonial-card .project-info {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   CTA SECTION - EXPLOSIVE CALL-TO-ACTION
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite 2s;
}

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

.cta-section h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #ff6b6b;
  font-size: 18px;
  padding: 20px 50px;
}

.cta-section .btn:hover {
  color: #fff;
  background: #1a1a1a;
}

/* ========================================
   PAGE HERO - INTERNAL PAGES
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
  padding: 80px 20px 60px;
  margin-bottom: 0;
}

.breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #feca57;
}

.page-hero h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
}

/* ========================================
   SERVICES DETAILED
   ======================================== */

.services-detailed {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.service-detail {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(254, 202, 87, 0.05));
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 40px;
  border-left: 8px solid #ff6b6b;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-detail h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.service-detail p {
  color: #333;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.features-list {
  margin-bottom: 30px;
}

.features-list li {
  color: #333;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.features-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  font-size: 20px;
  color: #ff6b6b;
}

.service-detail .price {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #ff6b6b;
  margin: 30px 0;
}

/* ========================================
   PACKAGES COMPARISON
   ======================================== */

.packages {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.packages h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
  font-size: 42px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.package-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  background: #fff;
  padding: 50px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border-top: 8px solid #feca57;
}

.package-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border-top-color: #ff6b6b;
}

.package-card h3 {
  margin-bottom: 20px;
  font-size: 26px;
}

.package-card p {
  color: #555;
  margin-bottom: 30px;
  font-size: 16px;
}

.package-card .price {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #ff6b6b;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .package-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   PROJECTS & REFERENCES
   ======================================== */

.projects {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.projects h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.project-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-bottom: 5px solid transparent;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-bottom-color: #4ecdc4;
}

.project-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.project-card p {
  color: #333;
  margin-bottom: 24px;
  line-height: 1.7;
}

.project-scope,
.location {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin-right: 10px;
  margin-top: 10px;
}

.project-scope {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

.location {
  background: rgba(78, 205, 196, 0.15);
  color: #4ecdc4;
  border: 1px solid #4ecdc4;
}

@media (max-width: 768px) {
  .project-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   COMPANY STORY & VALUES
   ======================================== */

.company-story {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.company-story h2 {
  margin-bottom: 40px;
  font-size: 38px;
}

.company-story p {
  color: #333;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 900px;
}

.values {
  background: linear-gradient(135deg, #feca57 0%, #ff8e53 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.values h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
  font-size: 42px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.value-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card p {
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .value-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   ACHIEVEMENTS & CONTACT INFO
   ======================================== */

.achievements {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.achievements h2 {
  margin-bottom: 40px;
  font-size: 38px;
}

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

.achievements-list li {
  color: #333;
  font-size: 18px;
  padding: 20px 0;
  padding-left: 50px;
  position: relative;
  border-bottom: 2px solid rgba(255, 107, 107, 0.1);
}

.achievements-list li::before {
  content: '🏆';
  position: absolute;
  left: 0;
  font-size: 28px;
}

.contact-info,
.office-info {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.contact-info h2,
.office-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 38px;
}

.contact-info p,
.office-info p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.contact-info strong,
.office-info strong {
  color: #fff;
  font-weight: 700;
}

/* ========================================
   BLOG SECTIONS
   ======================================== */

.blog-categories {
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 0;
  border-bottom: 3px solid #f8f9fa;
}

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

.category {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 25px;
  background: #f8f9fa;
  color: #666;
  transition: all 0.3s ease;
}

.category:hover,
.category.active {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.featured-post {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.featured-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 50px;
  border-radius: 25px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.featured-card h2 {
  margin-bottom: 24px;
  font-size: 32px;
}

.featured-card p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.featured-card .meta {
  display: block;
  font-size: 14px;
  color: #888;
  margin-top: 30px;
}

.blog-posts {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.blog-posts h2 {
  margin-bottom: 60px;
  font-size: 38px;
  text-align: center;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.post-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: linear-gradient(135deg, rgba(254, 202, 87, 0.08), rgba(255, 107, 107, 0.08));
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #feca57;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-top-color: #ff6b6b;
}

.post-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.post-card p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.post-card .meta {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .post-card {
    flex: 1 1 100%;
  }
}

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

.contact-methods {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.method-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 168, 160, 0.1));
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.3);
}

.method-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.method-card p {
  color: #333;
  margin-bottom: 12px;
  line-height: 1.7;
}

.method-card strong {
  color: #4ecdc4;
  font-size: 18px;
}

@media (max-width: 768px) {
  .method-card {
    flex: 1 1 100%;
  }
}

.contact-form-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.contact-form-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 38px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 60px;
}

.form-placeholder {
  background: #fff;
  padding: 50px 40px;
  border-radius: 25px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.form-placeholder p {
  color: #333;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
}

.form-placeholder strong {
  display: block;
  color: #ff6b6b;
  margin-bottom: 8px;
}

.form-placeholder ul {
  margin-bottom: 24px;
  padding-left: 25px;
}

.form-placeholder li {
  color: #555;
  padding: 8px 0;
  position: relative;
}

.form-placeholder li::before {
  content: '▸';
  position: absolute;
  left: -20px;
  color: #4ecdc4;
}

.form-placeholder .btn {
  margin-top: 30px;
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.legal-content h2 {
  margin-top: 50px;
  margin-bottom: 24px;
  font-size: 28px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 900px;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 30px;
}

.legal-content li {
  color: #333;
  padding: 8px 0;
  line-height: 1.8;
  position: relative;
}

.legal-content li::before {
  content: '●';
  position: absolute;
  left: -20px;
  color: #ff6b6b;
}

.legal-content strong {
  color: #ff6b6b;
  font-weight: 700;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
  margin-bottom: 0;
}

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

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4ecdc4, #44a8a0);
  color: #fff;
  font-size: 60px;
  border-radius: 50%;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.5);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: #fff;
  margin-bottom: 24px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.next-steps {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 38px;
}

.thank-you-resources {
  background: linear-gradient(135deg, #feca57 0%, #ff8e53 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

.thank-you-resources h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
  font-size: 38px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

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

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.resource-card h3 {
  margin-bottom: 24px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .resource-card {
    flex: 1 1 100%;
  }
}

.thank-you-contact,
.thank-you-info {
  background: #fff;
  padding: 80px 20px;
  margin-bottom: 0;
  text-align: center;
}

.thank-you-contact h2,
.thank-you-info h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

.thank-you-contact p,
.thank-you-info p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.thank-you-info ul {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.thank-you-info li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.thank-you-info li a {
  color: #4ecdc4;
  font-weight: 600;
  transition: color 0.3s ease;
}

.thank-you-info li a:hover {
  color: #ff6b6b;
}

/* ========================================
   FOOTER - BOLD & ENERGETIC
   ======================================== */

footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #fff;
  padding: 60px 20px 30px;
  border-top: 5px solid #ff6b6b;
}

.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-column h3 {
  color: #feca57;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-column h4 {
  color: #4ecdc4;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 20px;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #ff6b6b;
  transition: left 0.3s ease;
}

.footer-nav a:hover {
  color: #feca57;
  padding-left: 25px;
}

.footer-nav a:hover::before {
  left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-column {
    flex: 1 1 100%;
  }
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  padding: 25px 20px;
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  border-top: 3px solid #ff6b6b;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #4ecdc4, #44a8a0);
  color: #fff;
}

.cookie-btn-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.5);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings {
  background: transparent;
  color: #feca57;
  border: 1px solid #feca57;
}

.cookie-btn-settings:hover {
  background: rgba(254, 202, 87, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 107, 107, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #ff6b6b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 107, 107, 0.2);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #4ecdc4;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #4ecdc4, #44a8a0);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  
  .trust-badges { gap: 15px; }
  .trust-badges span { font-size: 12px; padding: 10px 20px; }
  
  .benefits, .services-overview, .how-it-works, .stats, .testimonials, .projects, .blog-posts { padding: 60px 20px; }
  
  .btn { padding: 15px 30px; font-size: 14px; }
  
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; min-width: 140px; }
  
  .footer-content { gap: 30px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  
  .stat-number { font-size: 36px; }
  .stat-label { font-size: 13px; }
  
  .step-number { width: 60px; height: 60px; font-size: 24px; }
  
  .cookie-modal-content { padding: 30px 20px; }
  .cookie-modal h2 { font-size: 22px; }
}

/* ========================================
   ANIMATIONS & INTERACTIONS
   ======================================== */

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #feca57;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none !important;
  }
  
  body {
    background: #fff;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary,
  .btn-secondary {
    border: 2px solid currentColor;
  }
}

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