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

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

@keyframes pulse {

  0%,
  100% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.7;
  }

  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 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);
  }
}

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

  100% {
    transform: translateX(-100%);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

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

.sticky-social-container {
  position: fixed;
  left: 12px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 20px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column !important;
  gap: 20px;
}

.sticky-social-link {
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.sticky-social-link svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.sticky-social-link:hover {
  transform: scale(1.2);
}

.sticky-social-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
  border-radius: 16px;
}

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

header .header-logo {
  width: 220px;
  height: auto;
  margin-top: -80px;
}

header .main-nav {
  flex: 1;
}

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

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: 8px;
}

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

header .header-top-contact-and-rating .header-contact-item .content {
  font-size: 16px;
  color: #fff;
}

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

header .header-top-contact-and-rating .header-contact-item .content .desc {
  font-size: 16px;
}

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

header .nav-link {
  color: #fff;
  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);
}

header .header-bottom {
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* 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://crabsmedia.com.tr/aslitarcan-sac-es/assets/images/lp-image/asli-tarcan-favicon.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('../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-color: #000;
  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: #fff;
}

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

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

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

#home-banner .feature-icon i {
  color: white;
  font-size: 20px;
  line-height: 1;
}

#home-banner .feature-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

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

#home-banner .btn-primary {
  background: var(--primary-color);
  border: none;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

#home-banner .btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

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

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

/* brands */
#home-brands {
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  background-color: var(--dark-blue);
  padding: 20px 0;
  margin-bottom: 80px;
}

#home-brands {
    background: #080808;
    padding: 40px 0;
    overflow: hidden;
}

#home-brands .logo-slide-outer {
    display: flex;
    align-items: center;
    gap: 40px;
}

#home-brands .rotating-brand-logo {
    display: flex;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    gap:40px;
}

#home-brands .logos-container {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scroll-left 25s linear infinite;
}

#home-brands .logo {
    width: 140px;
    height: 80px;
    object-fit: contain;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    filter: grayscale(1) brightness(0.8) opacity(0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#home-brands .logo:hover {
    filter: grayscale(0) brightness(1) opacity(1);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

#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;
}

#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;
}

#home-success-stories .stories-box {
    background: #111111; 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 24px; 
    padding: 24px;
    margin: 15px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); 
    position: relative;
    overflow: hidden;
}

#home-success-stories .stories-box:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 198, 143, 0.4);
    background: #161616;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

#home-success-stories .stories-link {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

#home-success-stories .patients-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#home-success-stories .youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px !important;
    height: auto;
    z-index: 2;
    opacity: 0.9;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transition: all 0.4s ease;
}

#home-success-stories .stories-box:hover .patients-image {
    transform: scale(1.1);
    filter: brightness(0.9);
}

#home-success-stories .stories-box:hover .youtube-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

#home-success-stories .stories-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

#home-success-stories .patients-name {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#home-success-stories .patients-name .title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

#home-success-stories .star {
    display: flex;
    gap: 2px;
}

#home-success-stories .star svg {
    width: 13px;
    height: 13px;
    fill: #D4AF37
}

#home-success-stories .stories-feature-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#home-success-stories .stories-feature-box {
    background: rgba(224, 198, 143, 0.1);
    color: #e0c68f;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(224, 198, 143, 0.15);
}

#home-success-stories .patients-text {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#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;
  background: radial-gradient(circle at 50% 30%, #222 0%, #0b0b0b 40%, #000 100%);
  padding: 60px 0;
}

#home-before-after .before-after-text-area {
  text-align: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
}

#home-before-after .before-after-text-area .before-after-title {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}

#home-before-after .before-after-text-area .before-after-title b{
  color: var(--primary-color);
  font-weight: 600;
}

#home-before-after .before-after-text-area .before-after-desc {
  color: #fff;
  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: 18px;
  font-weight: 600;
  gap: 8px;
  display: inline-flex;
  align-items: center;
}

#home-before-after .before-after-text-area .before-after-btn i{
  font-size: 24px;
}

#home-before-after .before-after {
  position: relative;
}
#home-before-after .before-after-slider-area {
  padding: 0 40px;
}

