/* Colors */
:root {
  --primary-color: #e0c68f;
  --secondary-color: #050403;
  --accent-color: #FFD700;
  --text-dark: #050403;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --success-color: #e0c68f;
  --dark-blue: #050403;
  --light-gold: #e0c68f;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Header Top */
header .header-top {
  background: var(--bg-light);
  border-bottom: 1px solid rgba(224, 198, 143, 0.3);
  padding: 10px 0;
}

header .header-top .logo img{
  width: 250px;
}

header .header-top-contact-and-rating {
  gap: 20px;
}

header .header-top-contact-and-rating .header-contact-item {
  color: var(--light-gold);
  gap: 15px;
}

header .header-top-contact-and-rating .header-contact-item svg {
  width: 35px;
  height: 35px;
}

header .header-top-contact-and-rating .header-contact-item .content {
  font-size: 16px;
  color: var(--dark-blue);
}

header .header-top-contact-and-rating .header-contact-item .content .title{
  margin-bottom: 10px;
  font-weight: 600;
}


header .main-nav .nav-list {
  list-style: none;
  gap: 10px;
}

header .nav-link {
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px 16px;
  position: relative;
}

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

header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

header .nav-link:hover::after {
  width: 80%;
}

header .header-social-container {
  gap: 20px;
}

header .header-social-container .header-top-social-link svg {
  width: 30px;
  height: 30px;
  color: var(--light-gold);
}


/* Functions */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lexend/v16/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lexend/v16/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lexend/v16/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lexend/v16/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lexend/v16/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lexend/v16/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LA.ttf) format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lexend/v16/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LA.ttf) format('truetype');
}

@font-face {
  font-family: 'custom-font';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/MADE_Mirage_Medium_PERSONAL_USE.woff') format('woff'),
       url('../fonts/MADE_Mirage_Medium_PERSONAL_USE.ttf') format('truetype');
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}
a:hover {
    color:#fff;
}
html {
  height: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  outline: none;
}
.img-responsive {
  max-width: 100%;
  height: auto;
}
.img-full {
  width: 100%;
  height: auto;
}
body {
    line-height: 1;
    --gutter-x: 18px;
    --gutter-x2: -18px;
    overflow-x: clip;
    color: var(--dark-blue);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  h4 {
    font-size: 20px;
  }
  
  h5 {
    font-size: 18px;
  }
  
  h6 {
    font-size: 16px;
  }
  
  p {
    font-size: 16px;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}
/* lp site */
section {
    overflow-x: clip;
}

#svg-sprite-container {
  display: none;
}
#success {
  display: none;
}

.section-subtitle {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}

/* Whatsapp Popup */

.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 15px;
  width: 375px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  animation: fadeIn 0.5s;
  z-index: 1000;
}

.whatsapp-popup .popup-header {
  display: flex;
  align-items: center;
  background-color: rgb(0, 128, 105);
  padding: 10px;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.whatsapp-popup .profile-pic {
  width: 50px;
  height: 50px;
  background: url('https://aslitarcanclinic.com/wp-content/uploads/2025/05/cropped-favicon-150x150.png') center/cover;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.whatsapp-popup .profile-info h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.whatsapp-popup .profile-info p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

.whatsapp-popup .close-btn {
  margin-left: auto;
  font-size: 20px;
  cursor: pointer;
}

.whatsapp-popup .chat-area {
  background: url('/landing-3/assets/images/whatsapp-bg.jpg') center/cover;
  padding: 15px;
}

.whatsapp-popup .popup-body {
  margin-bottom: 60px;
}

.whatsapp-popup .popup-body .body-chat-box {
  padding: 6px 14px;
  position: relative;
  transform-origin: center top;
  z-index: 2;
  font-size: 15px;
  line-height: 1.39;
  max-width: calc(100% - 20px);
  border-radius: 0px 16px 16px 16px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  hyphens: auto;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 0px 0px;
}

.whatsapp-popup .popup-body .body-chat-box p {
  font-size: 14px;
  color: #333;
}

.whatsapp-popup .popup-footer {
  text-align: center;
  padding: 10px;
}

.whatsapp-popup .popup-footer .chat-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 0px 0px;
  transition: all 0.3s ease;
}

.whatsapp-popup .popup-footer .chat-btn svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.whatsapp-popup .popup-footer .chat-btn:hover {
  background-color: #1DA851;
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
}

.whatsapp-icon svg {
  width: 35px;
  height: 35px;
  color: #fff;
}

.whatsapp-icon .red-dot {
  position: absolute;
  top: 5px;
  right: 0px;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
}



header{
  position: relative;
  z-index: 10;
}

#home-banner {
  position: relative;
}

