:root{
  --bg:#f5f1ea;
  --primary:#5b0035;
  --accent:#ff5a2f;
  --text:#2a2230;
  --white:#ffffff;
  --yellow:#f4c430;
}

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

html,
body{
  height:100%;
  overflow-x:hidden;
}

body{
  font-family:"Poppins",sans-serif;
  background:var(--bg);
  color:var(--text);
}
.bold{
  font-weight: 700;
}
a{
  text-decoration:none;
  color:inherit;
}

/* =========================
   HERO
========================= */
.hero{
  background:#EEECE1;
  overflow:visible;
}

.hero-left,
.hero-right{
  height:1200px;
}

.hero-left{
  display:flex;
  flex-direction:column;
}

.hero-inner{
  width:100%;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  /* background-image: url(../img/hero-air.webp);
  background-position: center;
  background-size: cover; */
}

.hero-right{
  display:flex;
  align-items:stretch;
  justify-content:center;
}

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

.hero-x-padding{
  padding-left:120px;
  padding-right:30px;
}

/* =========================
   NAVBAR
========================= */
.custom-navbar{
  width: 100%;
  margin-top: 2%;
 
  padding-top:clamp(28px,4vw,50px);

      background:#3D0121;
    padding:16px;
   
    text-align:center;
}

.custom-nav{
  display:flex;
  align-items:center;
  gap:22px;
  white-space:nowrap;
}

.custom-nav .nav-link{
  color:white;
  font-size:18px;
  font-weight:500;
  padding:0 !important;
  transition:.3s ease;
}

.custom-nav .nav-link:hover{
  color:var(--accent);
}

.nav-link i{
  margin-right:6px;
  font-size:16px;
  vertical-align:middle;
  color: #F4C430;
}

.dropdown-item i{
  margin-right:8px;
  font-size:16px;
  vertical-align:middle;
  color:#5b0035;
}






/* =========================
   TOGGLE BUTTON
========================= */
.navbar-toggler{
  border:none;
  background:transparent;
  padding:0;
  box-shadow:none !important;
}

.navbar-toggler:focus{
  box-shadow:none !important;
}

.custom-toggle-btn{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#7a003c;
  border:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}

.custom-toggle-btn:hover{
  background:#5b0035;
}

.custom-toggle-btn .toggle-line{
  display:block;
  width:20px;
  height:2px;
  background:#ffffff;
  border-radius:2px;
  transform-origin:center center;
  transition:transform .3s ease, opacity .3s ease;
}

/* open state */
.custom-toggle-btn[aria-expanded="true"] .toggle-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.custom-toggle-btn[aria-expanded="true"] .toggle-line:nth-child(2){
  opacity:0;
}

.custom-toggle-btn[aria-expanded="true"] .toggle-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* =========================
   DROPDOWN
========================= */
.custom-dropdown-menu{
  background:#f0e8d1;
  padding:10px 0;
  min-width:260px;
  border:none;
  border-radius:0;
  box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.custom-dropdown-menu .dropdown-item{
  padding:10px 20px;
  color:#5b0035;
  font-size:14px;
  background:transparent;
}

.custom-dropdown-menu .dropdown-item:hover{
  background:#e8dfc5;
  color:#5b0035;
}

@media (min-width:1200px){
  .navbar .dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
  }
}



/* =========================
   HERO CONTENT
========================= */
.hero-content{
  margin-top:30px;

  max-width:900px;
}

.logo-img{
  width:170px;
  height:auto;
}

.eyebrow{
  font-size:16px;
  margin-bottom:12px;
  font-weight:700;
  color:var(--primary);
}

.hero-title{
  font-family:Georgia,serif;
  font-size:clamp(56px,6vw,86px);
  line-height:.92;
  letter-spacing:-1.5px;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:18px;
  max-width:720px;
}

.hero-title .accent{
  color:var(--accent);
}

.hero-title-dark{
  color:var(--primary);
}

.air-gif{
  width:120px;
  vertical-align:middle;
}

.hero-text{
  max-width:360px;
  font-size:16px;
  line-height:1.75;
  margin-top:42px;
  margin-bottom:30px;
  margin-left:210px;
  color:#4b3d47;
}

.hero-buttons{
  display:flex;
  gap:16px;
  margin-left:210px;
  flex-wrap:wrap;
}

.hero-buttons .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 26px;
  font-size:18px;
  font-weight:700;
  border-radius:10px;
  transition:all .3s ease;
  min-height:56px;
}

.hero-buttons .btn i{
  font-size:16px;
}

.btn-primary-custom{
  background:var(--accent);
  color:#fff;
}

.btn-primary-custom:hover{
  background:var(--accent);
  color:#fff;
}

.btn-secondary-custom{
  background:var(--yellow);
  color:#3D0121;
}

.btn-secondary-custom:hover{
  background:var(--yellow);
  color:#3D0121;
}

/* CALL BUTTON PULSE */
.call-btn{
  position:relative;
  animation:pulseCall 2s infinite;
}

.hero-buttons .btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

