.header {
  position: sticky;
  left: 0;
  display: flex;
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center center;
  animation: scaleIn 0.5s ease forwards;
  animation-delay: 0.2s;
}

.wrap {
  position: absolute;
  width: 70%;
  height: 70px;
  top: 10px;
  gap: 1rem;
  padding: 20px 10px;
  border-radius: 50px;
  background-color: var(--color-black-overlay-strong);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}

.wrap.scrolled {
  background-color: var(--color-black-overlay-stronger);
  top: 0;
  width: 100% !important;
  border-radius: 0 !important;
  transition: all 0.4s ease-in-out;
}

.logo-link {
  font-size: var(--font-size-header-small);
  color: var(--color-primary);
  font-family: var(--font-logo);
  text-decoration: none;
  margin-left: 25px;
}

.navbar {
  display: flex;
  transition: 0.3s ease;
}

nav a {
  position: relative;
  font-size: 1rem;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  margin-right: 1.5rem;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 25px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  box-shadow: none;
  opacity: 0.9;
}

nav a:hover {
  color: var(--color-primary-hover);
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  box-shadow: 0 0 10px var(--color-primary);
}

#hamburger {
  display: none;
  z-index: 102;
}

.hero {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: var(--color-black-overlay-light);
}

.hero-wrap {
  padding: 2rem 3rem;
  border-radius: 10px;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
  opacity: 1;
}

.hero h1 {
  font-size: var(--font-size-header-large);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
  transition: 0.5s ease all;
}

.hero h1:hover {
  transform: scale(1.05) translateY(-5%);
}

.hero p {
  font-size: var(--font-size-body-large);
  margin: 25px 0;
  margin-bottom: 2rem;
  color: var(--color-white-muted);
  transition: 0.5s ease all;
}

.cta-btn-hero {
  display: inline-block;
  width: 25%;
  padding: 14px 32px;
  background-color: rgba(219, 0, 0, 0.7);
  text-align: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s ease;
  text-transform: capitalize;
  font-size: var(--font-size-body-large);
}
.cta-btn-hero:hover {
  transform: scale(1.1);
}

/* Stats */
.stats {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 20px;

  background: linear-gradient(
    135deg,
    rgba(50, 0, 0, 0.8) 0%,
    rgba(120, 10, 10, 0.6) 50%,
    rgba(80, 0, 0, 0.9) 100%
  );
  overflow: hidden;
  isolation: isolate;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
}

.stat-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: auto;
  height: inherit;
  position: relative;
  z-index: 2;
}

.stat-main .card {
  min-width: 150px;
  text-align: center;
  color: #fff5f5;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-main .card:hover {
  transform: scale(1.05);
}

.stat-main .card > h3 {
  font-size: var(--font-size-header-large);
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.stat-main .card > p {
  font-weight: 600;
  text-shadow: 2px 2px 3px #000;
  letter-spacing: 0.5px;
}

/* SCANLINES VE GLOW KALACAK */
.stats::before,
.stats::after,
.stats .parallax,
.stats .particles {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stats::before {
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 0, 0, 0.05),
    rgba(255, 0, 0, 0.05) 2px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.15;
}

.stats::after {
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 0, 0, 0.2),
    transparent 50%
  );
  opacity: 0.5;
}