#home-before-after .owl-nav button {
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  -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-before-after .owl-nav .owl-next {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

#home-before-after .owl-nav .owl-prev {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

#home-before-after .owl-nav button svg {
  width: 40px;
  height: 40px;
  color: var(--dark-blue);
}

#home-before-after .owl-nav button:hover {
  opacity: 1;
}

#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-process-area {
  background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #080808 100%);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

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

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

#home-process-area .section-top-title {
  color: var(--light-gold);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

#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, var(--light-gold), transparent);
  box-shadow: 0 0 10px rgba(224, 198, 143, 0.4);
}

#home-process-area .section-title-area .section-title {
  color: #ffffff;
  /* Ana başlık saf beyaz */
  font-size: 36px;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#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;
}

/* Orta Çizgi - Karanlık moda uygun altın geçişi */
#home-process-area .process-area .fixed-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  /* Biraz daha ince, daha zarif */
  background: linear-gradient(180deg, rgba(224, 198, 143, 0.1), var(--light-gold), rgba(224, 198, 143, 0.1));
  border-radius: 12px;
  z-index: 1;
  box-shadow: 0 0 20px rgba(224, 198, 143, 0.2);
}

#home-process-area .process-area .fixed-line .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--light-gold), #ffffff);
  border-radius: 12px;
  z-index: 2;
}

/* Küçük İkon Daireleri */
#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, #1a1a1a, #000);
  border: 1px solid var(--light-gold);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

#home-process-area .process-area .mini-icon:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 20px var(--light-gold);
}

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

/* SÜREÇ KUTULARI - Dark Glassmorphism */
#home-process-area .process-area .process-row .process-box {
  background: rgba(255, 255, 255, 0.03);
  /* Çok hafif şeffaflık */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.4s ease;
}

#home-process-area .process-area .process-row .process-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 198, 143, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

#home-process-area .process-area .process-row .process-box .box-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  /* Başlık beyaz */
  margin-bottom: 12px;
  position: relative;
}

#home-process-area .process-area .process-row .process-box .box-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  /* Okunabilir soft gri */
  line-height: 1.6;
}

/* Kenar Çizgisi Efektleri - Siyah Arka Plana Uyarlanmış Altın Kenarlık */
#home-process-area .process-area .process-row .flex-row .process-box {
  border-right: 3px solid transparent;
  background: linear-gradient(#151515, #151515) padding-box,
    linear-gradient(135deg, var(--light-gold), transparent) border-box;
}

#home-process-area .process-area .process-row .flex-row-reverse .process-box {
  border-left: 3px solid transparent;
  background: linear-gradient(#151515, #151515) padding-box,
    linear-gradient(225deg, var(--light-gold), transparent) border-box;
}

/* Dekoratif Görsel - Siyaha Gömülmüş */
#home-process-area .section-decor-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.04;
  /* Çok çok hafif bir doku gibi */
  filter: grayscale(100%) brightness(0.2);
}

#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);
}

.form-control.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.form-group.error {
    color: #dc3545;
}

.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: var(--primary-color);
  -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: var(--primary-color);
  color: #fff;
} */


#home-packages-area {
  background: #0a0a0a;
  /* Derin siyah arka plan */
  padding: 80px 0;
  position: relative;
  margin-bottom: 80px;
}

/* Başlık Alanı */
#home-packages-area .section-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

#home-packages-area .section-text {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}

/* Tablo Genel Yapısı */
#home-packages-area .packages-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  /* Köşe yuvarlamaların çalışması için */
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Tablo Başlıkları (Header) */
#home-packages-area .packages-table .table-header {
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  color: var(--light-gold);
  padding: 25px 15px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(224, 198, 143, 0.2);
  text-align: center;
}

/* Hizmetler Sütunu (İlk sütun) başlığı sola yaslı olsun */
#home-packages-area .packages-table .table-header:first-child {
  text-align: left;
  padding-left: 30px;
}

/* Tablo Satırları */
#home-packages-area .packages-table .table-body .body-row {
  transition: background 0.3s ease;
}