@keyframes pulseCall{
  0%{
    box-shadow:0 0 0 0 rgba(255,90,47,.6);
  }
  70%{
    box-shadow:0 0 0 14px rgba(255,90,47,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(255,90,47,0);
  }
}

/* =========================
   LARGE DESKTOP
========================= */
@media (max-width:1750px){
  .hero-x-padding{
    padding-left:70px;
    padding-right:24px;
  }

  .custom-nav{
    gap:16px;
  }

  .custom-nav .nav-link{
    font-size:15px;
  }

  .nav-link i{
    font-size:14px;
    margin-right:5px;
  }
}

@media (max-width:1600px){
  .custom-nav{
    gap:14px;
  }

  .custom-nav .nav-link{
    font-size:15px;
  }
}

@media (max-width:1450px){
  .hero-x-padding{
    padding-left:50px;
    padding-right:20px;
  }

  .custom-nav{
    gap:12px;
  }

  .custom-nav .nav-link{
    font-size:14px;
  }

  .nav-link i{
    font-size:13px;
    margin-right:4px;
  }
}



@media (max-width:1399.98px){
  .hero-x-padding{
    padding-left:40px;
    padding-right:18px;
  }
    .hero-left,
  .hero-right{
    flex:0 0 100%;
    max-width:100%;
    width:100%;
    height:auto;
  }
.hero-inner{
    min-height: 75vh;
}
  .hero{
    text-align: center;
  }
.hero-content{
  max-width: 100%;
}
.hero-content{
width: 100%;
}
  .hero-title{
    font-size:54px;
  margin: auto;
  }
.hero-text{
     max-width: 100%;
}
  .custom-nav{
    gap:16px;
  }

  .custom-nav .nav-link{
    font-size:16px;
  }

  .custom-nav .nav-link i{
    display:inline-block;
    font-size:15px;
  }

  .custom-dropdown-menu{
    min-width:220px;
  }

  .hero-buttons{
    margin-left: 0;
    justify-content: center;
  }
  

}

@media (max-width:1300px){
  .hero-x-padding{
    padding-left:32px;
    padding-right:16px;
  }

  .custom-nav{
    gap:8px;
  }

  .custom-nav .nav-link{
    font-size:12px;
  }

  .custom-dropdown-menu{
    min-width:210px;
  }
}


@media (min-width:1200px){
  .navbar-toggler{
    display:none !important;
  }
}

/* =========================
   LAPTOP / TABLET LANDSCAPE
========================= */


@media (max-width:1199.98px){
  .hero-left,
  .hero-right{
    flex:0 0 100%;
    max-width:100%;
    width:100%;
    height:auto;
  }

  .hero-inner{
    min-height:75vh;
  }

  .hero-left{
    order:1;
    padding-bottom:30px;
  }

  .hero-right{
    order:2;
    min-height:420px;
  }

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


  .hero-x-padding{
    padding-left:30px;
    padding-right:30px;
  }

.custom-navbar{


 
  padding-top:clamp(28px,4vw,50px);

      background:var(--bg);

   

}
.custom-nav .nav-link{
  color:var(--primary);

  font-weight:500;
  padding:0 !important;
  transition:.3s ease;
}

.custom-nav .nav-link:hover{
  color:var(--accent);
}

.nav-link i{
  margin-right:6px;
  font-size:16px;
  vertical-align:middle;
   color:var(--primary);
}

  .navbar{
    text-align:center;
  }

  .navbar-toggler{
    margin:10px auto 0;
  }

  .custom-navbar .navbar-collapse{
    background:var(--bg);
    padding-top:18px;
    padding-bottom:10px;
    text-align:center;
  }

  .custom-nav{
    gap:0;
    white-space:normal;
    align-items:center;
    justify-content:center;
    width:100%;
  }

  .custom-nav .nav-item{
    width:100%;
    text-align:center;
  }

  .custom-nav .nav-link{

    font-size:16px;
    font-weight:500;
    padding:12px 0 !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    text-align:center;
  }

  .custom-nav .nav-link i{
    display:inline-block;
    font-size:16px;
    margin-right:0;
  }

  .custom-nav .dropdown-toggle::after{
    margin-left:8px;
  }

  .custom-dropdown-menu{
    min-width:100%;
    box-shadow:none;
    margin-left:0;
    background:#efe7dc;
    text-align:center;
  }

  .custom-dropdown-menu .dropdown-item{
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    width:100%;
    padding-left:0;
    padding-right:0;
  }

  .dropdown-item i{
    margin-right:0;
  }

 .hero-content{
    margin-top:30px;
    max-width:100%;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-title{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-text{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
    margin-left:0;
  }

    .logo{
    display:flex;
    justify-content:center;
  }

  .eyebrow{
    text-align:center;
  }

  .navbar-toggler{
    display:flex;
  }

}



/* =========================
   TABLET
========================= */
@media (max-width:991.98px){
  .hero-right{
    min-height:500px;
  }

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


  .hero-x-padding{
    padding-left:30px;
    padding-right:30px;
  }

 .hero-content{
  margin-top:30px;
  text-align:center;
}


  .hero-title{
    font-size:44px;
    max-width:100%;
  }

  .hero-text{
    margin-top:28px;
    margin-bottom:24px;
    margin-left:0;
    max-width:500px;
  }

  .hero-buttons{
    margin-left:0;
    flex-wrap:wrap;
  }

  .custom-nav .nav-link{
    font-size:18px;
  }

  .hero-title{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.hero-right{
  min-height:60vh;
}
}

/* =========================
   MOBILE
========================= */
@media (max-width:767.98px){
  .hero-right{
    min-height:340px;
  }

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


  .hero-x-padding{
    padding-left:20px;
    padding-right:20px;
  }

  .logo-img{
    width:145px;
  }

  .eyebrow{
    font-size:15px;
  }

  .hero-title{
    font-size:36px;
    line-height:1.08;
    letter-spacing:-1px;
      text-align:center;
  }

  .air-gif{
    width:75px;
  }

  .hero-text{
    font-size:14px;
    max-width:100%;
    margin-top:24px;
    margin-left:0;
  }

  .hero-buttons{
    flex-direction:column;
    gap:12px;
    margin-left:0;
  }

  .hero-buttons .btn{
    width:100%;
    text-align:center;
    justify-content:center;
    font-size:15px;
    padding:14px 20px;
    min-height:52px;
  }

  .custom-nav .nav-link{
    font-size:17px;
  }
}

@media (max-width:575.98px){
  .hero-right{
    min-height:280px;
  }

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


  .hero-title{
    font-size:31px;
    line-height:1.08;
  }

  .air-gif{
    width:60px;
  }

  .hero-x-padding{
    padding-left:15px;
    padding-right:15px;
  }

  .logo-img{
    width:130px;
  }

  .hero-text{
    font-size:13.5px;
  }

  .hero-buttons .btn{
    font-size:14px;
    padding:13px 16px;
  }

  .custom-nav .nav-link{
    font-size:16px;
  }
}





/* end hero */















/* =========================
   OFFER SECTION
========================= */
.main-purple-bg {
  background: #3d0121;
  color: #fff;
  padding: 2% 0;
}

.offer-flex-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  padding: 0 20px;
  position: relative;
}

.offer-image-card{
  position:relative;
  flex:0 0 420px;
  margin-top:-160px;
  margin-left:-120px;
  z-index:5;
}

.offer-image-card img{
  width:100%;
  height:auto;
  display:block;
}

.content-area {
  flex: 1;
  padding-left: 50px;
  padding-bottom: 40px;
}

.subtitle {
  color: #ffcc00;
  font-size: 16px;
  font-weight: 500;
}

.title {
  font-size: 2.8rem;
   font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.about-text {
  width: 70%;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.service-card {
  background: rgb(70, 6, 40);
  padding: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
 
  min-height: 150px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.35s ease;
}

.service-card:hover {
  background: rgb(70, 6, 40);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #ffcc00;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 6px;
}

.icon i {
  font-size: 24px;
  color: #ffcc00;
}

.service-card h3 {
  font-size: 14px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-top: auto;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
}

.arrow {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.read-text {
  color: white;
  font-size: 14px;
  font-weight: 600;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-8px);
  transition: max-width 0.35s ease, opacity 0.35s ease, transform 0.35s ease, margin-right 0.35s ease;
  margin-right: 0;
}

.service-card:hover .read-text {
  max-width: 120px;
  opacity: 1;
  transform: translateX(0);
  margin-right: 8px;
}

.service-card:hover .arrow {
  transform: translateX(0);
}

/* ACTION BUTTONS */

.action-buttons{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

/* OFFER BUTTON */

.offer-btn{
  background:#ffcc00;
  color:#3d0121;
  font-weight:700;
  padding:12px 22px;
  border-radius:8px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:all .3s ease;
}

.offer-btn i{
  font-size:16px;
}

.offer-btn:hover{
  background:#ffb700;
  color:#3d0121;   /* النص يصبح غامق */
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}


/* OFFER BUTTON PROFESSIONAL */

.offer-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 26px;

  background:linear-gradient(135deg,#ffcc00,#ff9f00);
  color:#3d0121;

  font-weight:700;
  font-size:15px;
  letter-spacing:.3px;

  border-radius:10px;
  text-decoration:none;

  box-shadow:0 6px 20px rgba(0,0,0,0.2);

  transition:all .35s ease;
}

.offer-btn i{
  font-size:18px;
}

.offer-arrow{
  font-size:18px;
  transition:transform .3s ease;
}

/* HOVER EFFECT */

.offer-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
  color:#3d0121;
}

/* ARROW MOVE */

.offer-btn:hover .offer-arrow{
  transform:translateX(6px);
}

/* SHINE EFFECT */



/* =========================
   RESPONSIVE FIX FOR OFFER SECTION
========================= */

@media (max-width:1400px){






  .offer-flex-container{
    flex-direction:column;
    align-items:center;
  }

  .content-area{
    order:1;
    padding-left:0;
    text-align:center;
  }

  .offer-image-card{
    order:2;
    margin:30px 0 0 0;
    width:100%;
    max-width:420px;
  }

  .offer-image-card img{
    width:100%;
  }

    .action-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

}


/* EXTRA SMALL DEVICES */

@media (max-width:576px){

  .services-grid{
    grid-template-columns:1fr;
  }

  .title{
    font-size:2.2rem;
  }

}



@media (max-width:576px){

  .offer-image-card{
    width:100%;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .title{
    font-size:2.2rem;
  }

  .service-card{
    align-items: center;
  }

}













/* =========================
   COMMUNITY GRID SECTION - WITH ANIMATION
========================= */
.community-grid-section {
  background-color: #fdfbf7;
  padding: 100px 0; /* زيادة padding قليلاً لتعويض الميلان */
  overflow: hidden;
  position: relative;
}

.grid-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* توسيط العناصر رأسياً */
  justify-content: center;
  gap: 50px; /* مسافة أمان لتجنب التداخل */
  padding: 0 30px;
  position: relative;
  z-index: 5; /* لضمان بقاء المحتوى فوق أي خلفيات محتملة */
}

/* تنسيق الصور الجانبية - إضافة الميلان والحركة */
.side-image {
  flex: 0 0 320px; /* عرض ثابت للصور لضمان عدم ضغط النص */
  height: 500px;
  border-radius: 25px; /* زوايا منحنية احترافية */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  /* إضافة transition ناعمة جداً للحركة */
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  position: relative;
  z-index: 1; /* خلف النص في المنتصف */
}

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

/* الميلان الأساسي (Initial Rotation) */
.left-img {
  /* ميلان لليسار وإزاحة بسيطة للأسفل */
  transform: rotate(-6deg) translateY(20px); 
}

.right-img {
  /* ميلان لليمين وإزاحة بسيطة للأعلى */
  transform: rotate(6deg) translateY(-20px); 
}

/* تأثير الانيميشن عند مرور الماوس على السيكشن بالكامل (Hover Interaction) */
.community-grid-section:hover .left-img {
  /* عند الهوفر: الميلان يصبح مستقيماً تقريباً وتتحرك الصورة قليلاً */
  transform: rotate(-2deg) scale(1.03) translate(10px, -10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.community-grid-section:hover .right-img {
  /* عند الهوفر: الميلان يصبح مستقيماً تقريباً وتتحرك الصورة قليلاً */
  transform: rotate(2deg) scale(1.03) translate(-10px, 10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* تنسيق المحتوى الأوسط (ثابت ومستقر) */
.content-center {
  flex: 1; /* يأخذ المساحة المتبقية في المنتصف */
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 10; /* لضمان بقاء النص فوق الصور المائلة */
}

.company-tag {
  display: inline-block;
  color: #ff5a2f;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  background: rgba(255, 90, 47, 0.08);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 90, 47, 0.15);
}

.main-heading {
  color: #5b0035;
  font-size: clamp(32px, 5vw, 48px); /* حجم خط مرن */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.description {
  color: #3d0121;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5b0035;
  color: #fff;
  padding: 18px 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(91, 0, 53, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ff5a2f;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 90, 47, 0.3);
}

/* =========================
   التجاوب مع الشاشات (Responsive)
========================= */

/* شاشات اللابتوب المتوسطة */
@media (max-width: 1200px) {
  .grid-wrapper { gap: 30px; padding: 0 20px; }
  .side-image { flex: 0 0 280px; height: 420px; }
  .main-heading { font-size: 40px; }
}

/* شاشات التابلت والجوال (الحل النهائي للمشكلة) */
@media (max-width: 991px) {
  .community-grid-section { padding: 80px 10px; }
  
  .grid-wrapper {
    flex-direction: column; /* ترتيب العناصر تحت بعضها */
    gap: 40px;
  }
  
  .side-image {
    flex: none;
    width: 100%;
    max-width: 550px;
    height: 350px !important; /* ارتفاع ثابت للصور في الجوال لضمان التماسك */
    transform: rotate(0) translateY(0) !important; /* إلغاء الإزاحة والميلان في الجوال */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .community-grid-section:hover .side-image {
    transform: scale(1.02) !important; /* حركة بسيطة جداً عند الهوفر في الجوال */
  }
  
  .content-center {
    order: -1; /* جعل النص يظهر أولاً في الجوال */
    width: 100%;
    max-width: none;
  }

  .main-heading { font-size: 32px; }
  .description { font-size: 17px; }
  .cta-button { width: 100%; min-width: 0; justify-content: center; }
}

@media (max-width: 480px) {
  .main-heading { font-size: 28px; }
  .side-image { height: 280px !important; }
}
/* =========================
   STATS STRIP
========================= */
.stats-strip {
  background: #3d0121;
  padding: 20px 0;
}

.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 18px 30px;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: rgba(255, 255, 255, 0.12);
}

.stat-box h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  color: #ffcc00;
}

.stat-box p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991.98px) {
  .stats-strip-inner {
    flex-wrap: wrap;
  }

  .stat-box {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px 16px;
  }

  .stat-box::after {
    display: none;
  }

  .stat-box h3 {
    font-size: 1.9rem;
  }

  .stat-box p {
    font-size: 0.78rem;
  }
}

@media (max-width: 575.98px) {
  .stat-box {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 18px 14px;
  }

  .stat-box h3 {
    font-size: 1.7rem;
  }

  .stat-box p {
    font-size: 0.75rem;
  }
}

.stat-box p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #ffffff;
  font-family: "Poppins", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ICON STYLE */
.stat-box p i {
  color: #FF5A2F;
  font-size: 2rem;
}

:root {
    --brand-primary: #5b0035;
    --brand-accent: #ff5a2f;
    --brand-yellow: #f4c430;
    --text-dark: #3D0121;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

.services-premium {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5f1ea 100%);
    overflow: hidden;
    position: relative;
}

/* Badge Style */
.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 90, 47, 0.1);
    color: var(--brand-accent);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-main-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-accent { color: var(--brand-accent); }

.services-description {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.pill {
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    font-size: 15px;
    color: var(--brand-primary);
}

/* CTA Buttons */
.services-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call {
    background: var(--brand-primary);
    color: #fff !important;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-white 2s infinite;
}

.btn-estimate {
    background: var(--brand-yellow);
    color: #000 !important;
}

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

/* The Premium Card */
.premium-service-card {
    position: relative;
    /* border-radius: 30px; */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.service-main-img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.premium-service-card:hover .service-main-img { transform: scale(1.05); }

/* Floating Stat Animation */
.floating-stat {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: var(--brand-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Glass Content */
.card-content-glass {
    position: relative;
    background: #E5DCC8;
    backdrop-filter: blur(15px);
    margin: -80px 30px 30px;
    padding: 35px;
    /* border-radius: 25px; */
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 3;
}

.demand-percentage {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-accent);
}

.modern-progress {
    height: 10px;
    background: #e9ecef;
    border-radius: 50px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar-animated {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand-yellow));
    border-radius: 50px;
    position: relative;
    animation: progress-slide 2s ease-out forwards;
}

.special-offer-link {
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.special-offer-link:hover i { transform: translateX(5px); transition: 0.3s; }

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

@keyframes progress-slide {
    from { width: 0; }
}

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255, 0); }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .card-content-glass { margin-top: 20px; margin-left: 0; margin-right: 0; }
    .services-main-title { text-align: center; }
    .services-cta-group { justify-content: center; }
    .services-description { text-align: center; }
    .feature-pills { justify-content: center; }
}



/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-choose-section{
  background:#3D0121;
  padding-top:100px !important;
  padding-bottom:0 !important;
  overflow:hidden;
  position:relative;
}



.air-flow-bg{
  position:absolute;
  top:-40px;
  right:-80px;
  width:500px;
  height:400px;
  pointer-events:none;
  opacity:0.15;
}

.air-flow-bg span{
  position:absolute;
  border-top:3px solid #d27aa4;
  border-radius:50%;
  transform:rotate(-20deg);
}

.air-flow-bg span:nth-child(1){
  width:420px;
  height:160px;
  top:40px;
  right:0;
}

.air-flow-bg span:nth-child(2){
  width:330px;
  height:120px;
  top:110px;
  right:30px;
}

.air-flow-bg span:nth-child(3){
  width:240px;
  height:90px;
  top:170px;
  right:70px;
}


.why-choose-section .container{
  max-width: 1150px;
}


.why-choose-section .row.g-4.align-items-start{
  margin-top:10px;
}



.why-choose-label {
  color: #f3b52c;
  font-size: 18px;
  font-weight: 500;
   font-family: "Poppins", sans-serif;
}

.why-choose-heading {
  color: #f6e8db;
   font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  width: 750px;   /* يخلق فراغ يمين مثل الصورة */
  margin-bottom: 60px;
}

.why-choose-accent {
  color: #ff5533;
}

.why-choose-photo-wrap {
  max-width: 360px;
}

.why-choose-photo {
  height: 420px;
  object-fit: cover;
  display: block;
  width: 100%;
}

.why-choose-call-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #f4c430;
  padding: 18px 22px;
  gap: 14px;
}

.why-choose-call-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(91, 0, 53, 0.15);
  border-radius: 50%;
  color: #5b0035;
  font-size: 16px;
  flex-shrink: 0;
}

.why-choose-call-small {
  font-size: 14px;
  line-height: 1.2;
  color: #5b0035;
  font-family: "Poppins", sans-serif;
  margin-bottom: 4px;
}

.why-choose-call-number {
  color: #5b0035;
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.why-choose-call-number:hover {
  color: #5b0035;
}

.why-choose-top-text {
  color: white;
  font-size: 18px;
  
   font-family: "Poppins", sans-serif;
  max-width: 760px;
  
}

.why-choose-mission-title {
  color: #F4C430;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

.why-choose-mission-text{
  color:#c8a5b6;
  font-size:16px;
  line-height:1.7;
  font-family:"Poppins", sans-serif;
  max-width:420px;
}

.why-choose-link{
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  font-family:"Poppins", sans-serif;
  letter-spacing:1px;
  text-transform:uppercase;
}

.why-choose-link:hover{
  color:#f3b52c;
}

@media (max-width: 991.98px) {
  .why-choose-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .why-choose-photo-wrap {
    max-width: 100%;
  }

  .why-choose-photo {
    height: 620px;
    width: 100%;
  }

  .why-choose-top-text {
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .why-choose-heading {
    line-height: 1;
  }

  .why-choose-photo {
    height: 360px;
    
  }

  .why-choose-call-box {
    padding: 16px 18px;
  }

  .why-choose-mission-text {
    font-size: 16px;
  }

  .why-choose-call-number {
    font-size: 16px;
  }
}


@media (max-width: 991.98px){
  .air-flow-bg{
    width:260px;
    height:220px;
    top:10px;
    right:-30px;
    opacity:.12;
  }

  .air-flow-bg span:nth-child(1){
    width:230px;
    height:90px;
  }

  .air-flow-bg span:nth-child(2){
    width:180px;
    height:68px;
    top:62px;
    right:18px;
  }

  .air-flow-bg span:nth-child(3){
    width:130px;
    height:50px;
    top:105px;
    right:45px;
  }
}



/* الألوان الأساسية */
:root {
    --brand-wine: #5b0035;
    --brand-orange: #ff5a2f;
    --brand-gold: #f4c430;
}

.ac-modern-compact {
    background: #fdfbf7;
    padding: 40px 0 !important; /* تقليل المساحات العلوية والسفلية ليكون السكشن أقصر */
}

.compact-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(91, 0, 53, 0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

/* تنسيق الصورة */
.compact-img-container {
    height: 350px; /* ارتفاع محدد ومضغوط لتقصير السكشن */
    position: relative;
    overflow: hidden;
}

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

.compact-card:hover .compact-img {
    transform: scale(1.06); /* زووم ناعم جداً عند التمرير */
}

/* منطقة المحتوى */
.compact-content-area {
    padding: 30px 40px;
}

.compact-header {
    color: var(--brand-wine);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.main-para {
    font-size: 15px;
    color: var(--brand-wine);
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* شريط المعلومات (Info Strip) */
.highlight-info-strip {
    background: #fffcf2;
    border-left: 4px solid var(--brand-gold);
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--brand-wine);
}

.brand-subtext {
    font-size: 13px;
    color: var(--brand-orange);
    font-weight: 700;
    font-style: italic;
}

/* الأزرار */
.btn-call-now {
    background: var(--brand-wine);
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-call-now:hover {
    background: var(--brand-orange);
    transform: translateY(-2px);
}

.btn-link-estimate {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-left: 20px;
}

/* --- ANIMATIONS (الأنيميشن) --- */

.anim-reveal {
    animation: fadeInUp 0.8s ease-out forwards;
}

.anim-reveal-delayed {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

/* Pulse Animation for Emergency Badge */
.floating-mini-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-wine);
    display: flex; align-items: center; gap: 7px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pulse-dot {
    width: 6px; height: 6px;
    background: var(--brand-orange);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255, 90, 47, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 90, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 90, 47, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .compact-img-container { height: 220px; }
    .compact-content-area { padding: 20px; }
    .btn-link-estimate { display: block; margin-left: 0; margin-top: 15px; }
}

.duct-divider{
  background:#3D0121;
  padding:60px 0;
}

.duct-divider-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.duct-divider h3{
  color:#ffffff;
  font-family:Georgia, serif;
  font-size:32px;
  margin:0;
}

.duct-divider h3 span{
  color:#ff5a2f;
}

.duct-divider-btn{
  background:#ffca24;
  color:#5b0035;
  padding:14px 26px;
  text-decoration:none;
  font-family:"Plus Jakarta Sans", sans-serif;
  font-weight:700;
}

.duct-divider-btn:hover{
  background:#f4b800;
}





/* =========================
   DUCT SEALING SECTION
========================= */

.duct-sealing-section{
  background:#FCF8EC;
  padding:90px 0;
}

.duct-sealing-content{
  max-width:560px;
}

.duct-sealing-subtitle{
  color:#ff5a2f;
  font-size:16px;
  font-weight:500;
  margin-bottom:12px;
  font-family:Georgia, serif;
}

.duct-sealing-title{
  color:#5b0035;
  font-family:Georgia, serif;
  font-size:42px;
  line-height:1.08;
  font-weight:700;
  margin-bottom:22px;
}

.duct-sealing-title span{
  display:block;
  color:#ff5a2f;
}

.duct-sealing-text{
  color:#5b0035;
  font-size:16px;
  line-height:1.9;
  font-family:"Poppins", sans-serif;
  margin-bottom:28px;
  max-width:520px;
}

.duct-sealing-points{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-bottom:30px;
}

.duct-point{
  background:#e5dcc8;
  min-height:92px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:14px 10px;
  transition:all .3s ease;
}

.duct-point:hover{
  transform:translateY(-4px);
}

.duct-point i{
  font-size:24px;
  color:#5b0035;
  margin-bottom:10px;
}

.duct-point span{
  font-family:"Plus Jakarta Sans", sans-serif;
  font-size:14px;
  font-weight:700;
  color:#5b0035;
  line-height:1.4;
}

.duct-sealing-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  background:#5b0035;
  color:#ffffff;
  text-decoration:none;
  font-family:"Plus Jakarta Sans", sans-serif;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  transition:all .3s ease;
}

.duct-sealing-btn:hover{
  background:#3d0121;
  color:#ffffff;
}

.duct-sealing-visual{
  position:relative;
  background:#e5dcc8;
  padding:18px;
}

.duct-sealing-visual img{
  width:100%;
  display:block;
  object-fit:cover;
  min-height:460px;
}

.duct-sealing-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  background:#ffca24;
  padding:14px 18px;
  min-width:210px;
}

.duct-sealing-badge strong{
  display:block;
  color:#5b0035;
  font-family:Georgia, serif;
  font-size:22px;
  line-height:1.1;
  margin-bottom:4px;
}

.duct-sealing-badge span{
  display:block;
  color:#5b0035;
  font-size:13px;
  font-family:"Poppins", sans-serif;
  line-height:1.4;
}

@media (max-width: 991.98px){
  .duct-sealing-section{
    padding:75px 0;
  }

  .duct-sealing-title{
    font-size:36px;
  }

  .duct-sealing-content{
    max-width:100%;
  }

  .duct-sealing-text{
    max-width:100%;
  }

  .duct-sealing-points{
    grid-template-columns:repeat(3, 1fr);
  }

  .duct-sealing-visual img{
    min-height:380px;
  }
}

@media (max-width: 767.98px){
  .duct-sealing-section{
    padding:60px 0;
  }

  .duct-sealing-title{
    font-size:30px;
  }

  .duct-sealing-text{
    font-size:14px;
    line-height:1.8;
  }

  .duct-sealing-points{
    grid-template-columns:1fr;
  }

  .duct-point{
    min-height:78px;
  }

  .duct-sealing-visual{
    padding:12px;
  }

  .duct-sealing-visual img{
    min-height:auto;
  }

  .duct-sealing-badge{
    position:static;
    margin-top:12px;
  }
}


/* =========================
   CONTACT + PROCESS WRAPPER
========================= */

.contact-process-wrapper{
  background:#FCF8EC;
  position:relative;
}

/* =========================
   TOP CONTACT BOX
========================= */
.contact-highlight-box{
  background:#E5DCC8;
   max-width:920px;
  margin:0 auto;
  padding:26px 30px 28px;
  transform:translateY(44px);
  position:relative;
  z-index:3;
}

.contact-highlight-content{
  padding:44px 34px 34px 18px;
}

.contact-highlight-title{
  color:#5b0035;
  font-family: "Poppins", sans-serif;
  font-size:30px;
 
  font-weight:700;
  margin-bottom:18px;
  text-transform:capitalize;
  max-width:410px;
  letter-spacing:-0.6px;
}

.contact-highlight-title span{
  display:block;
}

.contact-highlight-text{
  color:#5b0035;
  font-size:15px;
  line-height:1.65;
  font-family:"Poppins", sans-serif;
  max-width:430px;
  margin-bottom:34px;
}

.contact-highlight-link{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: #620035;
}

.contact-highlight-link:hover{
  color:#7b1a4a;
}

/* contact service highlights */

.contact-service-highlights{
  margin-top:22px;
}

.contact-service-item{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.contact-service-item i{
  font-size:24px;
  color:#5b0035;
}

.contact-service-item span{
 font-family: "Plus Jakarta Sans", sans-serif;
  font-size:16px;
  font-weight:700;
  color:#5b0035;
}


/* SERVICE HIGHLIGHTS */

.contact-service-boxes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:22px;
}

.contact-service-card{
  background:#e5dcc8;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight:700;
  font-size:15px;
  color:#7b1a4a;

  transition:all .25s ease;
}

.contact-service-card i{
  font-size:18px;
  color:#7b1a4a;
}

.contact-service-card:hover{
  transform:translateY(-3px);
}
/* CONTACT SERVICES */

.contact-services{
  margin-top:28px;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  text-align:center;
}

.contact-service-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:10px 20px;

  font-family:"Plus Jakarta Sans", sans-serif;
  font-weight:700;
  font-size:15px;
  color:#5b0035;

  border-right:1px solid rgba(91,0,53,0.25);
}

.contact-service-item:last-child{
  border-right:none;
}

.contact-service-item i{
  font-size:30px;
  color:#5b0035;
}


.contact-service-item span{
  display:block;
}

@media (max-width:768px){

.contact-services{
grid-template-columns:1fr;
gap:18px;

}

}


/* CALL BUTTON */

.contact-call-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  margin-top:12px;
  padding:14px 26px;

  background:#5b0035;
  color:#ffffff;

  font-family:"Plus Jakarta Sans", sans-serif;
  font-size:15px;
  font-weight:700;
  letter-spacing:.5px;

  text-transform:uppercase;
  text-decoration:none;

  transition:all .3s ease;
}

/* arrow */

.contact-call-btn span{
  transition:transform .3s ease;
}

/* icon */

.contact-call-btn i{
  font-size:16px;
}

/* hover */

.contact-call-btn:hover{
  background:#3d0121;
  color:#ffffff;
}

.contact-call-btn:hover span{
  transform:translateX(5px);
}


/* PROFESSIONAL CALL BUTTON */

.contact-call-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  margin-top:18px;
  padding:12px 22px;

  border:2px solid #5b0035;
  color:#5b0035;
  background:transparent;

  font-family:"Plus Jakarta Sans", sans-serif;
  font-size:15px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;

  text-decoration:none;

  position:relative;
  overflow:hidden;

  transition:all .35s ease;
}

/* icon */

.contact-call-btn i{
  font-size:16px;
}

/* arrow */

.contact-call-btn em{
  font-style:normal;
  transition:transform .3s ease;
}

/* underline animation */

.contact-call-btn::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:100%;
  background:#5b0035;
  z-index:-1;
  transition:width .35s ease;
}

/* hover */

.contact-call-btn:hover{
  color:#ffffff;
}

.contact-call-btn:hover::after{
  width:100%;
}

.contact-call-btn:hover em{
  transform:translateX(6px);
}

/* premium call button */

.pro-call-btn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  background:#5b0035;
  color:#ffffff;
  text-decoration:none;
  min-width:240px;
  box-shadow:0 14px 30px rgba(91, 0, 53, 0.18);
  transition:all .35s ease;
  position:relative;
  overflow:hidden;
}

.pro-call-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 100%
  );
  transition:left .6s ease;
}

.pro-call-btn:hover::before{
  left:130%;
}

.pro-call-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(91, 0, 53, 0.24);
  color:#ffffff;
  background:#4a002b;
}

.call-btn-icon{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:50%;
  background:#ffca24;
  color:#5b0035;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow:inset 0 0 0 1px rgba(91, 0, 53, 0.08);
}

.call-btn-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.call-btn-text small{
  font-family:"Poppins", sans-serif;
  font-size:11px;
  font-weight:500;
  color:rgba(255,255,255,0.76);
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-bottom:4px;
}

.call-btn-text strong{
  font-family:"Plus Jakarta Sans", sans-serif;
  font-size:18px;
  font-weight:700;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.call-btn-arrow{
  margin-left:auto;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s ease;
  font-size:14px;
}

.pro-call-btn:hover .call-btn-arrow{
  transform:translateX(4px);
  background:rgba(255,255,255,0.2);
}

@media (max-width:767.98px){
  .pro-call-btn{
    width:100%;
    min-width:100%;
    justify-content:flex-start;
  }

  .call-btn-text strong{
    font-size:16px;
  }
}
/* right white card */

.contact-form-card{
  background:#FCF8EC;
  width:100%;
  max-width:374px;
  min-height:302px;
  padding:20px 26px 18px;

  margin:0 auto;   /* هذا السطر سيجعله في المنتصف */

}

.contact-form-title{
  color:#5b0035;
  font-family: "Poppins", sans-serif;
  font-size:24px;
  line-height:1.1;
  font-weight:700;
  margin-bottom:8px;
  text-align:center;
}

.contact-form-text{
  color:#7c5b6a;
  font-size:12px;
  line-height:1.45;
  font-family:"Poppins", sans-serif;
  text-align:center;
  max-width:285px;
  margin:0 auto 18px;
}

/* donation stats */

.donation-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  border:1px solid #d5cec1;
  margin-bottom:0;
}

.donation-stat{
  text-align:center;
  padding:12px 8px 10px;
  border-right:1px solid #d5cec1;
}

.donation-stat:last-child{
  border-right:none;
}

.donation-stat strong{
  display:block;
  color:#5b0035;
  font-size:15px;
  font-weight:700;
  margin-bottom:3px;
  font-family:"Poppins", sans-serif;
}

.donation-stat span{
  display:block;
  color:#7b746b;
  font-size:11px;
  font-family:"Poppins", sans-serif;
}

.donation-progress{
  height:14px;
  background:#e6dcc9;
  margin:14px 0 10px;
  overflow:hidden;
}

.donation-progress-bar{
  width:64%;
  height:100%;
  background:#ff5a2f;
}

.donation-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
  color:#7b746b;
  font-family:"Poppins", sans-serif;
  margin-bottom:16px;
}

