/*
  EASY CLEAN PRO - Modern Landing Page stylesheet (Simplified, Warm & Visually Led)
  Tailored for a French local micro-entrepreneur.
  Colors: Deep Blue, Vibrant Magenta/Pink, Soft Cyan Gradients
  Typography: Outfit (headings) & Inter (body)
*/

@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 {
  --primary-blue: #0B4CA3;
  --primary-blue-dark: #07316B;
  --primary-pink: #E62D7D;
  --primary-pink-hover: #C21C61;
  --cyan-light: #00B5E2;
  --cyan-ultra-light: #E0F7FC;
  --white: #FFFFFF;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  --gradient-blue: linear-gradient(135deg, #0B4CA3 0%, #00B5E2 100%);
  --gradient-pink: linear-gradient(135deg, #E62D7D 0%, #FF66A1 100%);
  --gradient-soft: linear-gradient(180deg, #F8FAFC 0%, #E6EEFA 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 20px -3px rgba(11, 76, 163, 0.08), 0 4px 6px -2px rgba(11, 76, 163, 0.04);
  --shadow-pink: 0 10px 15px -3px rgba(230, 45, 125, 0.15), 0 4px 6px -2px rgba(230, 45, 125, 0.08);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* Base Reset & Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--slate-900);
  font-weight: 700;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--slate-100);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Reusable Components */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-bg-soft {
  background: var(--gradient-soft);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.35rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-pink);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--slate-700);
  font-size: 1.1rem;
}

/* Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 0.975rem;
}

.btn-primary {
  background: var(--gradient-pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 18px -3px rgba(230, 45, 125, 0.25);
}

.btn-secondary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 18px -3px rgba(11, 76, 163, 0.15);
}

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

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

/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  white-space: nowrap;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo span {
  color: var(--primary-pink);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.mobile-cta {
  display: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate-700);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-800);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 120px; /* Offset the bottom wave divider */
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 30%, rgba(224, 247, 252, 0.8) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  pointer-events: none;
  transform: translateY(1px);
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-ultra-light);
  color: var(--primary-blue);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(11, 76, 163, 0.1);
  animation: float 4s ease-in-out infinite;
}

.hero-tag span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-pink);
  border-radius: 50%;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--slate-700);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-bullets {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-800);
}

.hero-bullet-item svg {
  flex-shrink: 0;
}

/* Services Interactive Tabs Section */
.services-tabs-container {
  margin-top: 2.5rem;
}

.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--slate-200);
  margin-bottom: 2.5rem;
  padding-bottom: 0.25rem;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--slate-600);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tab-btn svg {
  transition: transform var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary-blue);
}

.tab-btn:hover svg {
  transform: scale(1.1);
}

.tab-btn.active {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.services-tabs-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-pane.active {
  display: flex;
  gap: 3.5rem;
  padding: 3rem;
  align-items: stretch;
}

.tab-pane-image {
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: var(--shadow-md);
}

.tab-pane-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speciality-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-pink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
  border-bottom-right-radius: var(--radius-md);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.tab-pane-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tab-pane-text h3 {
  font-size: 1.85rem;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.tab-pane-desc {
  color: var(--slate-700);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tab-pane-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tab-pane-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.4;
}

.check-icon {
  color: var(--primary-pink);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.tab-pane-cta {
  margin-top: auto;
}

/* Secondary Services listing */
.other-services-box {
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 76, 163, 0.05);
}

.other-services-box h3 {
  text-align: center;
  font-size: 1.65rem;
  margin-bottom: 2rem;
  position: relative;
}

.other-services-box h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: var(--radius-full);
}

.other-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.other-service-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.other-service-item svg {
  flex-shrink: 0;
  color: var(--primary-pink);
  width: 24px;
  height: 24px;
}

.other-service-item span {
  font-size: 0.95rem;
  color: var(--slate-800);
  line-height: 1.5;
}

/* Engagements / Values Section */
.engagements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.engagements-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.engagements-image:hover img {
  transform: scale(1.04);
}

.engagements-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 76, 163, 0) 60%, rgba(11, 76, 163, 0.3) 100%);
  pointer-events: none;
}

