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

/* Custom spacing utility to support py-lg-6 used in views */
@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

/* Improve before/after images: keep aspect ratio to reduce CLS */
.before-after-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  font-size: 0.9rem;
}

.top-bar i {
  color: #fff;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  color: #1a1a1a !important;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-brand span {
  color: #1a1a1a !important;
}

.navbar-brand:hover {
  color: #1a1a1a !important;
}

.navbar-brand-img {
  max-height: 70px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand-img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s;
  margin: 0 0.5rem;
}

.nav-link:hover {
  color: #007bff !important;
}

/* Hero Section - Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .carousel {
  height: 100%;
}

.hero-slider .carousel-inner {
  height: 100%;
}

.hero-slider .carousel-item {
  height: 100%;
}

.carousel-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-slide .container {
  position: relative;
  z-index: 2;
}

.hero-slider .carousel-indicators {
  bottom: 30px;
  z-index: 3;
}

.hero-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 5px;
}

.hero-slider .carousel-indicators button.active {
  background-color: #fff;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: opacity 0.3s, background-color 0.3s;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-slider .carousel-control-prev {
  left: 30px;
}

.hero-slider .carousel-control-next {
  right: 30px;
}

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

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

/* Hero Section - Legacy (for compatibility) */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Sections */
section {
  position: relative;
  overflow: hidden;
}

/* Section Transitions - Smooth Color Gradients */
section::before,
section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}

/* Top fade transition */
section::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Bottom fade transition */
section::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hero Slider -> Services (Dark to Light) */
.hero-slider::after {
  background: linear-gradient(to top, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
  opacity: 1;
  height: 80px;
}

/* Services Section (Light) */
section.bg-light::after {
  background: linear-gradient(to top, rgba(248, 249, 250, 0.8), transparent);
  opacity: 1;
  height: 50px;
}

/* Featured Projects (Light Gray) */
section.bg-light-gray::before {
  background: linear-gradient(to bottom, rgba(248, 249, 250, 1), transparent);
  opacity: 1;
  height: 50px;
}

/* Process Steps (Gradient) */
section.bg-gradient-light::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
  opacity: 1;
  height: 60px;
}

section.bg-gradient-light::after {
  background: linear-gradient(to top, rgba(248, 249, 250, 0.9), transparent);
  opacity: 1;
  height: 60px;
}

/* Testimonials -> CTA (Light Gray to Blue) */
section.bg-light-gray:last-of-type::after {
  background: linear-gradient(to top, rgba(0, 123, 255, 1), rgba(248, 249, 250, 0));
  opacity: 1;
  height: 100px;
}


.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: #2c3e50;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  color: #6c757d;
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

/* Section Content - Ensure content is above transitions */
section > .container {
  position: relative;
  z-index: 2;
}

/* Project Card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

/* Service Card - Modern with Images */
.service-card-modern {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-modern:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card-modern:hover .service-card-overlay {
  opacity: 1;
}

.service-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h4 {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-content p {
  color: #6c757d;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-card-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}

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

.service-card-link i {
  transition: transform 0.3s;
}

.service-card-link:hover i {
  transform: translateX(5px);
}

/* Legacy Service Card (for compatibility) */
.service-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
}

/* Testimonial Card */
.testimonial-card {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 2rem;
  height: 100%;
}

/* Process Step */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Modern Process Steps Section */
.bg-gradient-light {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

/* Smooth transition overlay for gradient sections */
.bg-gradient-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Process Summary Box - Modern Bottom Version */
.process-summary-box {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(102, 16, 242, 0.05) 100%);
  border: 1px solid rgba(0, 123, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.process-summary-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056b3, #6610f2);
}

.process-summary-item {
  transition: transform 0.3s ease;
}

.process-summary-item:hover {
  transform: translateY(-5px);
}

.process-summary-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #6610f2 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-summary-item:hover .process-summary-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.process-summary-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-summary-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}

/* Modern Process Step Card */
.process-step-modern-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.process-step-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3, #6610f2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.process-step-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15), 0 4px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 123, 255, 0.2);
}

.process-step-modern-card:hover::before {
  transform: scaleX(1);
}

.process-step-modern-header {
  padding: 1.75rem 1.75rem 1rem;
  position: relative;
}

.process-step-modern-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #6610f2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  position: relative;
  transition: transform 0.3s ease;
}

.process-step-modern-card:hover .process-step-modern-number {
  transform: scale(1.05) rotate(2deg);
}

.process-step-modern-number span {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.process-step-modern-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #007bff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-step-modern-body {
  padding: 0 1.75rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.process-step-modern-title {
  font-size: 1.25rem;
  color: #1a202c;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.process-step-modern-description {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
  flex-grow: 1;
}

.process-step-deliverables-modern {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.03), rgba(102, 16, 242, 0.03));
  border-left: 3px solid #007bff;
  border-radius: 8px;
  padding: 0.875rem 1rem;
}