.donation-meta strong{
  color:#5b0035;
  font-weight:700;
}

.contact-submit-btn{
  width:100%;
  border:none;
  background:#7a0035;
  color:#ffffff;
  min-height:38px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:all .3s ease;
}

.contact-submit-btn:hover{
  background:#5b0035;
  color:#ffffff;
}

.contact-form-note{
  margin-top:12px;
  margin-bottom:0;
  text-align:center;
  color:#7c5b6a;
  font-size:11px;
  font-family:"Poppins", sans-serif;
}
/* =========================
   PROCESS SECTION
========================= */

.process-section-inner{
  background:#3D0121;
  margin-top:-90px;
  padding:190px 0 90px;
  position:relative;
}

.process-subtitle{
  color:#f4c430;
  font-size:16px;
  margin-bottom:12px;
  font-family: "Poppins", sans-serif;
  font-weight:600;
}

.process-title{
  font-family: "Poppins", sans-serif;
  font-size:clamp(38px, 4vw, 62px);
  line-height:1.1;
  margin-bottom:55px;
  color:#fff5e8;
  font-weight:700;
}

.process-steps-row{
  row-gap:40px;
}

.process-step{
  position:relative;
  padding:0 26px;
}

.process-circle{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#f4c430;
  color:#5b0035;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px;
  font-size:24px;
  font-family: "Poppins", sans-serif;
}

