/* ================================
   FRESHDRAPE CSS - VIBRANT & ENERGETIC
   Design Style: Electric, Dynamic, High Energy
   ================================ */

/* ===== CSS RESET & BASE ===== */
* {
  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: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2B5BA6 0%, #E8505B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 0 rgba(232, 80, 91, 0.2);
}

h2 {
  font-size: 36px;
  color: #2B5BA6;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #E8505B, #FF6B76);
  border-radius: 3px;
}

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

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

strong {
  font-weight: 700;
  color: #E8505B;
}

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

.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 0;
  position: relative;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #2B5BA6 0%, #1e4078 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(43, 91, 166, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #E8505B;
}

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

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

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #E8505B;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

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

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

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: #E8505B;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(232, 80, 91, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: #d63d48;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2B5BA6 0%, #1e4078 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E8505B;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: #d63d48;
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: #E8505B;
  border-left-color: #ffffff;
  transform: translateX(10px);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #E8505B 0%, #FF6B76 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(232, 80, 91, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2B5BA6 0%, #3d6fc4 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 80, 91, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #2B5BA6;
  border-color: #2B5BA6;
  box-shadow: 0 4px 15px rgba(43, 91, 166, 0.2);
}

.btn-secondary:hover {
  background: #2B5BA6;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 91, 166, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #2B5BA6 0%, #E8505B 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite reverse;
}

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

.hero .content-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
  animation: slideInDown 0.8s ease-out;
}

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

.subheadline {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

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

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
  animation: fadeIn 1s ease-out 0.4s both;
}

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

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

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