#home-banner .banner-content {
  padding: 85px 0px 0px 5%;
  position: relative;
  z-index: 4;
}


/* Banner Styles */
#home-banner {
  background: white;
  display: flex;
  align-items: center;
}

#home-banner .banner-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--light-gold);
  line-height: 1.2;
  margin-bottom: 2rem;
}

#home-banner .banner-title .highlight {
  color: var(--dark-blue);
}

#home-banner .features-list {
  margin: 2rem 0;
}

#home-banner .feature-item {
  margin-bottom: 1rem;
}

#home-banner .feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#home-banner .feature-icon i {
  color: white;
  font-size: 12px;
}

#home-banner .feature-text {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
}

#home-banner .banner-buttons {
  margin-top: 15px;
  gap: 10px;
}

#home-banner .btn-primary {
  background: var(--dark-blue);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#home-banner .btn-primary:hover {
  background: var(--light-gold);
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 198, 143, 0.3);
}

#home-banner .btn-secondary {
  background: var(--secondary-color);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#home-banner .btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 198, 143, 0.3);
}

#home-banner .doctors-image {
  position: relative;
  text-align: center;
  top: 3px;
    
}

#home-banner .doctors-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

/* brands */

#home-brands {
  background-color: var(--dark-blue);
  padding: 20px 0;
  margin-bottom: 80px;
}

#home-brands .logo-slide-outer{
  gap: 40px;
}

#home-brands .logos-container {
  display: flex;
  gap: 40px;
}

#home-brands .rotating-brand-logo  {
  overflow: hidden;
  gap: 40px;
}

#home-brands .rotating-brand-logo .logos-container {
  animation: scroll-left 15s linear infinite; 
}

#home-brands .logo{
  width: 120px;
  aspect-ratio: 1;
  object-fit: contain;
}

@keyframes scroll-left {
  0% {
      transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* about us */

#home-about-us{
  margin-bottom: 80px;
}

#home-about-us .about-subtitle {
  display: inline-block;
  background: var(--light-gold);
  color: #fff;
  padding: 14px 32px 12px 32px;
  border-radius: 10px 0px 10px 0px;
  font-size: 15px;
  margin-bottom: 15px;
}

#home-about-us .about-title {
  font-size: 42px;
  font-weight: 600;
  color: var(--light-gold);
  line-height: 58px;
}

#home-about-us .about-title span {
  color: var(--dark-blue);
}

.about-desc {
  line-height: 30px;
  color: var(--dark-blue);
  font-size: 18px;
  margin-bottom: 15px;
}

.about-platforms {
  gap: 10px;
}

.about-platforms img {
  width: 125px;
  height: auto;
}

.about-image{
  border-radius: 20px;
}

/* success stories */

#home-success-stories{
  margin-bottom: 80px;
}
#home-success-stories .owl-stage-outer {
    overflow: visible;
}
#home-success-stories .section-title {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 15px;
}

#home-success-stories .section-desc {
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

#home-success-stories .success-row{
  margin-top: 15px;
}
.stories-box {
  padding: 15px;
  border: 2px solid var(--light-gold);
  border-radius: 10px;
}

.stories-link {
  display: block;
  position: relative;
}

.stories-link .youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-15px, -15px);
    width: 50px!important;
}

.stories-box .patients-image{
  border-radius: 10px;
}

.stories-content{
  margin-top: 15px;
}

.stories-feature-content {
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.stories-feature-box{
  width: 30%;
  flex: 0 0 30%;
  text-align: center;
  padding: 10px;
}

.stories-feature-box {
  width: 31%;
  flex: 0 0 31%;
  text-align: center;
  padding: 11px;
  background: linear-gradient(73deg, var(--dark-blue) 0%, var(--light-gold) 98%, var(--light-gold) 100%);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.patients-name {
    margin-bottom: 10px;
}

.patients-name .title{
  font-size: 20px;
  font-weight: 600;
}

.star{
  gap: 5px;
}

.star svg {
  width: 16px;
  fill: #8a7147;
}

.patients-text {
  font-size: 15px;
  line-height: 1.4;
  color: var(--dark-blue);
  text-align: center;
}

#home-success-stories .owl-nav button {
  border: none;
  background:radial-gradient(rgba(244, 231, 200, 1) 91%, rgba(241, 235, 226, 1) 100%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.6;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#home-success-stories .owl-nav button svg {
  width: 50px;
  height: 50px;
  color: var(--dark-blue);
}

#home-success-stories .owl-nav button:hover {
  opacity: 1;
}

#home-success-stories .owl-nav .owl-prev {
  left: 10px;
}