#home-packages-area .packages-table .table-body .body-row:hover {
  background: rgba(224, 198, 143, 0.03);
  /* Hoverda çok hafif altın ışıltısı */
}

#home-packages-area .packages-table .table-body .body-row td {
  padding: 18px 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  vertical-align: middle;
}

#home-packages-area .packages-table .table-body .body-row td:first-child {
  text-align: left;
  padding-left: 30px;
  color: #ffffff;
  font-weight: 500;
  width: 40%;
}

#home-packages-area .packages-table .table-body .body-row td strong {
  color: var(--light-gold);
  font-weight: 600;
}

#home-packages-area .packages-table .table-body .body-row td svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

#home-packages-area .packages-table .table-body .body-row td svg use[xlink\:href="#big-tick"] {
  fill: var(--light-gold);
}

#home-packages-area .packages-table .table-body .body-row td svg use[xlink\:href="#big-cross"] {
  fill: rgba(255, 255, 255, 0.2);
}

#home-packages-area .packages-table .table-body .body-row:hover td svg {
  transform: scale(1.15);
}

#home-packages-area .packages-table .table-body .body-row:last-child td {
  border-bottom: none;
}

#home-packages-area .packages-table .table-header:nth-child(2) {
  border-radius: 0;
}


/* 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-logo {
  max-width: 240px;
  margin: 0 auto 24px;
}

footer .footer-text {
  color: #fff;
  line-height: 1.4;
  font-size: 18px;
  text-align: justify;
  letter-spacing: 1.2px;
}

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;
}

/* Desktop */
@media(max-width: 1440px) {
  #home-banner .banner-title {
    font-size: 35px;
  }

  header .contact-info {
    font-size: 12px;
  }
}

@media(max-width:1300px) {
  main #home-banner .btn-primary {
    padding: 8px 20px;
    font-size: 17px;
  }

  header .nav-link {
    padding: 8px;
  }
}

/* Laptop */
@media(max-width: 1280px) {
  main #home-inclusive-packages .home-inclusive-text .home-inclusive-title {
    font-size: 28px;
  }

  main #home-inclusive-packages .inclusive-packages-list .inclusive-packages-item {
    font-size: 16px;
  }

  main #home-clinic-contact .process-image-text {
    font-size: 18px;
  }
}

@media(max-width: 1200px) {
  header {
    padding: 8px;
  }

  header .header-logo {
    width: 180px;
    margin: 0px auto;
  }
}

@media(max-width: 1100px) {
  .banner-media-container {
    bottom: 3%;
  }
}