.process-step-title{
  font-size:18px;
  margin-bottom:10px;
  font-weight:600;
  color:#ffffff;
  font-family:"Poppins", sans-serif;
}

.process-step-text{
  font-size:14px;
  color:#e4c9d6;
  max-width:240px;
  margin:0 auto;
  line-height:1.7;
  font-family:"Poppins", sans-serif;
}

.process-step:not(:last-child)::after{
  content:"»";
  position:absolute;
  right:-8px;
  top:8px;
  color:#f4c430;
  font-size:34px;
  line-height:1;
  font-family: "Poppins", sans-serif;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px){
  .contact-highlight-box{
    max-width:100%;
    transform:translateY(30px);
    padding:22px;
  }

  .contact-highlight-content{
    padding:30px 20px 24px;
  }

  .contact-highlight-title{
    max-width:100%;
    font-size:56px;
  }

  .contact-highlight-text{
    max-width:100%;
  }

  .contact-form-card{
    margin:0;
    max-width:100%;
    min-height:auto;
  }

  .process-section-inner{
    margin-top:-50px;
    padding:130px 0 70px;
  }

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

  .process-title{
    margin-bottom:40px;
  }
}

@media (max-width: 767.98px){
  .contact-highlight-box{
    padding:18px;
    transform:translateY(20px);
  }

  .contact-highlight-content{
    padding:18px 10px 22px;
  }

  .contact-highlight-title{
    font-size:42px;
    line-height:0.92;
  }

  .contact-form-card{
    padding:22px 18px 18px;
  }

  .contact-form-title{
    text-align:left;
    font-size:34px;
    max-width:100%;
    margin-left:0;
    margin-right:0;
  }

  .contact-form-text{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }

  .process-section-inner{
    margin-top:-20px;
    padding:90px 0 55px;
  }

  .process-title{
    font-size:32px;
    margin-bottom:35px;
  }

  .process-circle{
    width:52px;
    height:52px;
    font-size:22px;
  }

  .process-step-title{
    font-size:17px;
  }

  .process-step-text{
    font-size:13px;
  }
}


