* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #1a73e8 #ffffff;
}

/* Primary renk değişkeni */
:root {
    --primary-color: #1a73e8;
    --dark-color: #0a0a23;
    --light-bg: #f4f8ff;
    --dark: #0a0a23;
    --text: #555;
    --bg-light: #f7faff;
    --primary: #1a73e8;
    --text: #555;
    --dark: #0a0a23;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;

    --shadow-soft: 0 20px 40px rgba(0,0,0,.06);
}

body {
    background-color: #ffffff;
    color: var(--dark);
}

::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #ffffff;
}
::-webkit-scrollbar-thumb {
background-color: #1a73e8;
border-radius: 8px;
border: 2px solid #ffffff; /* clean separation */
}
::-webkit-scrollbar-thumb:hover {
background-color: #1558b0; /* slightly darker on hover */
}
::-webkit-scrollbar-thumb:active {
background-color: #0f4aa0;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(26, 115, 232, 0.75);
}

/* Navbar */
.navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    z-index: 1000;
    overflow: visible;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo strong {
    color: var(--primary-color);
    font-size: 18px;
}

.logo small {
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
}

/* Menü Linkleri */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a,
.dropdown button {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    min-width: 170px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
}

.dropdown-menu a:hover {
    background-color: #f5f7fa;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sağ Alan */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language {
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

/* Randevu Butonu */

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.btn-primary:hover {
  background: #000;
}


/* Menü link hover */
.nav-links a:hover,
.dropdown button:hover {
    color: var(--primary-color);
}

/* Dropdown içi link hover */
.dropdown-menu a:hover {
    color: var(--primary-color);
    background-color: #f5f7fa;
}





/* HERO */
.hero {
    position: relative;
    padding: 60px 24px 160px;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 50%,
        #f4f8ff 50%,
        #f4f8ff 100%
    );
}



.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    height: 480px;
    overflow: visible;
}

.hero-text h1 {
    font-size: 64px;              /* ⬅️ BÜYÜTÜLDÜ */
    line-height: 1.15;            /* ⬅️ DAHA FERAH */
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark-color);
    display: block;
}


.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.75;            /* ⬅️ OKUNABİLİRLİK */
    max-width: 520px;
    color: #555;
}

.herocontactbutton{
    margin-top: 26px;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 21px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-image img {
    height: 600px;
    width: auto;
    position: absolute;
    top: 20px;
}

/* CONTACT FORM */
.contact {
    background: transparent;
    padding: 0 24px 80px;
}

.contact-form {
    max-width: 1200px;
    width: 100%;
    margin: -120px auto 0; /* 🔥 FORM YUKARI ÇIKAR */
    background: #ffffff;
    padding: 35px 28px 20px 28px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: end;
    position: relative;
    z-index: 10;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 86px; /* ⬅️ SABİT YÜKSEKLİK */
    width: 100%;
}

.form-group.has-error .error {
    visibility: visible;
}


.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-left: 4px;
}

.form-group span {
    color: red;
}

.form-group input {
    height: 42px;
    width: 100%;
    padding: 0px 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: #f8fafc;
    line-height: 20px;
}

.form-group input,
.phone-input {
    transition: 
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}
.form-group input:focus,
.phone-input:focus-within {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}


.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f8fafc;
}

.country-code {
    padding: 0 10px;
    font-size: 14px;
    border-right: 1px solid #e0e0e0;
}

.phone-input input {
    border: none;
    background: transparent;
    flex: 1;
}

.error {
    min-height: 14px;   /* ⬅️ YERİ HER ZAMAN AYRILIR */
    font-size: 12px;
    color: red;
    visibility: hidden;
}





/* FEATURES */
.features {
    padding: 0px 24px 40px;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item .icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #eef3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
} 


.icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #eef3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    padding: 5px;
}

.icon-box img {
    width: 100%;
    height: 100%;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 25px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text);
}

/* ABOUT */
.about {
    padding: 50px 24px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */
.about-image {
    position: relative;
    height: 100%;
}

.about-image img {
    width: auto;
    height: 110%;
    border-radius: 12px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.1);
}