/* 🫧 Floating Particles */
.stats .particles {
  background-image: radial-gradient(rgba(255, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

/* 🔦 Mouse Parallax Glow */
.stats .parallax {
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 0, 0, 0.1),
    transparent 40%
  );
  transition: background-position 0.1s ease;
  z-index: 1;
}

.divider {
  /* width: 1; */
  border-left: 1px solid var(--color-text-muted-light);
  height: 50%;
  background-color: var(--color-text-muted-light);
  margin: 0 15px;
  flex-shrink: 0;
  flex-grow: 0;
}

.about {
  min-height: 100vh;
  height: auto;
  width: auto;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: var(--color-black-overlay-light);
}

.about-in {
  margin-top: 25px;
  padding: 5px;
  width: 70%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  height: inherit;
  z-index: 2;
  border-radius: 25px;
}

.about-in * {
  background: transparent;
}

.about-in h3 {
  text-align: center;
  font-family: var(--font-primary);
  margin-bottom: 5%;
  font-size: var(--font-size-header-large);
  transition: 0.7s ease all;
}

.about-in p {
  display: block;
  font-size: var(--font-size-body-large);
}

.about-in p span {
  font-weight: 600;
}

.getAppointment {
  border-radius: 12px;
  text-align: center;
  color: #eee;
  font-size: 1.1rem;
  width: 200px;
  padding: 15px;
  background-color: rgba(219, 0, 0, 0.7);
  transition: transform 0.3s ease;
  margin-top: 25px;
}

.getAppointment:hover {
  transform: scale(1.05);
}

.cta-text {
  color: var(--color-white-muted);
  text-transform: lowercase;
  font-style: italic;
  font-size: var(--font-size-body-medium);
  pointer-events: none;
}

.cta-text span {
  font-weight: 600;
  color: var(--color-white-muted);
  text-decoration: underline;
}

.services {
  padding: 80px 20px;
  text-align: center;
  color: var(--color-white);
  min-height: 100vh;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.services-wrap {
  width: 75%;
  flex-wrap: wrap;
}

.services-title {
  font-size: 2.5rem;
  padding-bottom: 50px;
  font-family: var(--font-secondary);
  color: var(--color-white);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.service-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 0, 0, 0.05);
  border-radius: 16px;
  padding: 30px;
  width: 340px;
  height: 300px;
  justify-content: flex-start;
  transition: 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 30px rgba(219, 0, 0, 0.65);
  border-color: rgba(219, 0, 0, 0.8);
}

.service-card h3 {
  color: #f2f2f2;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.service-card p {
  font-size: var(--font-size-body-medium);
  color: var(--color-text-muted-light);
  line-height: 1.5;
  flex-grow: 1;
}

.div-h {
  width: 75%;
  height: 2.5px;
  background-color: var(--color-primary);
  margin: 10px auto 15px auto;
  border-radius: 20px;
  z-index: 5;
  overflow: visible;
}

.references-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  padding-top: 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.references-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: none;
  margin-top: 2%;
}

.references-cards {
  height: 80vh;
  display: flex;
  overflow-x: hidden;
  flex-wrap: nowrap;
  gap: 2.5rem;
  touch-action: pan-x;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.references-cards:active {
  cursor: grabbing;
}

.references-title {
  margin-top: 8%;
  font-size: var(--font-size-header-large);
  color: #f4f4f4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.reference-card {
  text-align: center;
  width: 500px;
  height: 550px;
  min-height: 450px;
  padding: 2rem 1.5rem;
  background-color: var(--color-black-overlay-medium);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  border-radius: 25px 10px;
  border: 2px solid rgba(219, 0, 0, 0.8);
  transition: 0.3s ease border-color, 0.4s ease transform, 0.4s ease box-shadow;
  position: relative;
  box-shadow: none;
  opacity: 0.9;
  perspective: 1000px;
  z-index: 1;
  margin: 2rem auto;
}

.reference-card:hover {
  border: 2px solid var(--color-primary);
  z-index: 999;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px 5px rgba(255, 92, 92, 0.6);
  transform: scale(1.03) rotateY(3deg) translateZ(30px);
  animation: glowPulse 1.2s infinite;
}

.reference-card h3 {
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.reference-card p {
  text-align: justify;
  margin: 1rem 0 3rem;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.3px;
  color: var(--color-white-muted-light);
}

.reference-card h5 {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: var(--font-primary);
}

/* References Slider Blur */
.slider-blur {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.slider-blur.left {
  left: 0;
  background: linear-gradient(to right, rgba(15, 15, 15, 0.7), transparent);
}

.slider-blur.right {
  right: 0;
  background: linear-gradient(to left, rgba(15, 15, 15, 0.7), transparent);
}

/* Contact Us */
.contact-wrap {
  width: 100%;
  display: flex;
  height: 40vh;
  justify-content: center;
  align-items: center;
  margin: 10% auto;
}

.contact-wrapper {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-white);
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 40px 80px var(--color-black-overlay-medium);
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

.section-title {
  font-size: var(--font-size-header-large);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  animation: fadeInUp 1.2s ease both;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted-light);
  margin: 36px auto;
  animation: fadeInUp 1.4s ease both;
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 80px;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 6px 38px rgba(18, 140, 126, 0.5);
  overflow: hidden;
  isolation: isolate;
}

.whatsapp-btn .shine {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );
  animation: shine 3s infinite;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.2) 0%,
    transparent 70%
  );
  animation: pulse 2s infinite;
  border-radius: 50%;
  z-index: -1;
}