.process-step-deliverables-modern li {
  font-size: 0.875rem;
  color: #2d3748;
  line-height: 1.6;
}

.process-step-modern-meta {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin-top: auto;
}

.process-step-modern-meta small {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.process-step-modern-meta i {
  font-size: 0.875rem;
  width: 16px;
}

/* Process Steps Row Animation */
.process-steps-row > div {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.process-steps-row > div:nth-child(1) { animation-delay: 0.1s; }
.process-steps-row > div:nth-child(2) { animation-delay: 0.2s; }
.process-steps-row > div:nth-child(3) { animation-delay: 0.3s; }
.process-steps-row > div:nth-child(4) { animation-delay: 0.4s; }
.process-steps-row > div:nth-child(5) { animation-delay: 0.5s; }
.process-steps-row > div:nth-child(6) { animation-delay: 0.6s; }

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .process-step-modern-number {
    width: 56px;
    height: 56px;
  }
  
  .process-step-modern-number span {
    font-size: 1.125rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-quick-card {
  display: block;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  color: inherit;
}

.contact-quick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.2);
  color: inherit;
}

.contact-quick-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.contact-quick-card:hover .contact-quick-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-quick-card h5 {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Social Links */
.social-link {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  color: #ffffff;
}

.social-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-pinterest {
  background: #bd081c;
}

.social-google {
  background: #4285f4;
}

.social-link:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Working Hours Item */
.working-hours-item {
  transition: background-color 0.2s ease;
}

.working-hours-item:hover {
  background-color: rgba(0, 123, 255, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 6px #666;
  color: #fff;
}

.whatsapp-float i {
  margin-top: 8px;
}

/* Site Footer - Awwwards Light Showpiece Footer */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
  color: #e0e0e0;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
}

/* Smooth transition from content to footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 1), rgba(15, 15, 15, 0));
  pointer-events: none;
  z-index: 0;
}

/* Subtle dot pattern overlay */
.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 1.5rem;
}

/* (1) CTA HERO SECTION */
.footer-cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Smooth transition from CTA to Footer */
.footer-cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(15, 15, 15, 1), rgba(0, 123, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.footer-cta-section .container {
  position: relative;
  z-index: 2;
}

.footer-cta-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #007bff;
  background: #ffffff;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 200ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #007bff;
  text-decoration: none;
  background: #f8f9fa;
}

/* (2) FOOTER CONTENT - Separator */
.footer-content {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ctas {
  margin-top: 1rem;
}

.footer-cta-primary,
.footer-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.footer-cta-primary {
  background: #007bff;
  color: #ffffff;
  border: none;
}

.footer-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.45);
  color: #ffffff;
  text-decoration: none;
  background: #0056b3;
}

.footer-cta-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.footer-cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

/* (2) INFO ROW */
.footer-info-row {
  margin-bottom: 1.75rem;
}

.footer-info-row .row {
  align-items: center;
}

/* Brand Block */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-brand-logo {
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.625rem;
}

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.125rem;
  line-height: 1.3;
}

.footer-brand-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Contact Chips */
.footer-chips {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.125rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
  box-shadow: none;
}