@media (max-width: 991.98px){
  .contact-highlight-box{
    max-width:100%;
    padding:22px;
    transform:translateY(30px);
  }

  .contact-highlight-content{
    padding:26px 18px 24px;
  }

  .contact-highlight-title{
    max-width:100%;
    font-size:54px;
  }

  .contact-highlight-text{
    max-width:100%;
  }

  .contact-form-card{
    max-width:100%;
    margin-top:20px;
  }
}

@media (max-width: 767.98px){
  .contact-highlight-box{
    padding:18px;
    transform:translateY(18px);
  }

  .contact-highlight-content{
    padding:18px 8px 20px;
  }

  .contact-highlight-title{
    font-size:40px;
    line-height:0.92;
  }

  .contact-form-card{
    padding:18px;
  }

  .contact-form-title{
    font-size:28px;
  }

  .donation-meta{
    flex-direction:column;
    gap:6px;
  }
}


/* =========================
   CUSTOM AIR DUCT FORM CARD
========================= */

.air-contact-form-card{
  background:white;
  width:100%;
  max-width:420px;
  min-height:auto;
  padding:26px 24px 24px;
  margin:0 auto;
}

.custom-airduct-form .form-control{
  width:100%;
    min-height:40px;
  padding:8px 12px;
  font-size:13px;
  border:1px solid #d8cfc0;
  border-radius:0;
  background:#ffffff;
  color:#5b0035;
 
  font-family:"Poppins", sans-serif;
  box-shadow:none;
 
}