.whatsapp-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.btn-icon i {
  font-size: 1.6rem;
  color: var(--color-white);
}

.contact-cta h2 {
  margin-bottom: 15px;
  font-size: var(--font-header-medium);
}

.contact-cta p {
  color: var(--color-text-muted-light);
  text-transform: lowercase;
  font-style: italic;
  font-size: var(--font-size-footer-small);
}

/* Mobile Bottom */
.contact-we {
  position: sticky;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 60px;
  width: 100%;
  display: none;
  transition: 0.5s ease all;
}

.whatsapp {
  font-size: var(--font-size-header-large);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.conversion-footer {
  background-color: var(--color-black-overlay-medium);
  padding: 60px 20px 30px;
  text-align: center;
  color: var(--color-white);
}

.footer-wrapper {
  max-width: 800px;
  margin: auto;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #ff3b3f;
  margin-bottom: 15px;
}

.cta-subtext {
  font-size: 16px;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #b80000;
  scale: 1.05;
}

.trust-text {
  font-size: 14px;
  color: #94a3b8;
  margin: 40px 0 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icons a:hover img {
  opacity: 1;
}

.footer-bottom {
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

@media screen and (max-width: 1100px) {
  .wrap {
    padding: 15px 5px;
  }

  .logo {
    font-size: var(--font-size-header-small);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  #hamburger {
    display: inline-flex;
  }

  .wrap-borof {
    border-radius: 0;
  }

  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 30px 30px;
  }

  .navbar.show {
    max-height: 300px;
  }

  .navbar a {
    margin: 1.2rem 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0;
  }

  .navbar.show a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .navbar.show a:nth-child(2) {
    transition-delay: 0.2s;
  }
  .navbar.show a:nth-child(3) {
    transition-delay: 0.3s;
  }
  .navbar.show a:nth-child(4) {
    transition-delay: 0.4s;
  }

  .navbar.show a {
    opacity: 1;
    transform: translateY(0);
    transition: 0.3s ease;
  }

  .hero h1 {
    font-size: var(--font-size-1100px-h2);
  }

  .hero p {
    font-size: var(--font-size-1100px-p);
  }

  .stat-main {
    gap: 20px;
  }

  .stat-main .card {
    min-width: 150px;
  }

  .stat-main .card > h3 {
    font-size: var(--font-size-1100px-h2);
    margin-bottom: 15px;
  }
  .stat-main .card > p {
    font-size: var(--font-size-1100px-p);
  }

  .divider {
    border-left: 0.5px solid #ddd;
  }

  .whatsapp-btn {
    animation: none !important;
    box-shadow: none;
  }
}

@media screen and (max-width: 900px) {
  .hero h1 {
    font-size: var(--font-size-900px-h1);
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: var(--font-size-900px-p);
    margin-bottom: 1.25rem;
  }

  .cta-btn-hero {
    font-size: var(--font-size-900px-cta);
    width: 30%;
  }

  .getAppointment {
    margin-bottom: 8%;
  }

  .stat-main {
    gap: 20px;
  }

  .stat-main .card {
    min-width: 150px;
  }

  .stat-main .card > h3 {
    font-size: var(--font-size-900px-h3);
    margin-bottom: 10px;
  }
  .stat-main .card > p {
    font-size: var(--font-size-900px-p);
  }
}

@media screen and (max-width: 768px) {
  .stats {
    width: 100%;
    height: 250px;
  }

  .stat-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    row-gap: 5px;
  }

  .stat-main .card {
    flex: unset;
    width: 100%; /* grid hücresine tam otursun */
  }

  .divider-plus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .divider-plus::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4); /* İsteğe bağlı renk */
    transform: translateY(-50%);
  }

  /* Dikey çizgi */
  .divider-plus::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 50%;
    width: 2px;
    height: 90%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-50%);
  }

  .stat-main .card > h3 {
    font-size: var(--font-size-768px-h3);
  }

  .stat-main .card > p {
    font-size: var(--font-size-768px-p);
  }

  .divider {
    display: none;
  }

  .getAppointment {
    margin-bottom: 10%;
  }
}