@media(max-width:991px) {

  main #home-brands,
  main #home-about-us,
  main #home-before-after,
  main #home-success-stories,
  main #home-process-area,
  main #home-packages-area,
  main #home-faq {
    margin-bottom: 40px;
  } 

  main #home-banner {
    padding-top: 50px;
  }

  main #home-banner .banner-text {
    margin-bottom: 25px;
  }

  main #home-banner .banner-title br {
    display: none;
  }
  #home-brands .rotating-brand-logo {
      gap: 30px
  }
  #home-brands .logos-container {
    gap: 30px;
  }
  #home-brands .logo {
    width: 100px;
  }

  main #home-about-us .about-col {
    margin-bottom: 25px;
  }

  main .graft-calculator {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  main #home-about-us .about-title {
    font-size: 36px;
  }

  main #home-before-after {
    padding: 40px 0;
  }

  main #home-before-after .before-after-text-area{
    margin-bottom: 40px;
  }

  main #home-success-stories .section-title {
    font-size: 28px;
  }

  main #home-success-stories .section-desc {
    font-size: 16px;
  }

  main #home-process-area .section-title-area .section-title {
    font-size: 28px;
  }

  main #home-process-area .process-area .fixed-line,
  main #home-process-area .process-area .mini-icon {
    z-index: -1;
  }

  main .step-form-container {
    padding: 20px;
  }

  main .step-form-header .step-form-title {
    font-size: 28px;
  }

  main #home-packages-area .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
  }

  main #home-packages-area .packages-table .table-header {
    padding: 15px 5px;
    font-size: 16px
  }

  main #home-packages-area .packages-table .table-header:nth-child(2) {
    -webkit-border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    -ms-border-radius: 15px 15px 0 0;
    border-radius: 15px 15px 0 0
  }

  main #home-packages-area .packages-table .table-body .body-row:first-child td:first-child {
    -webkit-border-radius: 20px 0 0;
    -moz-border-radius: 20px 0 0;
    -ms-border-radius: 20px 0 0;
    border-radius: 20px 0 0
  }

  main #home-packages-area .packages-table .table-body .body-row:first-child td:last-child {
    -webkit-border-radius: 0 20px 0 0;
    -moz-border-radius: 0 20px 0 0;
    -ms-border-radius: 0 20px 0 0;
    border-radius: 0 20px 0 0
  }

  main #home-packages-area .packages-table .table-body .body-row:last-child td:first-child {
    -webkit-border-radius: 0 0 0 20px;
    -moz-border-radius: 0 0 0 20px;
    -ms-border-radius: 0 0 0 20px;
    border-radius: 0 0 0 20px
  }

  main #home-packages-area .packages-table .table-body .body-row:last-child td:last-child {
    -webkit-border-radius: 0 0 20px;
    -moz-border-radius: 0 0 20px;
    -ms-border-radius: 0 0 20px;
    border-radius: 0 0 20px
  }

  main #home-packages-area .packages-table .table-body .body-row td {
    font-size: 12px;
    padding: 10px 5px;
    width: 30%
  }

  main #home-packages-area .packages-table .table-body .body-row td:first-child {
    padding: 10px 30px 10px 15px;
    width: 40%
  }

  main #home-packages-area .packages-table .table-body .body-row td svg {
    width: 25px;
    height: 25px
  }

  main #home-faq .section-inner-area {
    padding: 32px 20px;
  }

  main #home-faq .home-faq-title {
    font-size: 24px;
    text-align: center;
  }

  main #home-faq .faq-list .faq-item .item-top .item-title {
    font-size: 18px;
  }

  main #home-faq .faq-list .faq-item .item-bottom .item-text {
    font-size: 16px;
  }

  footer .footer-col {
    margin-bottom: 25px;
  }
  footer .footer-text {
    text-align: start;
  }
}

@media(max-width:768px) {
  #home-process-area .process-area .process-row .flex-row-reverse .process-box {
    margin-bottom: 50px;
  }

  #home-packages-area .packages-table .table-header {
    font-size: 14px;
    padding: 15px 5px;
  }

  #home-packages-area .packages-table .table-body .body-row td {
    font-size: 13px;
    padding: 12px 5px;
  }
}

@media(max-width:575px) {
  #home-brands {
    padding: 20px 0;
  }
 #home-brands .logo {
        width: 110px;
        height: 60px;
        padding: 10px;
    }
    #home-brands .rotating-brand-logo  {
        gap: 20px;
    }
    #home-brands .logos-container {
        gap: 20px;
    }
  .sticky-social-container {
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    top: unset;
    flex-direction: row !important;
    padding: 12px 24px;
  }

  header .header-logo {
    width: 160px;
  }

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

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

  main #home-banner .btn-primary {
    font-size: 16px;
    padding: 10px;
    justify-content: center;
  }

  main #home-banner .btn-secondary {
    font-size: 16px;
    padding: 10px;
    justify-content: center;
  }

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

  main #home-about-us .about-desc {
    line-height: 26px;
    color: var(--dark-blue);
    font-size: 16px;
    margin-bottom: 15px;
  }

  main #home-about-us .about-platforms {
    flex-wrap: wrap;
  }

  main #home-before-after .before-after-text-area .before-after-title {
    font-size: 28px;
  }

  main #home-before-after .before-after-text-area .before-after-desc {
    font-size: 18px;
  }

  main #home-before-after .before-after-slider-area{
    padding: 0 20px;
  }

  main .treatment-methods {
    flex-direction: column;
  }

  main .method-option {
    width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width:450px) {
  main #home-banner .banner-buttons {
    flex-direction: column;
  }
}