#home-success-stories  .owl-nav .owl-next {
  right: 10px;
}



/* Before after start */
#home-before-after{
  margin-bottom: 120px;
}
#home-before-after .before-after{
  position: relative;
}
#home-before-after .before-after-slider-area .slider-item img{
    border-radius: 24px;
}
#home-before-after .before-after-slider-area .owl-dots{
    margin-top: 32px;
    gap: 8px 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
#home-before-after .before-after-slider-area .owl-dots .owl-dot span{
    background-color: var(--bg-soft-color);
    width: 12px;
    height: 12px;
    transition: all 0.2s;
    margin: 0;
}
#home-before-after .before-after-slider-area .owl-dots .owl-dot.active span{
    background-color: #fff;
}
#home-before-after .before-after-text-area {
  text-align: end;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-bottom: 25px;
}
#home-before-after .before-after-text-area .before-after-title{
  color: var(--title-color);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}
#home-before-after .before-after-text-area .before-after-desc{
  color: var(--text-color);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}
#home-before-after .before-after-text-area .before-after-btn{
  background: #27d367;
  border-radius: 8px;
  transition: all .3s ease-in-out;
  padding: 15px 30px;
  color: #ffff;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}
/* Before after End */


/* process area */
#home-process-area {
    background: linear-gradient(73deg, var(--dark-blue) 0%, var(--light-gold) 98%, var(--light-gold) 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* Animated background pattern */
#home-process-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
    z-index: 1;
}

/* Decorative circles */
#home-process-area::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(224, 198, 143, 0.2));
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#home-process-area .section-top-title{
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
}

/* Enhanced title with glow effect */
#home-process-area .section-top-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#home-process-area .section-title-area .section-title {
  color: var(--dark-blue);
  font-size: 36px;
  position: relative;
  z-index: 3;
}

#home-process-area .section-inner-area {
    position: relative;
    z-index: 2
}

#home-process-area .section-title-area {
    margin-bottom: 60px
}

#home-process-area .process-area {
    position: relative
}

/* Enhanced timeline line with gradient and pulse */
#home-process-area .process-area .fixed-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    background: linear-gradient(180deg, var(--light-gold), rgba(224, 198, 143, 0.3), var(--light-gold));
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0 0 20px rgba(224, 198, 143, 0.4);
}

/* Animated pulse effect on timeline */
#home-process-area .process-area .fixed-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--light-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translateX(-50%) scale(0.8);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-50%) scale(1.2);
        opacity: 1;
    }
}

#home-process-area .process-area .fixed-line .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--dark-blue), rgba(5, 4, 3, 0.8));
    border-radius: 12px;
    z-index: 2;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced mini icons with animation */
#home-process-area .process-area .mini-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 32px;
    height: 32px;
    padding: 4px;
    background: linear-gradient(45deg, var(--dark-blue), rgba(5, 4, 3, 0.8));
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 2px 5px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#home-process-area .process-area .mini-icon:hover {
    transform: translate(-50%,-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(224, 198, 143, 0.5),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

#home-process-area .process-area .process-row {
    --gutter-x: 60px;
    --gutter-x2: -60px;
    margin-bottom: 60px;
    position: relative
}

#home-process-area .process-area .process-row:last-child {
    margin-bottom: 0
}

#home-process-area .process-area .process-row:last-child .line::before {
    display: none
}

#home-process-area .process-area .process-row:last-child .line::after {
    display: none
}

/* Enhanced process boxes with glass morphism */
#home-process-area .process-area .process-row .process-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect for process boxes */
#home-process-area .process-area .process-row .process-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Decorative corner elements */
#home-process-area .process-area .process-row .process-box::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--light-gold), rgba(224, 198, 143, 0.3));
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

#home-process-area .process-area .process-row .process-box:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
}

#home-process-area .process-area .process-row .process-box .box-title {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--dark-blue);
  margin-bottom: 12px;
  position: relative;
}

/* Animated underline for titles */
#home-process-area .process-area .process-row .process-box .box-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-gold), transparent);
    transition: width 0.5s ease;
}

#home-process-area .process-area .process-row .process-box:hover .box-title::after {
    width: 60%;
}

#home-process-area .process-area .process-row .process-box .box-text {
    font-size: 18px;
    color: #474747;
    line-height: 1.6;
}