@media screen and (max-width: 480px) {
  .logo-link {
    font-size: var(--font-size-480px-logo);
  }
  .wrap {
    padding: 5px 5px;
  }

  .wrap-borof {
    border-radius: 15px 15px 0 0;
  }

  .hero h1 {
    font-size: var(--font-size-480px-h1);
  }

  .hero p {
    font-size: var(--font-size-480px-p);
  }

  .cta-btn-hero {
    width: 70%;
  }

  .stats {
    width: 100%;
    height: 250px;
  }

  .stat-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    row-gap: 5px;
  }

  .stat-main .card {
    flex: unset;
    width: 100%; /* grid hücresine tam otursun */
  }

  .divider-plus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .divider-plus::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4); /* İsteğe bağlı renk */
    transform: translateY(-50%);
  }

  /* Dikey çizgi */
  .divider-plus::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 50%;
    width: 2px;
    height: 90%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-50%);
  }

  .stat-main .card > h3 {
    font-size: var(--font-size-480px-h3);
  }

  .stat-main .card > p {
    font-size: var(--font-size-480px-p);
  }

  .divider {
    display: none;
  }

  .about {
    padding-top: 25%;
  }

  .getAppointment {
    margin-bottom: 10%;
  }

  .service-cards {
    gap: 1rem;
  }

  .service-card {
    height: 300px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: var(--font-size-480px-p);
  }

  .references-wrap h3 {
    font-size: var(--font-size-480px-h3);
  }

  .references-wrap h3::after {
    content: "(karta basılı tutup durdurabilirsiniz)";
    display: block;
    font-size: var(--font-size-480px-p);
    text-transform: lowercase;
    letter-spacing: 0;
    color: var(--color-white-muted);
  }

  .references-cards {
    touch-action: auto;
  }

  .reference-card {
    width: 370px !important;
    height: auto !important;
  }

  .reference-card h3 {
    font-size: var(--font-size-480px-h3-2);
  }

  .reference-card p {
    font-size: var(--font-size-480px-p-2);
  }

  .slider-blur {
    display: none;
  }

  .section-title {
    font-size: var(--font-size-480px-h3);
  }

  .section-subtitle {
    font-size: var(--font-size-480px-h2);
  }

  .cta-heading {
    font-size: 1.5rem;
  }

  .cta-subtext {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }

  .footer-bottom span {
    display: block;
    font-size: 0.9rem;
  }

  .whatsapp-btn {
    font-size: var(--font-size-480px-h2);
  }
}

@media screen and (max-width: 360px) {
  .logo-link {
    font-size: var(--font-size-360px-logo);
  }

  nav a {
    font-size:var(--font-size-360px-nav-a);
  }

  .hero-wrap h1 {
    font-size:var(--font-size-360px-h1);
  }

  .hero-wrap p {
    font-size: var(--font-size-360px-p);
  }

  .cta-btn-hero {
    width: 80%;
    padding: 10px;
    font-size:var(--font-size-360px-hero);
    animation: none !important;
  }

  .about h3 {
    font-size: var(--font-size-360px-h3);
  }
  .about p {
    font-size: 0.9rem;
  }
  .getAppointment {
    animation: none !important;
    padding: 10px;
  }

  .services-title {
    font-size: var(--font-size-360px-h3);
  }

  .service-card {
    height: auto;
    width: 250px !important;
  }

  .section-title {
    font-size: var(--font-size-360px-h1);
  }

  .contact-we {
    display: none;
  }
}