.custom-airduct-form .form-control::placeholder{
  color:#8c7a83;
}

.custom-airduct-form .form-control:focus{
  border-color:#c14a11;
  box-shadow:none;
}

.custom-airduct-form textarea.form-control{
  min-height:80px;
  resize:none;
}

.custom-airduct-form select.form-control{
  appearance:auto;
  color:#5b0035;
}

.custom-airduct-form input[type="number"].form-control{
  color:#5b0035 !important;
}

.air-submit-btn{
  width:100%;
  border:none;
  background:#c14a11 !important;
  color:#ffffff !important;
  min-height:46px !important;
  font-size:16px !important;
  font-weight:700 !important;
  text-transform:uppercase;
  transition:all .3s ease;
  border-radius:0;
}

.air-submit-btn:hover{
  background:#a53e0f !important;
  color:#ffffff !important;
}

.custom-airduct-form fieldset{
  margin:0;
  padding:0;
  border:0;
}

.custom-airduct-form p{
  margin:0;
}

/* تحسين عنوان الفورم */
.air-contact-form-card .contact-form-title{
  color:#5b0035;
  font-family: "Poppins", sans-serif;
  font-size:28px;
  line-height:1.1;
  font-weight:700;
  margin-bottom:10px;
  text-align:center;
}

.air-contact-form-card .contact-form-text{
  color:#7c5b6a;
  font-size:13px;
  line-height:1.6;
  font-family:"Poppins", sans-serif;
  text-align:center;
  max-width:320px;
  margin:0 auto 20px;
}