/* Enhanced border effects */
#home-process-area .process-area .process-row .flex-row .process-box {
    border-right: 4px solid transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) padding-box,
                linear-gradient(45deg, var(--light-gold), rgba(224, 198, 143, 0.5)) border-box;
}

#home-process-area .process-area .process-row .flex-row-reverse .process-box {
    border-left: 4px solid transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) padding-box,
                linear-gradient(45deg, var(--light-gold), rgba(224, 198, 143, 0.5)) border-box;
}

#home-process-area .section-decor-img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.1;
}

/* Step Form Styles */
#home-step-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.step-form-header .step-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.step-form-header .step-form-subtitle {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0;
}

.step-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Progress Bar */
.form-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}
.form-progress {
    gap: 30px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--light-gold);
    color: white;
    transform: scale(1.1);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--dark-blue);
}

.progress-line {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    z-index: 1;
}

.progress-line-fill {
    width: 0%;
    height: 100%;
    background: var(--light-gold);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-step.active {
    display: block;
}

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

.step-content {
    gap: 40px;
    margin-bottom: 40px;
}

.step-animation {
    flex: 0 0 300px;
    text-align: center;
}

.step-gif {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-fields {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.step-description {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
    position: relative;
}
.radio-option {
    display: flex;
    align-items: start;
    gap: 10px;
}
.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 0 3px rgba(224, 198, 143, 0.1);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 45px;
    color: var(--light-gold);
}

/* Norwood Scale */
.norwood-scale {
    margin-top: 15px;
}

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

.scale-option {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.scale-option:hover,
.scale-option.selected {
    border-color: var(--light-gold);
    background: rgba(224, 198, 143, 0.1);
}

.scale-option img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.scale-option span {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
}

.scale-option input[type="radio"] {
    display: none;
}

/* Treatment Methods */
.treatment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.method-option {
    position: relative;
    width: 32%;
    flex: 0 0 32%;
}

.method-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-card:hover,
.method-option input:checked + .method-card {
    border-color: var(--light-gold);
    background: rgba(224, 198, 143, 0.1);
}

.method-card img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.method-info p {
    color: #6c757d;
    margin: 0;
}

.method-option input[type="radio"] {
    display: none;
}

/* Graft Calculator */
.graft-calculator {
    display: flex;
    gap: 10px;
}

.graft-option {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.graft-option:hover,
.graft-option.selected {
    border-color: var(--light-gold);
    background: rgba(224, 198, 143, 0.1);
}

.graft-number {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.graft-desc {
    color: #6c757d;
}

/* Consultation Options */
.consultation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.consult-card {
    padding: 25px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.consult-card:hover,
.consultation-type input:checked + .consult-card {
    border-color: var(--light-gold);
    background: rgba(224, 198, 143, 0.1);
    transform: translateY(-5px);
}

.consult-icon {
    font-size: 2.5rem;
    color: var(--light-gold);
    margin-bottom: 15px;
}

.consult-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.consult-card p {
    color: #6c757d;
    margin-bottom: 10px;
}

.consult-time {
    font-size: 0.9rem;
    color: var(--light-gold);
    font-weight: 600;
}

.consultation-type input[type="radio"] {
    display: none;
}

/* Photo Upload */
.photo-upload h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.upload-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.upload-area {
    position: relative;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px dashed #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
}

.upload-label:hover {
    border-color: var(--light-gold);
    background: rgba(224, 198, 143, 0.05);
}

.upload-label i {
    font-size: 2rem;
    color: var(--light-gold);
    margin-bottom: 10px;
}

.upload-area input[type="file"] {
    display: none;
}

/* Privacy Consent */
.privacy-consent {
    background: rgba(224, 198, 143, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-check-label {
    color: var(--dark-blue);
    line-height: 1.4;
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-next,
.btn-submit {
    background: var(--light-gold);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-prev {
    background: #6c757d;
    color: white;
}

.btn-prev:hover {
    background: var(--dark-blue);
}

/* Success Step */
.success-step {
    text-align: center;
    padding: 60px 40px;
}

.success-animation i {
    font-size: 4rem;
    color: var(--light-gold);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.success-content h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.success-content p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 2rem;
    color: var(--light-gold);
}

.info-item span {
    font-weight: 600;
    color: var(--dark-blue);
}


/* packages */

#home-packages-area {
  padding: 100px 0;
  margin-bottom: 60px;
}
#home-packages-area .section-title-area {
  margin-bottom: 60px;
  text-align: center;
}
#home-packages-area .packages-table{
  width: 100%;
}
#home-packages-area .packages-table .table-header {
  padding: 40px 15px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  border-bottom: 2px solid #F3F3F3;
  color: #3D3D3D;
  vertical-align: middle;
}
#home-packages-area .packages-table .table-header:nth-child(2) {
  background:linear-gradient(73deg, var(--dark-blue) 0%, var(--light-gold) 98%, var(--light-gold) 100%);
  -webkit-border-radius: 30px 30px 0 0;
  -moz-border-radius: 30px 30px 0 0;
  -ms-border-radius: 30px 30px 0 0;
  border-radius: 30px 30px 0 0;
  color: #fff;
}
#home-packages-area .packages-table .table-body {
  background-color: #FFFFFF;
}
#home-packages-area .packages-table .table-body .body-row:first-child td:first-child {
  -webkit-border-radius: 35px 0 0 0;
  -moz-border-radius: 35px 0 0 0;
  -ms-border-radius: 35px 0 0 0;
  border-radius: 35px 0 0 0;
}
#home-packages-area .packages-table .table-body .body-row:first-child td:last-child {
  -webkit-border-radius: 0 35px 0 0;
  -moz-border-radius: 0 35px 0 0;
  -ms-border-radius: 0 35px 0 0;
  border-radius: 0 35px 0 0;
}
#home-packages-area .packages-table .table-body .body-row:last-child td:first-child {
  -webkit-border-radius: 0 0 0 35px;
  -moz-border-radius: 0 0 0 35px;
  -ms-border-radius: 0 0 0 35px;
  border-radius: 0 0 0 35px;
}
#home-packages-area .packages-table .table-body .body-row:last-child td:last-child {
  -webkit-border-radius: 0 0 35px 0;
  -moz-border-radius: 0 0 35px 0;
  -ms-border-radius: 0 0 35px 0;
  border-radius: 0 0 35px 0;
}
#home-packages-area .packages-table .table-body .body-row td {
  vertical-align: middle;
  border-bottom: 2px solid #F3F3F3;
  text-align: center;
  font-size: 18px;
  color: #3D3D3D;
  padding: 25px 15px;
  width: 25%;
}
#home-packages-area .packages-table .table-body .body-row td svg {
  width: 50px;
  height: 50px;
  display: inline-block;
}
#home-packages-area .packages-table .table-body .body-row td:first-child {
  text-align: start;
  width: 50%;
  padding: 25px 100px 25px 50px;
}
#home-packages-area .packages-table .table-body .body-row td:nth-child(2) {
  background-color:var(--light-gold);
  color: #fff;
}