.footer-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.footer-chip i {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.footer-chip:hover i {
  color: rgba(255, 255, 255, 0.9);
}

.footer-chip span {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
}

.footer-chip-address {
  max-width: 380px;
}

.footer-chip-address span {
  max-width: calc(100% - 2rem);
}

/* Social Icons */
.footer-social {
  text-align: right;
}

.footer-social-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 200ms ease;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.footer-social-icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

/* (3) BOTTOM BAR */
.footer-bottom {
  padding-top: 1.25rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 0.875rem 0;
  opacity: 1;
}

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

.footer-copyright p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Main Content - Remove margin before footer */
main {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .footer-cta-headline {
    font-size: 2rem;
  }

  .footer-cta-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .footer-cta-section {
    padding: 3rem 0;
  }

  .footer-content {
    padding-top: 2.5rem;
  }

  .footer-social {
    text-align: left;
    margin-top: 1.5rem;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    margin-top: 0;
  }

  .site-footer .container {
    padding-top: 0;
    padding-bottom: 1.25rem;
  }

  .footer-cta-section {
    padding: 2.5rem 0;
  }

  .footer-cta-headline {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .footer-cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-cta-button {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .footer-content {
    padding-top: 2rem;
  }

  .footer-info-row {
    margin-bottom: 1.5rem;
  }

  .footer-brand,
  .footer-chips,
  .footer-social {
    margin-bottom: 1.5rem;
  }

  .footer-social {
    text-align: left;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-chip {
    width: 100%;
    max-width: 100%;
  }

  .footer-chip-address {
    max-width: 100%;
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  .footer-divider {
    margin-bottom: 0.75rem;
  }
}

/* Buttons */
.btn-primary {
  background: #007bff;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Utilities */
.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.bg-light-gray {
  background-color: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
  
  .carousel-slide {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider .carousel-control-prev {
    left: 15px;
  }
  
  .hero-slider .carousel-control-next {
    right: 15px;
  }
  
  .hero-slider .carousel-indicators {
    bottom: 15px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card-image {
    height: 220px;
  }
  
  .service-card-content {
    padding: 1.5rem;
  }
  
  .service-card-content h4 {
    font-size: 1.25rem;
  }
}

/* ============================================
   AWWWARDS LIGHT STYLE - CONTACT PAGE
   ============================================ */

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

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section - Awwwards Light */
.contact-hero-awwwards {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 1) 50%, rgba(241, 245, 249, 0.8) 100%);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(102, 16, 242, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 0, 0, 0.02) 20px, rgba(0, 0, 0, 0.02) 21px);
  position: relative;
  overflow: hidden;
}

.contact-hero-awwwards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0, 0, 0, 0.01) 20px, rgba(0, 0, 0, 0.01) 21px);
  pointer-events: none;
  opacity: 0.4;
}

.contact-hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(102, 16, 242, 0.1));
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #007bff;
}

/* Visual Collage */
.contact-visual-collage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.collage-large-card {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(102, 16, 242, 0.05));
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 123, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-large-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.collage-image-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #adb5bd;
}

.collage-small-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.collage-small-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.collage-small-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
}

.collage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.collage-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.collage-text strong {
  font-size: 0.95rem;
  color: #1e293b;
}

.collage-text span {
  font-size: 0.85rem;
  color: #64748b;
}

/* Quick Contact Cards - Awwwards Light */
.contact-quick-card-awwwards {
  display: block;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-quick-card-awwwards:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.18);
  border-color: rgba(0, 123, 255, 0.3);
  color: inherit;
}

