@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors - Matched to Logo */
  --primary-color: #ff6600; /* Orange vibrant du logo */
  --primary-hover: #e65c00;
  --secondary-color: #1a1a1a; /* Noir/Gris très foncé */
  --secondary-hover: #333333;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --bg-light: #f4f5f7;
  --white: #ffffff;
  --black: #000000;
  
  /* Fonts */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 90px;
  --transition: all 0.3s ease;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-gray);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

.section-padding {
  padding: 80px 0; /* Reduced from 100px to avoid too much empty space */
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

/* Section Title */
.section-title {
  margin-bottom: 50px;
}

.section-title span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.section-title h2 {
  font-size: 42px;
  position: relative;
  padding-bottom: 20px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-title.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

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

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info i {
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo img {
  height: 50px;
  object-fit: contain;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  position: relative;
  padding: 5px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Hero Section - SaaS Style */
.hero-slider-section {
  position: relative;
  background-color: var(--bg-light); /* Light modern background */
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  padding-bottom: 50px; /* Space for pagination */
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: left;
  color: var(--text-dark);
}

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

.hero-image-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, rgba(255,102,0,0.02) 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-img-main {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  border: 10px solid var(--white);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Staggered Animations for Swiper */
.hero-subtitle, .hero h1, .hero p, .hero-btns, .hero-trust, .hero-image-box {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.swiper-slide-active .hero-subtitle {
  transform: translateY(0);
  transition-delay: 0.1s;
}

.swiper-slide-active .hero h1 {
  transform: translateY(0);
  transition-delay: 0.2s;
}

.swiper-slide-active .hero p {
  transform: translateY(0);
  transition-delay: 0.3s;
}

.swiper-slide-active .hero-btns {
  transform: translateY(0);
  transition-delay: 0.4s;
}

.swiper-slide-active .hero-trust {
  transform: translateY(0);
  transition-delay: 0.5s;
}

.swiper-slide-active .hero-image-box {
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 60px;
  color: var(--secondary-color);
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.text-primary {
  color: var(--primary-color);
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -15px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Responsive updates for Hero */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
    text-align: center;
  }
  .hero-btns, .hero-trust {
    justify-content: center;
  }
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero-img-main {
    aspect-ratio: auto;
  }
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
}

.experience-badge h3 {
  color: var(--white);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge p {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-feature i {
  width: 40px;
  height: 40px;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.about-feature span {
  font-weight: 600;
  color: var(--text-dark);
}

/* Services Section */
.services {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--secondary-color);
  z-index: -1;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 32px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card p {
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

.service-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card:hover .service-link {
  color: var(--white);
}

/* Stats Section */
.stats {
  background-color: var(--secondary-color);
  padding: 80px 0;
  position: relative;
  background-image: url('../images/background/bg_forume.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(11, 32, 70, 0.85);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

/* Why Choose Us */
.why-choose {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-feature {
  display: flex;
  gap: 20px;
}

.why-feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.why-feature-text h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta::after {
  display: none;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
  background: white;
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
}

.footer-logo img {
  height: 40px;
}

.footer-widget h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 3px;
}

.footer-bottom {
  background-color: var(--secondary-hover);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 14px;
}

/* Whatsapp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Page Header (Inner pages) */
.page-header {
  padding: 100px 0;
  background-color: var(--secondary-color);
  background-image: url('../images/background/page-title-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(11, 32, 70, 0.85);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--primary-color);
}

/* Contact Page */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background-color: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.contact-card i {
  width: 70px;
  height: 70px;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: 16px;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius);
}

/* Services Detailed */
.service-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.service-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 30px;
  right: -10px;
  color: var(--primary-color);
  font-size: 24px;
}

.process-step:last-child::after {
  display: none;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.service-sidebar .widget {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 30px;
}

.service-sidebar ul li a {
  display: block;
  padding: 15px 20px;
  background-color: var(--white);
  margin-bottom: 10px;
  border-radius: var(--radius);
  font-weight: 600;
  border-left: 3px solid transparent;
}

.service-sidebar ul li a:hover,
.service-sidebar ul li a.active {
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

/* Portfolio / Réalisations */
.portfolio {
  background-color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}

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

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

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 24px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-overlay p {
  color: var(--primary-color);
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover h3,
.portfolio-item:hover p {
  transform: translateY(0);
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-light);
}

.testimonials-swiper {
  padding-bottom: 50px; /* Space for pagination */
}

.testimonial-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  height: 100%;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: rgba(255, 102, 0, 0.1);
  line-height: 1;
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 14px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

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

/* Partners / Brands */
.partners {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.partners-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo {
  opacity: 0.5;
  transition: var(--transition);
  filter: grayscale(100%);
  max-width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo img {
  max-height: 100%;
}

/* FAQ */
.faq-section {
  background-color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  transition: var(--transition);
}

.accordion-header:hover, .accordion-header.active {
  color: var(--primary-color);
  background-color: rgba(255, 102, 0, 0.05);
}

.accordion-icon {
  font-size: 14px;
  transition: var(--transition);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: var(--white);
}

.accordion-content p {
  padding-bottom: 20px;
}

/* Newsletter / Lead Magnet */
.newsletter {
  background: linear-gradient(45deg, var(--secondary-color), #2a2a2a);
  padding: 60px 0;
  border-radius: var(--radius);
  margin: 80px auto;
  max-width: var(--container-width);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '\f0e0';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 250px;
  color: rgba(255,255,255,0.03);
  z-index: 0;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.newsletter-text h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 10px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.8);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  min-width: 450px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-primary);
  font-size: 16px;
}

/* Responsive Updates for New Sections */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .about-grid, .why-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-content { flex-direction: column; text-align: center; gap: 30px; }
  .newsletter-form { min-width: 100%; }
}

@media (max-width: 991px) {
  .top-bar { display: none; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    transition: 0.4s ease;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
  }
  .nav-menu.active { left: 0; }
  .mobile-toggle { display: block; }
  .header-cta { display: none; }
  .services-grid, .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid, .contact-grid, .service-details, .faq-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .experience-badge { right: 20px; bottom: -20px; padding: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .hero { min-height: 500px; text-align: center; }
  .hero-btns { justify-content: center; flex-direction: column; }
  .hero h1 { font-size: 36px; }
  .services-grid, .contact-info-cards, .stats-grid, .process-steps, .footer-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 60px 0; }
  .section-title h2 { font-size: 32px; }
  .newsletter-form { flex-direction: column; }
}