/* ===== HERO INTERNAL ===== */
.hero-internal {
  background: linear-gradient(135deg, #2B5BA6 0%, #3d6fc4 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-internal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.hero-internal .content-wrapper {
  position: relative;
  z-index: 10;
}

.hero-internal h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-internal p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.breadcrumb {
  margin-bottom: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #E8505B;
}

.timeline-badge,
.badge {
  display: inline-block;
  background: #E8505B;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(232, 80, 91, 0.3);
}

/* ===== CARDS & GRID LAYOUTS ===== */
.service-cards,
.featured-services,
.service-list,
.package-grid,
.team-grid,
.category-grid,
.trust-points,
.contact-methods,
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.service-card,
.package-card,
.team-member,
.category-card,
.trust-point,
.contact-method,
.stat {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.service-card::before,
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E8505B, #2B5BA6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover,
.package-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(43, 91, 166, 0.2);
  border-color: #2B5BA6;
}

.service-card h3,
.package-card h3 {
  color: #2B5BA6;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-card p,
.package-card p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.savings {
  display: block;
  background: #FFE8EA;
  color: #E8505B;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

.service-card.featured,
.package-card.popular {
  border-color: #E8505B;
  box-shadow: 0 12px 40px rgba(232, 80, 91, 0.25);
  transform: scale(1.02);
}

.package-card.premium {
  background: linear-gradient(135deg, #2B5BA6 0%, #3d6fc4 100%);
  color: #ffffff;
  border-color: #E8505B;
}

.package-card.premium h3,
.package-card.premium p,
.package-card.premium .price {
  color: #ffffff;
}

/* ===== SERVICE ITEMS ===== */
.service-item {
  background: #F4F4F4;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 24px;
  border-left: 5px solid #E8505B;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.service-item h3 {
  color: #2B5BA6;
  margin-bottom: 12px;
}

.service-item ul {
  margin-top: 15px;
  padding-left: 20px;
}

.service-item ul li {
  margin-bottom: 8px;
  color: #444;
  position: relative;
  padding-left: 25px;
}

.service-item ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: #E8505B;
  font-size: 16px;
}

/* ===== STATISTICS ===== */
.stat {
  text-align: center;
  background: linear-gradient(135deg, #E8505B 0%, #FF6B76 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  min-width: 200px;
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat span:last-child {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #E8505B;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 80px;
  color: rgba(232, 80, 91, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.testimonial-card strong {
  display: block;
  color: #2B5BA6;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 700;
}

.testimonial-card span {
  display: block;
  color: #666;
  font-size: 14px;
  margin-top: 5px;
  font-style: italic;
}

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
  position: relative;
}

.step {
  flex: 1 1 calc(20% - 30px);
  min-width: 180px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #E8505B, transparent);
  z-index: -1;
}

.step:last-child::before {
  display: none;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(232, 80, 91, 0.2);
  background: linear-gradient(135deg, #E8505B 0%, #FF6B76 100%);
  color: #ffffff;
}

.step:hover h3,
.step:hover p {
  color: #ffffff;
}

.step h3 {
  font-size: 32px;
  color: #E8505B;
  margin-bottom: 15px;
  font-weight: 800;
}

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

/* ===== STAGE DETAILED ===== */
.stage-detailed {
  background: #F4F4F4;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.stage-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #E8505B, #2B5BA6);
}

.duration {
  display: inline-block;
  background: #2B5BA6;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.stage-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.activities,
.deliverables {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
}

.activities h3,
.deliverables h3 {
  color: #E8505B;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.activities ul,
.deliverables ul {
  padding-left: 20px;
}

.activities ul li,
.deliverables ul li {
  margin-bottom: 12px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.activities ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: #E8505B;
}

.deliverables ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B5BA6;
  font-weight: bold;
}

/* ===== FAQ ===== */
.faq-items {
  margin: 40px 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #2B5BA6;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
  border-left-color: #E8505B;
}

.faq-item h3 {
  color: #2B5BA6;
  font-size: 18px;
  margin-bottom: 15px;
}

.faq-item p {
  color: #444;
  line-height: 1.7;
}

/* ===== TEXT SECTIONS ===== */
.text-section {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.text-section h3 {
  color: #2B5BA6;
  margin-top: 30px;
  margin-bottom: 15px;
}

.text-section ul,
.text-section ol {
  padding-left: 30px;
  margin: 20px 0;
}

.text-section li {
  margin-bottom: 12px;
  color: #333;
  line-height: 1.7;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
}

.benefits li {
  background: #F4F4F4;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #E8505B;
  font-weight: 600;
  color: #2B5BA6;
  transition: all 0.3s ease;
}

.benefits li:hover {
  background: #E8505B;
  color: #ffffff;
  transform: translateX(10px);
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
  list-style: none;
}

.values li {
  background: linear-gradient(135deg, #2B5BA6, #3d6fc4);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(43, 91, 166, 0.3);
  transition: all 0.3s ease;
}

.values li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 80, 91, 0.4);
  background: linear-gradient(135deg, #E8505B, #FF6B76);
}

/* ===== SCENARIOS ===== */
.scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.scenario {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #E8505B;
  transition: all 0.3s ease;
}

.scenario:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(232, 80, 91, 0.2);
  border-top-color: #2B5BA6;
}

.scenario h3 {
  color: #2B5BA6;
  font-size: 22px;
  margin-bottom: 15px;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  background: #F4F4F4;
  padding: 60px 0;
  border-radius: 20px;
  margin: 40px 0;
}

.form-info {
  background: #FFE8EA;
  border-left: 5px solid #E8505B;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.form-fields-display {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.field-group {
  margin-bottom: 25px;
}

.field-group label {
  display: block;
  font-weight: 700;
  color: #2B5BA6;
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-placeholder {
  background: #F4F4F4;
  padding: 15px;
  border-radius: 10px;
  color: #999;
  border: 2px solid #ddd;
  font-style: italic;
}

.button-placeholder {
  background: linear-gradient(135deg, #E8505B, #FF6B76);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(232, 80, 91, 0.4);
}

.privacy-note {
  margin-top: 25px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* ===== CTA SECTIONS ===== */
.cta-section,
.cta-final {
  background: linear-gradient(135deg, #2B5BA6 0%, #E8505B 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2,
.cta-final h2 {
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section h2::after,
.cta-final h2::after {
  display: none;
}

.cta-section p,
.cta-final p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 30px;
}

.urgency {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  margin-top: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.5); }
}

/* ===== THANK YOU PAGE ===== */
.hero-thankyou {
  background: linear-gradient(135deg, #E8505B 0%, #FF6B76 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-thankyou::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 300px;
  color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
}

.hero-thankyou h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  position: relative;
  z-index: 10;
}

.confirmation {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 25px 0;
}

.next-steps,
.while-waiting,
.urgent-contact,
.next-info {
  padding: 60px 0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E8505B, #FF6B76);
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  line-height: 50px;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(232, 80, 91, 0.3);
}

.resources {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.resource-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2B5BA6;
  transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.resource-item .link {
  color: #E8505B;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 15px;
  display: inline-block;
}

/* ===== OFFICE INFO ===== */
.office-info,
.languages,
.response-time {
  background: #F4F4F4;
  padding: 50px 0;
  border-radius: 20px;
  margin: 40px 0;
}

.office-details {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.office-details p {
  margin-bottom: 25px;
  line-height: 1.8;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 60px 0;
}

.legal-content .text-section h2 {
  color: #2B5BA6;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content .text-section p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  border-top: 5px solid #E8505B;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8505B, #2B5BA6, #E8505B);
  animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-section h3 {
  color: #E8505B;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.footer-section nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E8505B;
  transition: all 0.3s ease;
}

.footer-section nav a:hover {
  color: #E8505B;
  padding-left: 30px;
}

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

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

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

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 25px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #E8505B;
}

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

.cookie-consent .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-accept {
  background: #E8505B;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #d63d48;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 80, 91, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-reject:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.cookie-settings {
  background: #2B5BA6;
  color: #ffffff;
}

.cookie-settings:hover {
  background: #3d6fc4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 91, 166, 0.4);
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E8505B;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #d63d48;
  transform: rotate(90deg);
}

.cookie-category {
  background: #F4F4F4;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-category h3 {
  color: #2B5BA6;
  font-size: 18px;
  margin-bottom: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #E8505B;
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero */
  .hero,
  .hero-internal {
    padding: 60px 0;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Cards and Grids */
  .service-card,
  .package-card,
  .team-member,
  .category-card,
  .trust-point,
  .contact-method,
  .stat,
  .testimonial-card,
  .step,
  .scenario,
  .resource-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .service-cards,
  .featured-services,
  .package-grid,
  .team-grid,
  .category-grid,
  .trust-points,
  .contact-methods,
  .statistics,
  .testimonials,
  .timeline,
  .scenarios,
  .resources,
  .steps {
    gap: 20px;
  }
  
  /* Stage Content */
  .stage-content {
    flex-direction: column;
  }
  
  .activities,
  .deliverables {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Trust Badges */
  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Stage Detailed */
  .stage-detailed {
    padding: 30px 20px;
  }
  
  /* Contact Methods */
  .contact-methods {
    flex-direction: column;
  }
  
  /* Form */
  .form-fields-display {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-internal {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .text-section {
    padding: 25px;
  }
  
  .service-card,
  .package-card,
  .testimonial-card {
    padding: 20px;
  }
  
  .stat .number {
    font-size: 36px;
  }
  
  .price {
    font-size: 24px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

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

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

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

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

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 3px solid #E8505B;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #E8505B;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-buttons {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}