.contact-quick-icon-awwwards {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-quick-card-awwwards:hover .contact-quick-icon-awwwards {
  transform: scale(1.1) rotate(5deg);
}

.contact-quick-card-awwwards h5 {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-quick-card-awwwards small {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Contact Form Card - Awwwards Light (Compact) */
.contact-form-card-awwwards {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.contact-form-card-awwwards:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 1.5rem;
}

.form-section:last-of-type {
  margin-bottom: 0;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.form-section .form-label {
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.form-section .form-control,
.form-section .form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-section .form-control:focus,
.form-section .form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-text {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* File Upload Area */
.file-upload-area-awwwards {
  border: 2px dashed rgba(0, 123, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background: rgba(0, 123, 255, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area-awwwards:hover {
  border-color: rgba(0, 123, 255, 0.5);
  background: rgba(0, 123, 255, 0.05);
}

.file-upload-label {
  display: block;
  cursor: pointer;
  color: #64748b;
}

.file-upload-label span {
  font-weight: 500;
  color: #334155;
}

#attachment:focus + .file-upload-label,
.file-upload-area-awwwards:has(input:focus) {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Map wrapper: Form col-lg-4, Map col-lg-8. Full-bleed within column, min-height 560px, absolute iframe. */
.contact-map-bleed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  background: #f8f9fa;
}

.contact-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 3rem;
}

/* Map Overlay - Glassmorphism Panel */
.contact-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: none;
  max-width: 420px;
}

.overlay-content {
  color: #1e293b;
}

.overlay-company {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.overlay-address {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.overlay-hours {
  margin-bottom: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.overlay-hours-item {
  line-height: 1.6;
}

.overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.overlay-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.overlay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Legacy styles - keep for backward compatibility */
.contact-map-area-awwwards {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-height: 320px;
  height: 520px;
  background: #f8f9fa;
}

.map-actions-minimal {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.map-container-hero-awwwards {
  width: 100%;
  height: 100%;
  position: relative;
  border: none;
}

.map-container-hero-awwwards iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder-hero-awwwards {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 3rem;
}

/* Legacy Map Card - Keep for backward compatibility if needed */
.contact-map-card-awwwards {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.map-header-awwwards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-actions {
  display: flex;
  gap: 0.5rem;
}

.map-container-awwwards {
  overflow: hidden;
  border-radius: 12px;
}

.map-placeholder-awwwards {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 3rem;
}

/* Working Hours Card */
.contact-hours-card-awwwards {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hours-header-awwwards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
  width: fit-content;
}

.hours-item-awwwards {
  transition: background-color 0.2s ease, padding 0.2s ease;
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hours-item-awwwards:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

/* Social Gallery */
.social-gallery-card-awwwards {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.social-gallery-card-awwwards:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #adb5bd;
}

/* FAQ Accordion - Awwwards Light */
.accordion-awwwards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item-awwwards {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.accordion-item-awwwards:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 123, 255, 0.2);
}

.accordion-button-awwwards {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-button-awwwards:not(.collapsed) {
  background: rgba(0, 123, 255, 0.05);
}

.accordion-button-awwwards:hover {
  background: rgba(0, 123, 255, 0.05);
}

.accordion-button-awwwards::after {
  margin-left: auto;
  flex-shrink: 0;
}

.accordion-body-awwwards {
  padding: 0 2rem 1.5rem 4rem;
  color: #64748b;
  line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-hero-awwwards {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .contact-visual-collage {
    margin-top: 2rem;
  }

  .collage-small-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-card-awwwards {
    padding: 2rem 1.5rem;
  }

  .form-section-title {
    font-size: 1.1rem;
  }

  .accordion-button-awwwards {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .accordion-body-awwwards {
    padding: 0 1.5rem 1.25rem 3rem;
  }

  .map-header-awwwards {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map-area-awwwards {
    height: 320px;
    margin-top: 2rem;
  }

  .form-section {
    margin-bottom: 1.25rem;
  }

  .contact-form-card-awwwards {
    padding: 1.75rem 1.5rem;
  }

  .contact-map-bleed,
  .contact-map-frame {
    min-height: 420px;
  }

  .contact-map-overlay {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 100%;
    padding: 1.25rem;
  }

  .overlay-content {
    font-size: 0.9rem;
  }

  .overlay-company {
    font-size: 1rem;
  }

  .overlay-actions {
    flex-direction: column;
  }

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

@media (min-width: 992px) {
  .contact-map-overlay {
    bottom: 2rem;
    left: 2rem;
    right: auto;
  }
}

/* ============================================
   Social Follow Section - Awwwards Light
   ============================================ */

.social-follow-section {
  background: #f8f9fa;
  position: relative;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-tile {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e0e0e0;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
  display: block;
}

.social-tile:hover img {
  transform: scale(1.04);
}

.social-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 300ms ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
}

.social-tile:hover .social-overlay {
  opacity: 1;
}

.social-overlay-content {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-overlay-content i {
  font-size: 1.25rem;
}

.social-cta {
  margin-top: 2rem;
}

.social-cta .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.social-cta .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: #ffffff;
}

.social-cta .btn-primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #653a91 100%);
  color: #ffffff;
}

.social-cta .btn-outline-primary {
  border: 2px solid #667eea;
  color: #667eea;
  background: transparent;
}

.social-cta .btn-outline-primary:hover {
  background: #667eea;
  color: #ffffff;
  border-color: #667eea;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .social-tile,
  .social-tile img,
  .social-overlay,
  .social-cta .btn {
    transition: none;
  }

  .social-tile:hover img {
    transform: none;
  }

  .social-tile:hover {
    transform: none;
  }

  .social-cta .btn:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .social-follow-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .social-tile {
    aspect-ratio: 16 / 10;
  }

  .social-cta .btn {
    width: 100%;
    max-width: 300px;
    margin: 0.5rem 0;
  }

  .social-cta .btn.me-3 {
    margin-right: 0 !important;
  }
}

/* ============================================
   SERVICES PAGE - AWWWARDS LIGHT STYLE
   ============================================ */

/* Services Hero Section (Catalog) */
.services-hero-catalog {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 1) 50%, rgba(241, 245, 249, 0.8) 100%);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(102, 16, 242, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 0, 0, 0.02) 20px, rgba(0, 0, 0, 0.02) 21px);
  position: relative;
  overflow: hidden;
}

.services-hero-catalog .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.services-hero-catalog .breadcrumb-item a {
  color: #007bff;
  text-decoration: none;
  transition: color 200ms ease;
}

.services-hero-catalog .breadcrumb-item a:hover {
  color: #0056b3;
}

.services-hero-catalog .breadcrumb-item.active {
  color: #6c757d;
}

.services-hero {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 1) 50%, rgba(241, 245, 249, 0.8) 100%);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(102, 16, 242, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 0, 0, 0.02) 20px, rgba(0, 0, 0, 0.02) 21px);
  position: relative;
  overflow: hidden;
}

.services-hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(102, 16, 242, 0.1));
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #007bff;
}

.services-info-chips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.info-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.info-chip-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-chip-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-chip-content strong {
  font-size: 0.9375rem;
  color: #1a202c;
  font-weight: 600;
}

.info-chip-content span {
  font-size: 0.875rem;
  color: #64748b;
}

.services-hero-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
  opacity: 1;
}

/* Services Meta Pills */
.services-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.meta-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 123, 255, 0.08);
  color: #007bff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(0, 123, 255, 0.15);
  transition: all 200ms ease;
}

.meta-pill:hover {
  background: rgba(0, 123, 255, 0.12);
  border-color: rgba(0, 123, 255, 0.25);
  transform: translateY(-1px);
}

/* Service Item (for filtering) */
.service-item {
  transition: opacity 300ms ease, transform 300ms ease;
}

/* Category Filter */
.services-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 250ms ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(0, 123, 255, 0.05);
  border-color: rgba(0, 123, 255, 0.3);
  color: #007bff;
  transform: translateY(-1px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-color: #007bff;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.25);
}

.filter-btn.active:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.35);
}

/* Service Cards (Services Page - Catalog) */
.service-card-catalog {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.service-card-catalog--has-image {
  padding: 0;
}

.service-card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.service-card-catalog--has-image:hover .service-card-image {
  transform: scale(1.06);
}

.service-card-catalog--has-image .service-card-content-catalog {
  padding: 1.5rem 1.5rem 2rem;
}

.service-card-modern-page {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.service-card-catalog:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
}

.service-card-modern-page:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
}

.service-icon-badge-catalog {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #6610f2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  transition: transform 300ms ease, background 300ms ease;
  flex-shrink: 0;
  overflow: hidden;
}

.service-icon-badge-catalog .service-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.service-card-catalog--has-image .service-icon-badge-catalog {
  display: none;
}

.service-card-catalog:hover .service-icon-badge-catalog {
  transform: scale(1.05) rotate(2deg);
  background: linear-gradient(135deg, #0056b3 0%, #004085 50%, #520dc2 100%);
}

.service-card-catalog:hover .service-icon-badge-catalog .service-icon-image {
  transform: scale(1.1);
  transition: transform 300ms ease;
}

.service-icon-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #6610f2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  transition: transform 300ms ease, background 300ms ease;
  flex-shrink: 0;
}

.service-card-modern-page:hover .service-icon-badge {
  transform: scale(1.05) rotate(2deg);
  background: linear-gradient(135deg, #0056b3 0%, #004085 50%, #520dc2 100%);
}

.service-card-content-catalog {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title-catalog {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card-description-catalog {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-scope {
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-scope-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.875rem;
}

.service-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-scope-list li {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0.625rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-scope-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Service Detail Modal Styles */
#serviceDetailModal .modal-content {
  border-radius: 1.5rem;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#serviceDetailModal .modal-body {
  padding: 2rem;
}

.service-detail-modal {
  text-align: center;
}

.service-detail-image {
  position: relative;
  margin-bottom: 1.5rem;
}

.service-detail-image img {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-detail-icon-badge {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #6610f2 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ffffff;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.service-detail-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.service-detail-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  text-align: left;
}

.service-detail-scope {
  text-align: left;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-detail-scope-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.service-detail-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-scope-list li {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.service-detail-scope-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .service-detail-title {
    font-size: 1.5rem;
  }

  .service-detail-icon-badge {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

.service-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.service-card-actions .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 200ms ease;
}

.service-card-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.service-card-content-page {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card-description {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.service-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 123, 255, 0.08);
  color: #007bff;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(0, 123, 255, 0.15);
}

/* Process Summary Strip (Compact 1-row) */
.process-summary-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
}

.process-summary-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.process-summary-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #6610f2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-summary-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a202c;
}

.process-summary-divider {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Mini Process Strip (Legacy) */
.process-step-mini-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  transition: transform 300ms ease, box-shadow 300ms ease;
  position: relative;
}

.process-step-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.process-step-mini-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #6610f2 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 300ms ease;
}

.process-step-mini-card:hover .process-step-mini-number {
  transform: scale(1.05) rotate(2deg);
}

.process-step-mini-number span {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.process-step-mini-title {
  font-size: 1.25rem;
  color: #1a202c;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.process-step-mini-description {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  pointer-events: none;
  opacity: 0.3;
}

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

.cta-band-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-band-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.cta-band-buttons {
  margin-top: 0;
}

.cta-band .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.cta-band .btn-primary {
  background: #007bff;
  color: #ffffff;
  border: none;
}

.cta-band .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.45);
  color: #ffffff;
  background: #0056b3;
}

.cta-band .btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.cta-band .btn-outline-light:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

/* Package Cards */
.package-card {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
}

.package-recommended {
  border: 2px solid #007bff;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.package-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.package-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.package-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
  font-weight: 500;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.package-features li {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.package-features li i {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.package-card .btn {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 200ms ease;
}

.package-card .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
}

.faq-section .accordion-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 300ms ease;
}

.faq-section .accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.faq-section .accordion-button {
  background: #ffffff;
  border: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #1a202c;
  font-size: 1.0625rem;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: rgba(0, 123, 255, 0.05);
  color: #007bff;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-section .accordion-body {
  padding: 1.25rem 1.5rem;
  color: #4a5568;
  line-height: 1.7;
  background: #ffffff;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .service-card-catalog,
  .service-card-modern-page,
  .service-icon-badge-catalog,
  .service-icon-badge,
  .info-chip,
  .meta-pill,
  .filter-btn,
  .process-step-mini-card,
  .process-step-mini-number,
  .package-card,
  .cta-band .btn,
  .faq-section .accordion-item,
  .reveal {
    transition: none;
  }

  .service-card-catalog:hover,
  .service-card-modern-page:hover,
  .info-chip:hover,
  .meta-pill:hover,
  .filter-btn:hover,
  .process-step-mini-card:hover,
  .package-card:hover {
    transform: none;
  }

  .service-card-catalog:hover .service-icon-badge-catalog,
  .service-card-modern-page:hover .service-icon-badge,
  .process-step-mini-card:hover .process-step-mini-number {
    transform: none;
  }

  .service-card-catalog--has-image:hover .service-card-image {
    transform: none;
  }

  .cta-band .btn:hover,
  .service-card-actions .btn:hover,
  .package-card .btn:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .services-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .cta-band-title {
    font-size: 1.75rem;
  }

  .cta-band-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-band .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 991.98px) {
  .process-summary-strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-summary-divider {
    width: 30px;
    height: 1px;
  }
}

@media (max-width: 767.98px) {
  .services-hero-badge {
    font-size: 0.6875rem;
    padding: 0.35rem 0.875rem;
  }

  .services-meta-pills {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .services-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    flex-shrink: 0;
  }

  .info-chip {
    padding: 1rem 1.25rem;
  }

  .info-chip-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .service-card-catalog,
  .service-card-modern-page {
    padding: 1.5rem;
  }

  .service-card-catalog--has-image {
    padding: 0;
  }

  .service-card-catalog--has-image .service-card-content-catalog {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .service-icon-badge-catalog,
  .service-icon-badge {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .service-card-title-catalog,
  .service-card-title {
    font-size: 1.25rem;
  }

  .service-card-actions {
    flex-direction: column;
  }

  .service-card-actions .btn {
    width: 100%;
  }

  .process-summary-strip {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .process-summary-item {
    width: 100%;
    justify-content: center;
  }

  .process-summary-divider {
    display: none;
  }

  .package-card {
    padding: 1.5rem;
  }

  .package-badge {
    right: 1rem;
  }

  .process-step-mini-card {
    padding: 1.5rem;
  }

  .cta-band-title {
    font-size: 1.5rem;
  }

  .cta-band-subtitle {
    font-size: 1rem;
  }
}

/* ============================================
   PORTFOLIO GALLERY (Premium Awwwards Light)
   ============================================ */

/* Portfolio Hero */
.portfolio-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.portfolio-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.portfolio-hero h1 {
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.portfolio-hero .lead {
  color: #6c757d;
  font-weight: 400;
}

.portfolio-hero .small {
  color: #868e96;
  font-size: 0.875rem;
}

.portfolio-hero .small i {
  color: #007bff;
}

/* Portfolio Filter */
.portfolio-filter {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.portfolio-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.filter-btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #495057;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.filter-btn:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.2);
  transform: translateY(-1px);
  text-decoration: none;
}

.filter-btn-active {
  color: #ffffff;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

.filter-btn-active:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

/* Portfolio Grid Section */
.portfolio-grid-section {
  background: #ffffff;
  min-height: 60vh;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(320px, auto);
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* Portfolio Card */
.portfolio-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4 / 3;
  min-height: 320px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card--large {
  grid-row: span 2;
  grid-column: span 1;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  max-height: none;
}

.portfolio-card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.portfolio-card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.08);
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  width: 100%;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay-content {
  transform: translateY(0);
}

/* Portfolio Tag */
.portfolio-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Portfolio Card Title */
.portfolio-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.portfolio-card--large .portfolio-card-title {
  font-size: 1.75rem;
}

/* Portfolio Card Meta */
.portfolio-card-meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-card-meta i {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Portfolio Inspect Label */
.portfolio-inspect-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
}

.portfolio-card:hover .portfolio-inspect-label {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(4px);
}

.portfolio-inspect-label i {
  transition: transform 0.25s ease;
}

.portfolio-card:hover .portfolio-inspect-label i {
  transform: translateX(4px);
}

/* Portfolio Empty State */
.portfolio-empty-state {
  padding: 4rem 2rem;
}

.portfolio-empty-state i {
  opacity: 0.3;
}

/* Portfolio CTA */
.portfolio-cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

.portfolio-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  opacity: 0.3;
  pointer-events: none;
}

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

.portfolio-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.portfolio-cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-cta-buttons {
  display: flex;
  gap: 1rem;
}

.portfolio-cta .btn {
  transition: all 0.25s ease;
}

.portfolio-cta .btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.portfolio-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.portfolio-cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Portfolio Responsive */
/* Large screens: 1400px and above - 3 columns */
@media (min-width: 1400px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 1.5rem;
  }

  .portfolio-card--large {
    grid-row: span 2;
    grid-column: span 1;
    aspect-ratio: 4 / 5;
    min-height: 480px;
  }
}

/* Medium screens: 992px - 1399px - 2 columns optimized */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(350px, auto);
    gap: 2rem;
    align-items: start;
  }

  .portfolio-card {
    aspect-ratio: 4 / 3;
    min-height: 350px;
    max-height: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .portfolio-card--large {
    grid-row: span 1;
    grid-column: span 1;
    aspect-ratio: 4 / 3;
    min-height: 350px;
    max-height: 100%;
  }

  .portfolio-card-image {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
  }

  .portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Tablet screens: 768px - 991px - 2 columns */
@media (min-width: 768px) and (max-width: 991.98px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.25rem;
    align-items: start;
  }

  .portfolio-card {
    aspect-ratio: 4 / 3;
    min-height: 280px;
    max-height: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .portfolio-card--large {
    grid-row: span 1;
    grid-column: span 1;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    max-height: 100%;
  }

  .portfolio-cta-title {
    font-size: 1.875rem;
  }

  .portfolio-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .portfolio-hero-badge {
    font-size: 0.6875rem;
    padding: 0.35rem 0.875rem;
  }

  .portfolio-hero h1 {
    font-size: 2.25rem;
  }

  .portfolio-hero .lead {
    font-size: 1rem;
  }

  .portfolio-filter {
    position: relative;
    top: auto;
  }

  .portfolio-filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
  }

  .filter-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, auto);
    gap: 1rem;
  }

  .portfolio-card,
  .portfolio-card--large {
    grid-row: span 1;
    grid-column: span 1;
    aspect-ratio: 4 / 3;
    min-height: 250px;
    max-height: none;
  }

  .portfolio-overlay {
    padding: 1.5rem;
  }

  .portfolio-card-title {
    font-size: 1.25rem;
  }

  .portfolio-card--large .portfolio-card-title {
    font-size: 1.375rem;
  }

  .portfolio-cta-title {
    font-size: 1.5rem;
  }

  .portfolio-cta-subtitle {
    font-size: 1rem;
  }
}

/* Respect prefers-reduced-motion for portfolio */
@media (prefers-reduced-motion: reduce) {
  .portfolio-card,
  .portfolio-card-image img,
  .portfolio-overlay,
  .portfolio-overlay-content,
  .portfolio-inspect-label,
  .filter-btn {
    transition: none;
  }

  .portfolio-card:hover {
    transform: none;
  }

  .portfolio-card:hover .portfolio-card-image img {
    transform: none;
  }

  .portfolio-card:hover .portfolio-overlay-content {
    transform: none;
  }

  .portfolio-card:hover .portfolio-inspect-label {
    transform: none;
  }

  .filter-btn:hover {
    transform: none;
  }
}

/* ============================================
   ABOUT PAGE STYLES (Awwwards Light Design)
   ============================================ */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.02) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.5;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.about-hero .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-hero .breadcrumb-item a:hover {
  color: #0d6efd;
}

.about-hero .breadcrumb-item.active {
  color: #212529;
}

/* About Hero Image (hakkımızda görseli) */
.about-hero-image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
  background: #f1f3f5;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About Highlight Card */
.about-highlight-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.highlight-content h6 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
  color: #212529;
}

.highlight-content p {
  font-size: 0.875rem;
  margin: 0;
}

/* Who We Are Section */
.who-we-are-item {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.who-we-are-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.who-we-are-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #f1f3f5;
  margin-bottom: 1rem;
}

.who-we-are-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-we-are-item h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
}

.who-we-are-item .text-primary {
  font-weight: 700;
}

/* Value Cards */
.value-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(13, 110, 253, 0.2);
}

.value-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1f3f5;
  margin-bottom: 1rem;
}

.value-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: #0d6efd;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.value-card h5 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Process Step Cards */
.process-step-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-left: 3px solid transparent;
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left-color: #0d6efd;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e9ecef;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.02em;
}

.process-step-card:hover .process-number {
  color: #0d6efd;
  transition: color 0.3s ease;
}

.process-step-card h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 0;
}