/* faq */

#home-faq{
  margin-bottom: 80px;
}

#home-faq .section-inner-area{
  padding: 80px 24px;
  background-color: var(--bg-light);
  border-radius: 32px;
}

#home-faq .home-faq-title{
  font-size: 36px;
  line-height: 1.2;
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
}

#home-faq .faq-list .faq-item {
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  margin-bottom: 24px;
}

#home-faq .faq-list .faq-item .item-top {
  position: relative;
  padding: 12px 56px 12px 0;
  border-bottom: 1px solid var(--light-gold);
}

#home-faq .faq-list .faq-item .item-top:before {
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
  width: 15px;
  background: var(--light-gold);
}

#home-faq .faq-list .faq-item .item-top:after {
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  background: var(--light-gold);
}

#home-faq .faq-list .faq-item .item-top .item-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-blue);
  text-align: left;
  padding-right: 12px;
}

#home-faq .faq-list .faq-item .item-bottom {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: min-height 0.6s ease, padding 0.3s ease;
}

#home-faq .faq-list .faq-item .item-bottom .item-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

#home-faq .faq-list .faq-item.active .item-top:before {
  transform: rotate(0deg);
}

#home-faq .faq-list .faq-item.active .item-bottom {
  padding-top: 24px;
  max-height: unset;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-delay: 0.1s;
}

/* footer */

footer{
  padding: 50px 0;
  background-color: #000;
}

footer .footer-text {
  color: #fff;
  line-height: 1.4;
  font-size: 18px;
  margin-top: 15px;
}


footer .footer-contacts .footer-contact {
  display: flex;
  align-items: start;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
footer .footer-contacts .footer-contact .icon {
  margin-right: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 5px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
footer  .footer-contacts .footer-contact .icon svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}
footer .footer-contacts .footer-contact:last-child {
  margin: 0;
}
footer .footer-contacts .footer-contact:hover .icon {
  background-color: #fff;
  color: #D64D00;
}