.engagements-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.engagements-badge-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.engagements-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.engagement-item {
  display: flex;
  gap: 1.5rem;
}

.engagement-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan-ultra-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.engagement-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.engagement-item p {
  color: var(--slate-700);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--slate-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #FBBF24;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-top: 0.5rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--primary-pink);
  font-weight: 600;
}

/* Contact & Info Panel Section */
.contact-section-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-gradient {
  background: var(--gradient-pink);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pink);
  position: relative;
  overflow: hidden;
}

.contact-card-gradient::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.contact-card-gradient h3 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.contact-card-gradient p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.contact-card-phone {
  font-family: 'Outfit', sans-serif;
  font-size: 2.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-card-phone:hover {
  opacity: 0.95;
}

.contact-card-phone svg {
  width: 28px;
  height: 28px;
}

.contact-card-email {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-card-email:hover {
  opacity: 0.95;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--slate-100);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--slate-700);
  font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-800);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--slate-200);
  outline: none;
  background-color: var(--slate-50);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 76, 163, 0.1);
}

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

.form-feedback {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.form-feedback.error {
  display: block;
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #F8B4B4;
}

/* Floating contact widgets */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.floating-btn-phone {
  background: var(--gradient-pink);
  box-shadow: var(--shadow-pink);
}

.floating-btn-phone:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 20px -3px rgba(230, 45, 125, 0.3);
}

/* Footer Section */
.footer {
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3, .footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
}

.footer-col h4 {
  font-size: 1.1rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-about-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-about-logo span {
  color: var(--primary-pink);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-pink);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
}

.footer-contact-item svg {
  color: var(--cyan-light);
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--cyan-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

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

/* Info Ticker Banner */
.info-ticker-banner {
  background: var(--slate-900);
  color: var(--white);
  padding: 1.15rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  border-bottom: 2px solid var(--primary-pink);
  box-shadow: var(--shadow-sm);
}

.ticker-wrapper {
  display: inline-flex;
  animation: ticker-slide 25s linear infinite;
  gap: 6rem;
}

.ticker-item {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.5px;
}

@keyframes ticker-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Subpages Header Banner */
.page-title-banner {
  background: var(--slate-900);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-title-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.page-title-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Home Services Teaser Grid */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.home-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.home-service-card.featured-teaser {
  grid-column: span 2;
  flex-direction: row;
}

.home-service-card.featured-teaser .teaser-image-wrapper {
  width: 50%;
  height: auto;
  min-height: 280px;
}

.home-service-card.featured-teaser .teaser-content {
  width: 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teaser-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.teaser-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.teaser-content h3 {
  font-size: 1.35rem;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.teaser-content p {
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.teaser-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.teaser-link:hover {
  color: var(--primary-pink);
  transform: translateX(4px);
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .tab-pane.active {
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  
  .tab-pane-image {
    width: 100%;
    min-height: 240px;
    height: 240px;
  }
  
  .tab-pane-text {
    width: 100%;
  }

  .services-tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 0.75rem 1.15rem;
    font-size: 0.95rem;
  }
  
  .other-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .home-service-card.featured-teaser {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: left var(--transition-normal);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    align-items: stretch;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-cta {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 4.5rem;
  }
  
  .hero-background {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-tag {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-bullets {
    justify-content: center;
  }
  

  
  .other-services-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .other-services-box {
    padding: 2rem;
  }
  
  .engagements {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .engagements-image {
    order: 2;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .page-title-banner {
    padding: 7rem 0 3.5rem;
  }
  
  .page-title-banner h1 {
    font-size: 2.25rem;
  }
  
  .page-title-banner p {
    font-size: 1rem;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .home-service-card.featured-teaser {
    grid-column: span 1;
    flex-direction: column;
  }
  
  .home-service-card.featured-teaser .teaser-image-wrapper {
    width: 100%;
    height: 200px;
    min-height: auto;
  }
  
  .home-service-card.featured-teaser .teaser-content {
    width: 100%;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.15rem;
  }
  
  .btn {
    width: 100%;
  }
}