.stat-item {
  padding: 1rem;
  transition: transform 0.2s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.stat-item p {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (min-width: 768px) {
  .stat-item {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .stat-item:last-child {
    border-right: none;
  }
}

/* Before/After Section */
.before-after-container {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.before-after-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.before-after-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.before-after-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.before-after-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Testimonial Cards */
.testimonial-card-about {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.testimonial-card-about p {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9375rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-author strong {
  color: #212529;
}

/* About CTA Section */
.about-cta {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

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

.about-cta h2 {
  color: white;
}

.about-cta .btn-light {
  background: white;
  color: #212529;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-cta .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 991.98px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-highlight-card {
    margin-top: 2rem;
  }
  
  .who-we-are-item h3 {
    font-size: 1.25rem;
  }
  
  .process-number {
    font-size: 2.5rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .before-after-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .before-after-item img {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    padding: 3rem 0;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero .lead {
    font-size: 1rem;
  }
  
  .about-highlight-card {
    padding: 1.5rem;
  }
  
  .highlight-item {
    padding: 0.75rem 0;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .who-we-are-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .who-we-are-item h3 {
    font-size: 1.125rem;
  }
  
  .value-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .value-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .process-step-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .process-number {
    font-size: 2rem;
  }
  
  .stat-item {
    padding: 1rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-item h3 {
    font-size: 1.75rem;
  }
  
  .before-after-container {
    padding: 1.5rem;
  }
  
  .before-after-item img {
    height: 250px;
  }
  
  .testimonial-card-about {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .about-cta h2 {
    font-size: 1.75rem;
  }
  
  .about-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Respect prefers-reduced-motion for About page */
@media (prefers-reduced-motion: reduce) {
  .about-highlight-card,
  .who-we-are-item,
  .value-card,
  .process-step-card,
  .stat-item,
  .before-after-item,
  .testimonial-card-about {
    transition: none;
  }
  
  .about-highlight-card:hover,
  .who-we-are-item:hover,
  .value-card:hover,
  .process-step-card:hover,
  .stat-item:hover,
  .before-after-item:hover,
  .testimonial-card-about:hover {
    transform: none;
  }
  
  .value-card:hover .value-icon {
    transform: none;
  }
}