.circle.small {
    width: 120px;
    height: 120px;
    top: 40px;
    left: -40px;
}

.circle.large {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: 40px;
}

/* CONTENT */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #eef3ff;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content{
    padding-bottom: 40px;    
}

.about-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
    list-style: none;
}

.checklist li::before {
    content: "✔";
    color: var(--primary-color);
    margin-right: 8px;
}

.buttons {
    display: flex;
    gap: 16px;
}

/* BUTTONS */

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}


.stats {
    background: #1a73e8;
    padding: 40px 24px;
    margin-top: -55px;
    position: relative;
    z-index: 3;
}

.stats-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    background: #ffffff;
    width: 100%;
    border-radius: 14px;
    padding:16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 2px;
    background-color: #f4f8ff;
}

.stat-icon img {
    width: 100%;
    height: 100%;
}

.stat-text strong {
    font-size: 26px;
    font-weight: 800;
    color: #0a0a23;
    display: block;
    line-height: 1.1;
}

.stat-text span {
    font-size: 13px;
    color: #777;
}



.testimonials {
    padding: 40px 24px;
}

.testimonials-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* SOL */
.testimonials-left h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.testimonials-left h2 span {
    color: #1a73e8;
}

.testimonials-left p {
    max-width: 380px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

/* SAĞ */
.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* CARD */
.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 32px 0px 32px 36px; /* space for image */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

.testimonial-card-text{
    width: calc(100% - 135px);
}

/* QUOTE */
.testimonial-card .quote {
    position: absolute;
    top: 22px;
    left: 28px;
    font-size: 56px;
    font-weight: 800;
    color: #1a73e8;
    line-height: 1;
    font-family: serif;
}

/* TEXT */
.testimonial-card p {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.testimonial-card strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-top: 6px;
    color: #0a0a23;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
}

/* IMAGE WRAPPER */
.testimonial-img-div {
    position: absolute;
    top: 0;
    right: 0;
    width: 135px;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE */
.testimonial-img-div img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    border-radius: 0 16px 16px 0;
}



.blog {
    background: #f4f8ff;
    padding: 30px 24px 50px;
}

.blog-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.blog-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #1a73e8;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #eef3ff;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

.blog h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.blog-desc {
    max-width: 600px;
    margin: 0 auto 56px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */
.blog-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}

.blog-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #0a0a23;
}

.blog-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.blog-card a {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
}

/* HOVER */
.blog-card:hover {
    transform: translateY(-6px);
}



.before-after {
    background: #ffffff;
    padding: 25px 24px 50px;
}

.before-after-container {
    margin: auto;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #0a0a23;
}

.section-header p {
    color: #666;
    font-size: 15px;
}

.divider {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #0a0a23;
    margin-top: 18px;
}

/* GRID */
.ba-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* CARD */
.ba-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
    width: 100%;
}

.ba-compare {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* ⬅️ KRİTİK */
    max-height: 420px;      /* ⬅️ ÜST SINIR */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    user-select: none;
}


/* IMAGES */
.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.afterimg{
    position: absolute;
    right: 0px;
    width: 100%;
    clip-path: inset(0 0 0 50%);
}




/* LABELS */
.ba-label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 5;
}

.ba-label.before {
    left: 16px;
    background: rgba(0,0,0,0.7);
    color: #fff;
}

.ba-label.after {
    right: 16px;
    background: #1a73e8;
    color: #fff;
}

/* SLIDER */
.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ffffff;
    z-index: 4;
}

.ba-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border: 2px solid #1a73e8;
}

/* TEXT */
.ba-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ba-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* RESPONSIVE */



.treatments {
    background: #f4f8ff; /* ⬅️ ÖNCEKİ MAVİSEL ARKA PLAN */
    padding: 50px 24px;
    margin-top: -70px;
}

.treatments-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* HEADER */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #eef3ff;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.treatments h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #0a0a23;
}

.treatments h2 span {
    color: #1a73e8;
}

.section-desc {
    max-width: 680px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */
.treatment-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.25s ease;
}