/* responsive */
@media (max-width: 991.98px){
  .air-contact-form-card{
    max-width:100%;
    margin-top:22px;
  }
}

@media (max-width: 767.98px){
  .air-contact-form-card{
    padding:20px 16px 18px;
  }

  .air-contact-form-card .contact-form-title{
    font-size:24px;
    text-align:left;
  }

  .air-contact-form-card .contact-form-text{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }

  .air-submit-btn{
    min-height:54px !important;
    font-size:16px !important;
  }
}
/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section{
  background:#FCF8EC;
  padding:95px 0;
}

.testimonials-heading-row{
  margin-bottom:40px;
}

.testimonials-subtitle{
  color:#ff5a2f;
  font-size:16px;
  font-weight:500;
  margin-bottom:10px;
  font-family: "Poppins", sans-serif;
}

.testimonials-title{
  color:#5b0035;
  font-size:42px;
  line-height:1.05;
  font-weight:700;
  font-family: "Poppins", sans-serif;
  margin-bottom:0;
  max-width:560px;
}

.testimonials-title span{
  display:block;
  color:#ff5a2f;
}

.testimonials-main-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:#ff5a2f;
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  padding:16px 22px;
  text-transform:uppercase;
  transition:all .3s ease;
  font-family:"Poppins", sans-serif;
  text-decoration:none;
}

.testimonials-main-btn:hover{
  background:#e84c22;
  color:#ffffff;
}

.testimonial-card{
  background:#e5dcc8;
  text-align:center;
  padding:30px 24px 26px;
  height:100%;
  transition:all .3s ease;
}

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

.testimonial-avatar-wrap{
  width:120px;
  height:120px;
  border-radius:50%;
  background:#d4c7bc;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.testimonial-avatar{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
}

.testimonial-name{
  color:#5b0035;
  font-size:22px;
  line-height:1.3;
  font-weight:700;
  font-family: "Poppins", sans-serif;
  margin-bottom:6px;
}

.testimonial-role{
  display:block;
  color:#8b6a78;
  font-size:13px;
  font-weight:500;
  margin-bottom:12px;
  text-transform:uppercase;
  font-family:"Poppins", sans-serif;
  letter-spacing:.8px;
}

.testimonial-stars{
  display:flex;
  justify-content:center;
  gap:4px;
  margin-bottom:14px;
}

.testimonial-stars i{
  color:#FF5A2F;
  font-size:15px;
}

.testimonial-text{
  color:#6f5661;
  font-size:15px;
  line-height:1.8;
  margin:0;
  font-family:"Poppins", sans-serif;
}

@media (max-width: 991.98px){
  .testimonials-section{
    padding:75px 0;
  }

  .testimonials-heading-row{
    row-gap:20px;
  }
}

@media (max-width: 767.98px){
  .testimonials-section{
    padding:60px 0;
  }

  .testimonials-title{
    font-size:34px;
  }

  .testimonial-card{
    padding:24px 18px 22px;
  }

  .testimonial-avatar-wrap,
  .testimonial-avatar{
    width:105px;
    height:105px;
  }

  .testimonial-name{
    font-size:20px;
  }

  .testimonial-text{
    font-size:14px;
  }
}









/* =========================
   FAQ AIR SECTION
========================= */

.faq-air-section{
  background:#FCF8EC;
  padding:80px 0 65px;
}

.faq-air-top{
  margin-bottom:70px;
  align-items:start;
}

.faq-air-subtitle{
  color:#ff5a2f;
  font-size:15px;
  margin-bottom:10px;
  font-family: "Poppins", sans-serif;
}

.faq-air-title{
  color:#5b0035;
  font-family: "Poppins", sans-serif;
  font-size:clamp(30px, 3.2vw, 52px);
  line-height:0.98;
  font-weight:700;
  max-width:280px;
  margin-bottom:0;
}

.faq-air-title span{
  color:#ff5a2f;
}

.faq-air-accordion{
  border-top:1px solid #d9cfc1;
}

.faq-air-item{
  border-bottom:1px solid #e5dacb;
  padding:12px 0;
  cursor:pointer;

  display:grid;
  grid-template-columns:40px 1fr 34px;
  column-gap:10px;
}

/* السؤال نفسه */
.faq-air-question{
  display:contents;
}

