/* Default CSS */
:root {
    --primary-color: #E66D24;
    --primary-color-low: rgba(230, 109, 36, 0.5);
    --primary-color-dark:  #D45A1D;

    --secondary-color:  #28236b;
    --secondary-color-low:  rgba(40, 35, 107, 0.5);
    --secondary-color-dark: #262261;

    --tertiary-color: #6c757d;
    --tertiary-color-low: rgba(108, 117, 125, 0.5);
    --tertiary-color-dark: #545b62;

    --bg-color: #E8E8E8;
    --bg-color-low: rgba(232, 232, 232, 0.5);
    --bg-color-dark: #D8D8D8;

    --text-dark: #343a40;
    --text-dark-low: #575e65;
    --text-dark-dark: #343a40;

    --text-light: #e1e4e6;
    --text-light-low: #f8f9fa;
    --text-light-dark: #9ea1a4;

    --button-color: #007bff;
    --button-color-low: rgba(0, 123, 255, 0.5);
    --button-color-dark: #0056b3;

    --gradient-rtl-to-transparent: linear-gradient(to right, var(--primary-color), transparent);
    --gradient-ltr-to-transparent: linear-gradient(to left, var(--primary-color), transparent);

    --gradient-rtl-sec-to-transparent: linear-gradient(to right, var(--secondary-color), transparent);
    --gradient-ltr-sec-to-transparent: linear-gradient(to left, var(--secondary-color), transparent);
    

    --gradient-rtl-white-to-transparent: linear-gradient(to right, #fff, transparent);
    --gradient-ltr-white-to-transparent: linear-gradient(to left, #fff, transparent);
}

.h-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    position: relative;
    width: max-content; 
}

.h-title .title {
    color: var(--secondary-color-dark);
    z-index: 2;
    position: relative;
    
}





.h-title .title .follower {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 3px;
    width: 100%;
    height: 30%;
    background: var(--gradient-rtl-to-transparent);
    z-index: -1;
}

.h-title.no-follower .title .follower {
    display: none;
}

.h-title .h-tag {
    position: absolute;
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--primary-color) ;
}

.h-title .h-desc {
    font-size: 18px;
    font-weight: 600;
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.h-title.secondary {
    color: var(--secondary-color);
}

.h-title.secondary .title {
    color: var(--text-light-low);
}

.h-title.secondary .h-tag {
    color: var(--secondary-color);
}

.h-title.secondary .follower {
    background: var(--gradient-rtl-sec-to-transparent);
    
}


[data-text-follow] {
    position: relative;
    display: inline-block;
}

[data-text-follow] .follower {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}


/* H title responsive */
@media (max-width: 768px) {

    .h-title {
        font-size: 1.5rem;
       
    }

    .h-title .title {
        font-size:1.5rem;
        text-align: center;
    }

    .h-title .h-tag {
        font-size: 1rem;
        top: -40%;
    }

    .h-title .h-desc {
        width: 80%;
    }

    .h-title .h-desc {
        display: none;
        
    }
    
    
}

/* Floating Call Button Styles */
.floating-call-btn {
  position: fixed;
  z-index: 9999;
  right: 32px;
  bottom: 32px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  transition: opacity 0.4s cubic-bezier(.4,2,.6,1), transform 0.5s cubic-bezier(.4,2,.6,1);
  pointer-events: none;
}
.floating-call-btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-call-btn .call-btn-inner {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f37521 60%, #d4622a 100%);
  box-shadow: 0 6px 24px 0 rgba(243,117,33,0.18), 0 1.5px 6px 0 rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: visible;
  transition: box-shadow 0.2s;
}
.floating-call-btn .call-btn-inner:hover,
.floating-call-btn.active .call-btn-inner {
  box-shadow: 0 8px 32px 0 rgba(243,117,33,0.28), 0 2px 8px 0 rgba(0,0,0,0.13);
}
.floating-call-btn .call-icon {
  color: #fff;
  font-size: 2rem;
  z-index: 2;
  position: relative;
  transition: transform 0.2s;
}
.floating-call-btn.active .call-icon {
  transform: scale(1.15) rotate(-10deg);
}
.floating-call-btn .call-anim-circle,
.floating-call-btn .call-anim-circle-fill {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.floating-call-btn .call-anim-circle {
  width: 80px;
  height: 80px;
  border: 2px solid #f37521;
  opacity: 0.25;
  animation: call-pulse 1.6s infinite cubic-bezier(.4,0,.2,1);
}
.floating-call-btn .call-anim-circle-fill {
  width: 64px;
  height: 64px;
  background: #f37521;
  opacity: 0.08;
  z-index: 1;
  animation: call-pulse-fill 1.6s infinite cubic-bezier(.4,0,.2,1);
}
@keyframes call-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.25; }
  70% { transform: translate(-50%, -50%) scale(1.25); opacity: 0.10; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}
@keyframes call-pulse-fill {
  0% { opacity: 0.08; }
  70% { opacity: 0.03; }
  100% { opacity: 0.08; }
}
@media (max-width: 600px) {
  .floating-call-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .floating-call-btn .call-btn-inner {
    width: 52px;
    height: 52px;
  }
  .floating-call-btn .call-anim-circle {
    width: 64px;
    height: 64px;
  }
}

/* Footer phone number style - more prominent */
.footer-phone {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-align: center;
}

.footer-phone a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-phone a:hover {
  color: var(--secondary-color-dark);
  text-decoration: underline;
}

footer .head .logo {
  width: 20%;
  max-width: 250px;
  margin: 0 auto 8px auto;
}

@media (max-width: 768px) {
  .footer-phone a {
    font-size: 1.1rem;
  }
}