.treatment-card:hover {
    transform: translateY(-6px);
}

.treatment-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}



/* IMAGE WRAPPER */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;

}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.image-overlay {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 50%;
    background: rgba(255, 255, 255, 0.92);
    border-bottom-left-radius: 0px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* TEXT */
.image-overlay h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #0a0a23;
}

.image-overlay p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
}

.image-overlay a {
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
}

/* HOVER EFFECT */
.treatment-card:hover .image-overlay {
    transform: translateY(-6px);
}

.contact-section {
    padding: 60px 24px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* MAP */
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 420px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

/* INFO */
.contact-info h2 {
    font-size: 42px;
    margin: 16px 0 28px;
    color: #0a0a23;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-list .icon {
    font-size: 20px;
    color: #1a73e8;
    line-height: 1.4;
}

.contact-list p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* BUTTON */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 14px;
}


.footer {
    background: #0a0a23;
    color: #ffffff;
    padding: 40px 24px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* BRAND */
.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #cfd6e4;
    max-width: 300px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #cfd6e4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1a73e8;
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    color: #cfd6e4;
    margin-bottom: 8px;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #aab3c5;
}

/* Default = Desktop (1200px+) */

/* Small laptops */
@media (max-width: 1280px) {
    .hero-text h1 {
        font-size: 60px;
    }
    .hero-container {
        gap: 40px;
    }


    .stats-container {
        max-width: 1100px;
        gap: 20px;
    }

    .stat-text strong {
        font-size: 24px;
    }

    .treatments h2 {
        font-size: 38px;
    }

    .treatments-grid {
        gap: 28px;
    }

    .image-overlay {
        width: 55%;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .ba-grid {
        gap: 32px;
    }

    .blog h2 {
        font-size: 32px;
    }

    .blog-grid {
        gap: 28px;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .contact-container {
        gap: 48px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-map {
        height: 380px;
    }

    .footer-container {
        gap: 32px;
    }

    .footer-brand p {
        max-width: 260px;
    }
}

/* Tablets landscape */
@media (max-width: 1024px) {
    .nav-container {
        padding: 10px;
    }
    .nav-links div:nth-child(3) {
        display: none;
    }

    .hero{
        padding-top: 30px;
        padding-bottom: 140px;
    }

    .hero-text h1 {
        font-size: 48px;
    }
    .hero-container p{
        font-size: 15px;
    }

    .about{
        padding-bottom: 40px;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-image img{
        height: 105%;
        bottom: 0px;
    }

    .about-content{
        padding-bottom: 20px;    
    }

    .about-content .badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 8px;
    }

    .about-content h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .about-content p{
        font-size: 15px;
        margin-bottom: 5px;
    }

    .checklist {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        gap: 10px;
        margin: 15px 0;
    }
    

    .stats {
        padding: 36px 20px;
        margin-top: -45px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
    }

    .stat-item {
        padding: 14px 20px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
    }

    .stat-text strong {
        font-size: 22px;
    }




    /* Testimonials */ 
    .testimonials-container{
        gap: 40px;
    }

    .testimonial-card {
        padding: 24px 0px 18px 20px;
    }
    .testimonial-card .quote {
        font-size: 48px;
        top: 18px;
        left: 19px;
    }
    .testimonial-card p {
        margin-top: 24px;
        margin-bottom: 8px;
        font-size: 13px;
}

    .treatments {
        padding: 45px 20px;
        margin-top: -55px;
    }

    .treatments h2 {
        font-size: 34px;
    }

    .section-desc {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .image-wrapper {
        height: 240px;
    }

    .image-overlay {
        width: 65%;
        padding: 14px;
    }



    .before-after {
        padding: 20px 20px 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 14px;
    }

    .ba-grid {
        gap: 28px;
    }

    .ba-card {
        padding: 18px;
    }

    .ba-compare {
        max-height: 360px;
    }

    .blog {
        padding: 28px 20px 44px;
    }

    .blog h2 {
        font-size: 30px;
    }

    .blog-desc {
        font-size: 15px;
        margin-bottom: 44px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .blog-card {
        padding: 15px;
    }

    .blog-card img {
        margin-bottom: 16px;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .contact-info h2 {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .contact-map {
        height: 340px;
    }

    .contact-list p {
        font-size: 14px;
    }

    .contact-section {
        padding: 30px 20px;
    }



    .footer {
        padding: 36px 20px 18px;
    }

    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 28px;
    }

    .footer-brand h3 {
        font-size: 20px;
    }
}

/* Tablets & big phones */
@media (max-width: 768px) {
    .nav-container {
        padding: 5px;
    }
    .nav-links a:first-child {
        display: none;
    }

    .logo{
        flex-direction: column;  
        gap: 2px;  
    }
    .logo img{
        width: 30px;
        height: 30px;
    }
    .logo strong{
        font-size: 13px;
    }
    .logo small{
        display: none;
    }

    #nav-button{
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Hero */
    .hero{
        padding-top: 10px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0px;
        height: auto;
        text-align: center;
    }
    .hero-text{
        z-index: 1;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .hero-text p{
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .hero-image img {
        position: relative;
        height: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        top: 0;
    }
    .contact-form {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 30px;
        margin-top: -250px;
        padding: 25px 15px 40px;
        gap: 5px;
    }
    .contact-form button{
        margin-top: 0;
        position: absolute;
        display: block;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        width: calc(100% - 30px);
    }
    .form-group{
        min-height: auto;
    }

    .features-container {
        gap: 25px;
    }

    .about{
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content{
        text-align: center;
    }
    .checklist {
        margin: 15px auto 20px;
        max-width: 380px;
    }
    .buttons {
        justify-content: center;
    }

    .about-image{
        height: 500px;
        order: 2;
    }



    .stats {
        padding: 32px 16px;
        margin-top: -35px;
    }


    .stat-item {
        padding: 14px 18px;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
    }

    .stat-text strong {
        font-size: 20px;
    }

    .stat-text span {
        font-size: 12px;
    }



    /* Testimonials */
    .testimonials {
        padding-top: 20px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-left{
        text-align: center;
        justify-content: center;
    }
    .testimonials-left h2{
        font-size: 38px;
        margin-bottom: 8px;
    }
    .testimonials-left p{
        margin: 0 auto 30px;
    }
    .testimonial-card {
        max-width: 550px;
        margin: 0 auto;
    }

    .treatments {
        padding: 40px 16px;
        margin-top: -40px;
    }

    .section-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .treatments h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .section-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .treatments{
        margin-top: -65px;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .image-wrapper {
        height: 320px;
    }

    .image-overlay {
        width: 70%;
        height: 40%;
    }



    .before-after {
        padding: 20px 16px 40px;
    }

    .section-header {
        margin-bottom: 10px;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 14px;
        margin-top: 6px;
    }

    .divider {
        margin-top: 14px;
    }

    .ba-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ba-card{
        max-width: 600px;
        margin: 0 auto;
    }

    .ba-compare {
        max-height: 320px;
    }

    .ba-label {
        font-size: 11px;
        padding: 5px 12px;
    }

    .ba-knob {
        width: 34px;
        height: 34px;
    }

    .blog {
        padding: 26px 16px 40px;
    }

    .blog-tag {
        font-size: 12px;
        padding: 5px 12px;
    }

    .blog h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .blog-desc {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 600px;
        margin: 0 auto;
    }

    .blog-card h3 {
        font-size: 15px;
    }

    .blog-card p {
        font-size: 13px;
    }

    .contact-section {
        padding: 25px 16px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-map {
        height: 300px;
        order: -1;
    }

    .contact-info {
        text-align: center;
    }

    .contact-list {
        align-items: center;
    }

    .contact-list li {
        align-items: center;
        text-align: left;
        max-width: 420px;
    }

    .contact-btn {
        margin: 0 auto;
    }


    .footer {
        padding: 32px 16px 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-contact p {
        justify-content: center;
    }
}
    
/* Small phones */
@media (max-width: 480px) {
    html, body {
    overflow: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
    display: none;
    }

    /* Navbar */
    .nav-container{
        padding: 3px;
    }
    .logo img{
        width: 25px;
        height: 25px;
    }
    .logo strong{
        font-size: 11px;
    }

    .nav-links div:nth-child(4) {
        display: none;
    }
    .nav-links{
        gap: 5px;
    }
    .dropdown button, .nav-links a{
        font-size: 13px;
    }
    #nav-button{
        padding: 8px 10px;
        font-size: 12px;
    }


    .contact{
        padding-bottom: 40px;
    }
    .country-code{
        display: none;
    }



    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px;
    }


    .about{
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 20px;
    }

    .about-image{
        height: 420px;
    }

    .about-image img{
        width: 100%;
        max-width: 290px;
        height: auto;
    }

    .btn-primary {
        padding: 10px 16px;
        font-size: 14px;
    }

    .btn-outline {
        padding: 10px 16px;
        font-size: 14px;
    }

    
    .stats {
        padding: 28px 14px;
        margin-top: -25px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 95%;
        max-width: 360px;
    }

    .stat-item {
        gap: 20px;
        padding: 12px 28px;
        height: 120px;
        width: 100%;
    }

    .stat-icon {
        width: 75px;
        height: 75px;
        border-radius: 10px;
    }

    .stat-text strong {
        font-size: 22px;
    }

    .stat-text span {
        font-size: 18px;
    }
    /* Testimonials */
    .testimonials-left h2{
        font-size: 32px;
    }

    .testimonial-card {
        padding: 10px 0px 10px 8px;
    }
    .testimonial-img-div{
        width: 110px;
    }
    .testimonial-card-text{
        width: calc(100% - 115px);
    }
    .testimonial-card .quote {
        font-size: 40px;
        top: 5px;
        left: 10px;
    }

    .treatments {
        padding: 32px 14px;
        margin-top: -55px;
    }

    .treatments h2 {
        font-size: 26px;
    }

    .section-desc {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .treatments-grid {
        gap: 16px;
        max-width: 360px;
    }

    .image-wrapper {
        height: 200px;
    }

    .image-overlay {
        width: 70%;
        height: 60%;
        padding: 14px;
        box-shadow: none;
    }

    .image-overlay h3 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .image-overlay p {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .image-overlay a {
        font-size: 12px;
    }

    .before-after {
        padding: 16px 14px 34px;
    }

    .section-header {
        margin-bottom: 0px;
    }

    .section-header h2 {
        font-size: 27px;
    }

    .section-header p {
        font-size: 13px;
    }

    .divider {
        width: 48px;
        height: 2px;
    }

    .ba-card {
        padding: 16px;
    }

    .ba-compare {
        max-height: 260px;
        border-radius: 14px;
    }

    .ba-label {
        top: 12px;
        font-size: 10px;
        padding: 4px 10px;
    }

    .ba-label.before {
        left: 12px;
    }

    .ba-label.after {
        right: 12px;
    }

    .ba-knob {
        width: 30px;
        height: 30px;
    }

    .ba-card h3 {
        font-size: 16px;
    }

    .ba-card p {
        font-size: 13px;
    }

    .blog {
        padding: 24px 14px 36px;
    }

    .blog h2 {
        font-size: 22px;
    }

    .blog-desc {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .blog-card {
        padding: 14px;
    }

    .blog-card img {
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .blog-card h3 {
        font-size: 14px;
    }

    .blog-card p {
        font-size: 12px;
    }

    .blog-card a {
        font-size: 12px;
    }

    .contact-section {
        padding: 16px 14px;
    }

    .contact-info h2 {
        font-size: 26px;
        margin: 12px 0 20px;
    }

    .contact-map {
        height: 240px;
        border-radius: 16px;
    }

    .contact-list {
        gap: 14px;
        margin-bottom: 26px;
    }

    .contact-list .icon {
        font-size: 18px;
    }

    .contact-list p {
        font-size: 13px;
    }

    .contact-btn {
        padding: 12px 20px;
        font-size: 13px;
    }


    .footer {
        padding: 28px 14px 14px;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 15px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 12px;
    }
}