/* رقم السؤال */
.faq-air-number{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size:14px;
  font-weight:500;
  color:#7b1a4a;

  font-variant-numeric: tabular-nums;
}
/* عنوان السؤال */
.faq-air-question h3{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size:16px;
  font-weight:700;
  line-height:1.4;
  letter-spacing:-0.2px;
  color:#7b1a4a;
}
/* زر الفتح */
.faq-air-toggle{
  width:26px;
  height:26px;
  border-radius:50%;
  border:1.5px solid #ff5a2f;
  background-color: transparent;
  font-size:16px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s ease;
}

/* الإجابة */
.faq-air-answer{
  grid-column:2 / 4;
  overflow:hidden;
  height:0;
  transition:height .4s ease;
}

/* النص الداخلي */
.faq-air-answer-inner{
  padding-top:14px;
}

.faq-air-answer p{
  color:#7c5b6a;
  font-size:16px;
  line-height:1.7;
  margin:0;
}

/* LOGO STRIP */

.faq-air-logos-row{
  margin-top:10px;
}

.faq-air-logo-box{
  background:#e5dcc8;
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#7b1a4a;
  font-size:14px;   /* كان 16 أو 22 */
  font-weight:700;
font-family: "Plus Jakarta Sans", sans-serif;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

/* RESPONSIVE */

@media (max-width: 991.98px){
  .faq-air-section{
    padding:75px 0 60px;
  }

  .faq-air-top{
    margin-bottom:55px;
  }

  .faq-air-title{
    max-width:100%;
  }
}

@media (max-width: 767.98px){
  .faq-air-section{
    padding:60px 0 50px;
  }

  .faq-air-top{
    margin-bottom:40px;
  }

  .faq-air-title{
    font-size:36px;
  }

  .faq-air-question{
    grid-template-columns:38px 1fr 38px;
    gap:10px;
  }

  .faq-air-question h3{
    font-size:16px;
  }

  .faq-air-answer-inner{
    padding-left:48px;
  }

  .faq-air-answer p{
    font-size:14px;
  }

  .faq-air-logo-box{
    min-height:72px;
    font-size:18px;
  }
}


/* عند فتح السؤال */

.faq-air-item.active .faq-air-number{
  color:#ff5a2f;
}

.faq-air-item.active h3,
.faq-air-item.active .faq-air-number{
  color:#ff5a2f;
}
.faq-air-item.active .faq-air-toggle{
  background:#ff5a2f;
  color:#fff;
}

.faq-air-number,
.faq-air-question h3,
.faq-air-toggle{
  transition: all .3s ease;
}

.faq-air-section .container{
  max-width:1100px;
}


.faq-air-accordion{
  border-top:1px solid #d9cfc1;
  max-width:700px;
  margin-left:auto;
}




/* start footer */
/* =========================
   FOOTER SECTION
========================= */

.site-footer{
  position: relative;
  background: url("../img/hero-img.webp") center center / cover no-repeat;
  overflow: hidden;
}

.site-footer-overlay{
  position: absolute;
  inset: 0;
  background: rgba(61, 1, 33, 0.88);
}

.footer-top{
  padding: 82px 0 72px;
  position: relative;
  z-index: 2;
}

.footer-logo{
  color: #F4C430;
  font-size: 34px;
  font-weight: 700;
   font-family: "Poppins", sans-serif;
  line-height: 1.3;
  margin-bottom: 24px;
}

.footer-contact-info{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-info li i{
   color:#f4c430;
  font-size:18px;
  width:20px;
  flex-shrink:0;
}

.footer-contact-info li div,
.footer-contact-info li a{
  color: #E5DCC8;
  font-size: 15px;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.footer-contact-info li a:hover{
  color: #ffcc00;
}

.footer-heading{
  color: #E5DCC8;
  font-size: 22px;
  font-weight: 700;
   font-family: "Poppins", sans-serif;
  margin-bottom: 18px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a{
  color: #E5DCC8;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-links a:hover{
  color: #ffcc00;
}



.footer-bottom{
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0 24px;
}

.footer-copy{
  color: #E5DCC8;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.footer-scroll-top{
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E5DCC8;
  color: #7a0035;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-scroll-top:hover{
  background: #ffcc00;
  color: #5b0035;
}


/* website + social */

.footer-website a{
  color:#E5DCC8;
  font-size:15px;
  font-family:"Poppins", sans-serif;
  text-decoration:none;
}

.footer-website a:hover{
  color:#ffcc00;
}

/* social icons row */

.footer-social-row{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.footer-social-row a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#E5DCC8;
  border:1px solid rgba(255,255,255,0.3);
  font-size:15px;
  transition:all .3s ease;
}

/* hover */

.footer-social-row a:hover{
  background:#ff5a2f;
  border-color:#ff5a2f;
  color:#ffffff;
}

/* تأكيد لون الأيقونة نفسها */

.footer-social-row a:hover i{
  color:#E5DCC8;
}

@media (max-width: 991.98px){
  .footer-top{
    padding: 70px 0 55px;
  }

  .footer-contact-card{
    max-width: 100%;
  }
}

@media (max-width: 767.98px){
  .footer-top{
    padding: 60px 0 45px;
  }

  .footer-logo{
    font-size: 28px;
    
  }

  .footer-heading,
  .footer-contact-title{
    font-size: 20px;
  }

  .footer-bottom{
    padding-bottom: 70px;
  }

  .footer-scroll-top{
    right: 18px;
    bottom: 18px;
  }
}


/* zip codes */

.zip-codes{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.zip-codes span{
  display:inline-block;
  padding:8px 14px;
  background:#E5DCC8;
  color:#5B0035;
  font-size:14px;
  font-weight:600;
  border-radius:4px;
  text-decoration:none;
  font-family:"Poppins", sans-serif;
  transition:all .3s ease;
}

.zip-codes span:hover{
  background:#ff5a2f;
  color:#ffffff;
}

.footer-zip-title{
  color:#f4c430;   /* الأصفر */
  font-size:36px;  /* أكبر */
  font-weight:700;
  font-family: "Poppins", sans-serif;
  margin-bottom:20px;
}

.zip-codes{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:48px;
}


.footer-zip-column{
  padding-top:38px;
}

.footer-social-zip{
  margin-top:25px;
}


/* footer map */

.footer-map{
  margin-top:20px;
  width:100%;
  height:270px;
  border-radius:6px;
  overflow:hidden;
  border:3px solid #E5DCC8;
}

.footer-map iframe{
  width:100%;
  height:100%;
  border:0;
}
/* end footer */

/* service loactions */
.location-btn {
    display: block;
    padding: 12px 10px;
    background-color: #3D0121; /* Primary Burgundy Color */
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #3D0121;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-size: 0.95rem;
  }

  .location-btn:hover {
    background-color: #FF5A2F; /* Hover Orange Color */
    border-color: #FF5A2F;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(255, 90, 47, 0.3);
  }

  /* Responsive for mobile devices */
  @media (max-width: 576px) {
    .location-btn {
      font-size: 0.85rem;
      padding: 10px 5px;
    }
  }
  /*end locations  */
.services-main-title {
  font-size: 2rem; /* main title size */
  font-weight: 600;
  color: #3D0121; /* your accent color */
  line-height: 1.3;
}

.services-main-title .small-part {
  font-size: 1.2rem; /* smaller than main title */
  display: block; /* ensures it stays on its own line */
  font-weight: 500;
  color: #3D0121; /* optional: lighter shade for contrast */
}

