/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Vibrant Color Palette with Facebook Blue Base */
  --primary-blue: #1877F2;
  --dark-blue: #166FE5;
  --light-blue: #42A5F5;
  --electric-purple: #8E44AD;
  --vibrant-purple: #9B59B6;
  --sunset-orange: #FF6B35;
  --golden-yellow: #F1C40F;
  --emerald-green: #2ECC71;
  --coral-pink: #FF6B9D;
  --turquoise: #1ABC9C;
  --crimson-red: #E74C3C;
  --royal-purple: #663399;
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #1877F2, #8E44AD);
  --gradient-secondary: linear-gradient(135deg, #FF6B35, #F1C40F);
  --gradient-tertiary: linear-gradient(135deg, #2ECC71, #1ABC9C);
  --gradient-accent: linear-gradient(135deg, #FF6B9D, #9B59B6);
  --gradient-hero: linear-gradient(135deg, #1877F2 0%, #8E44AD 50%, #FF6B35 100%);
  
  /* Text Colors */
  --text-dark: #1C1E21;
  --text-light: #65676B;
  --text-muted: #8A8D91;
  --text-white: #FFFFFF;
  
  /* Background Colors */
  --background-white: #FFFFFF;
  --background-light: #F8F9FA;
  --background-gradient: linear-gradient(135deg, #F8F9FA 0%, #E3F2FD 100%);
  --border-light: #DADDE1;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-padding: 0 24px;
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-white);
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(24, 119, 242, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

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

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 160px 0 120px;
  background: var(--background-gradient);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(24, 119, 242, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(142, 68, 173, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(24, 119, 242, 0.2);
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.1);
}

.rating-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-blue);
}

.hero-badge span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.hero-title-container {
  margin-bottom: 32px;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0;
}

.title-word {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.title-word:hover {
  transform: translateY(-5px);
}

.title-word.highlight {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-smooth);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 119, 242, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--primary-blue);
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

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

/* Section Styles */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-number {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 600;
  background: rgba(24, 119, 242, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
}

.section-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.section-brand {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.section-title {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: auto;
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background: var(--background-white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-intro {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.services-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--background-light);
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.rating-badge img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--emerald-green);
}

.rating-badge span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.service-item {
  padding: 32px;
  background: var(--background-white);
  border: 2px solid transparent;
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.service-item:nth-child(2)::before {
  background: var(--gradient-secondary);
}

.service-item:nth-child(3)::before {
  background: var(--gradient-tertiary);
}

.service-item:nth-child(4)::before {
  background: var(--gradient-accent);
}

.service-item:nth-child(5)::before {
  background: var(--gradient-primary);
}

.service-item:nth-child(6)::before {
  background: var(--gradient-secondary);
}

.service-item:hover::before {
  opacity: 0.1;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.service-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-arrow {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  transition: var(--transition-smooth);
}

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

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

.services-image {
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Case Studies Section */
.case-studies-section {
  padding: var(--section-padding);
  background: var(--background-light);
  position: relative;
}

.case-studies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.case-studies-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.case-studies-cta {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.case-study-item {
  background: var(--background-white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.case-study-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--sunset-orange);
}

.case-study-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.case-study-item:hover img {
  transform: scale(1.1);
}

.case-study-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 24px 12px;
}

.case-study-item p {
  color: var(--text-light);
  margin: 0 24px 24px;
  line-height: 1.6;
}

/* Numbers Section */
.numbers-section {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

.numbers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.numbers-headline {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 80px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 2;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.number-item {
  transition: var(--transition-smooth);
}

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

.number-item h4 {
  font-size: 64px;
  font-weight: 800;
  color: var(--golden-yellow);
  margin-bottom: 16px;
  line-height: 1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.number-item p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Benefits Section */
.benefits-section {
  padding: var(--section-padding);
  background: var(--background-white);
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(26, 188, 156, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 80px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.benefit-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: var(--background-light);
  border-radius: 16px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.benefit-item:hover {
  transform: translateX(10px);
  border-color: var(--turquoise);
  box-shadow: 0 15px 35px rgba(26, 188, 156, 0.2);
}

.benefit-number {
  font-size: 18px;
  font-weight: 600;
  color: white;
  min-width: 40px;
  height: 40px;
  background: var(--gradient-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

/* Process Section */
.process-section {
  padding: var(--section-padding);
  background: var(--background-light);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.process-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.process-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.process-cta {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 2;
}

.process-step {
  text-align: center;
  padding: 32px;
  background: var(--background-white);
  border-radius: 16px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: var(--coral-pink);
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.step-label {
  font-size: 14px;
  color: var(--coral-pink);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  background: rgba(255, 107, 157, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--background-white);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(142, 68, 173, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 80px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.testimonial-item {
  background: var(--background-light);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--electric-purple);
}

.testimonial-quote {
  margin-bottom: 24px;
}

.testimonial-quote i {
  font-size: 24px;
  color: var(--electric-purple);
  margin-bottom: 16px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--electric-purple);
}

.author-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

.video-testimonial {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.video-testimonial:hover {
  transform: scale(1.02);
}

.video-testimonial img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.8), rgba(142, 68, 173, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px;
}

.video-overlay i {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--golden-yellow);
  transition: var(--transition-smooth);
}

.video-overlay:hover i {
  transform: scale(1.2);
}

.video-overlay h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.video-overlay p {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.play-button {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.play-button:hover {
  color: var(--golden-yellow);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--background-light);
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 60%, rgba(241, 196, 15, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-headline {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
}

.gallery-grid img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--golden-yellow);
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding);
  background: var(--background-white);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.faq-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 80px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: var(--background-light);
  margin: 0 -24px;
  padding: 32px 24px;
  border-radius: 12px;
  border-bottom: 1px solid transparent;
}

.faq-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-arrow {
  font-size: 16px;
  color: var(--crimson-red);
  font-weight: 600;
  transition: var(--transition-smooth);
}

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

.faq-answer {
  display: none;
  margin-top: 16px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* About Section */
.about-section {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-headline {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.about-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: var(--text-dark);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.contact-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.contact-links a:hover {
  color: var(--golden-yellow);
  transform: translateX(5px);
}

.contact-details h4,
.address-details h4,
.postal-details h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details,
.address-details,
.postal-details {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--golden-yellow);
}

.contact-details p,
.address-details p,
.postal-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.5;
}

.contact-details p strong {
  color: var(--golden-yellow);
  font-weight: 600;
}

.address-details {
  border-left-color: var(--emerald-green);
}

.postal-details {
  border-left-color: var(--coral-pink);
}

.contact-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.contact-footer a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-footer a:hover {
  color: var(--golden-yellow);
}

.contact-form-container {
  background: var(--background-white);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-form > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-primary);
  transition: var(--transition-smooth);
  background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--background-white);
    width: 100%;
    text-align: center;
    transition: var(--transition-smooth);
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 24px 80px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    padding: 32px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .services-headline,
  .case-studies-headline,
  .numbers-headline,
  .benefits-headline,
  .process-headline,
  .testimonials-headline,
  .faq-headline,
  .about-headline {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 24px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
}