/* ============================================
   HED HEALTH - MAIN STYLESHEET
   Color Scheme: Deep Navy Blue Medical Theme
   Fonts: Urbanist (Headings) + Inter (Body)
   ============================================ */

/* ---------- CSS RESET & ROOT ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-dark: #02073e;
    --primary-blue: #4a7cd2;
    --primary-accent: #5b8de5;
    --secondary-gold: #eaa638;

    /* Background Colors */
    --bg-dark-1: #000a5b;
    --bg-dark-2: #071630;
    --bg-light: #eef3fa;
    --bg-white: #ffffff;
    --bg-card: #f8faff;

    /* Text Colors */
    --text-dark: #02073e;
    --text-muted: #93a0af;
    --text-white: #ffffff;
    --text-light: #c5cdd8;

    /* Borders & Shadows */
    --border-light: rgba(74, 124, 210, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 10, 91, 0.08);
    --shadow-hover: 0 15px 50px rgba(0, 10, 91, 0.15);

    /* Typography Scale */
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 100px 0;
    --gap: 30px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- HEADER / NAVBAR ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 45px;
    height: 55px;
    position: relative;
}

.logo-icon .logo-h {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    color: var(--text-white);
    transition: var(--transition);
}

.header.scrolled .logo-icon .logo-h {
    color: var(--primary-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.header.scrolled .logo-text .brand-name {
    color: var(--text-muted);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

.header.scrolled .nav-menu li a {
    color: var(--text-dark);
}

.nav-menu li a:hover {
    color: var(--primary-blue);
}

/* Dropdown Arrow */
.nav-menu li.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 2px;
    transition: var(--transition-fast);
}

.nav-menu li.has-dropdown:hover > a::after {
    transform: rotate(-135deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li a {
    color: var(--text-dark) !important;
    padding: 10px 24px;
    font-size: 13.5px;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-blue) !important;
}

/* Language Button */
.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary-blue);
    color: var(--text-white) !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 10px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--primary-accent);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 120px 0 60px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    border-color: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ---------- INFO BAR ---------- */
.info-bar {
    background: var(--primary-dark);
    padding: 35px 0;
    position: relative;
    z-index: 5;
    border-top: 3px solid var(--primary-blue);
}

.info-bar .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-right: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--primary-blue);
    stroke-width: 1.5;
}

.info-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-image-wrapper:first-child {
    margin-top: 40px;
}

.about-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-image-wrapper:last-child img {
    height: 350px;
}

.about-content {
    padding: 20px 0;
}

.section-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-dark);
    color: var(--text-white);
    border: 2px solid var(--primary-dark);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 124, 210, 0.3);
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    display: block;
    margin-bottom: 12px;
}

.section-header .section-title {
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-blue);
    fill: none;
    stroke-width: 1.2;
}

.service-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--text-muted);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 18px;
    transition: var(--transition);
}

.service-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-white);
    transform: rotate(45deg);
}

/* ---------- TREATMENTS SECTION ---------- */
.treatments-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.treatments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.treatment-card {
    flex: 0 0 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 380px;
    cursor: pointer;
    transition: var(--transition);
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.treatment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.treatment-card:hover img {
    transform: scale(1.05);
}

.treatment-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.0));
}

.treatment-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.treatment-card:hover .treatment-label {
    background: var(--primary-blue);
    color: var(--text-white);
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-dark);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-blue:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 124, 210, 0.3);
}

.text-center {
    text-align: center;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-accent), var(--primary-blue));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.85;
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--primary-blue);
    opacity: 1;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-blue);
}

.footer-contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.footer-contact-item span {
    font-size: 13.5px;
    color: var(--text-light);
    opacity: 0.85;
}

.footer-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: var(--text-white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    transition: var(--transition);
}

.footer-lang-btn:hover {
    background: var(--primary-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.6;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(74, 124, 210, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---------- WHATSAPP FLOATING ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        padding: 100px 30px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li a {
        color: var(--text-dark) !important;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 15px;
    }

    .lang-btn {
        margin-left: 0;
        margin-top: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
    }

    .nav-menu li.has-dropdown.open .dropdown-menu {
        display: block;
    }

    /* Mobile Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Treatments */
    .treatments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Info Bar */
    .info-bar .container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 30px;
    }

    .info-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Treatments */
    .treatments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

    .treatment-card {
    flex: 0 0 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 380px;
    cursor: pointer;
    transition: var(--transition);
}

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .treatments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

    .treatment-card {
    flex: 0 0 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 380px;
    cursor: pointer;
    transition: var(--transition);
}

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper:first-child {
        margin-top: 0;
    }

    .about-image-wrapper img,
    .about-image-wrapper:last-child img {
        height: 250px;
    }
}

.consultation-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    padding:12px 22px;
    border-radius:30px;
    white-space:nowrap;
    font-size:14px;
}
.consultation-btn{
    position:relative;
    overflow:hidden;
    transition:all 0.35s ease;
}

.consultation-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.25);
    transform:skewX(-25deg);
    transition:0.6s;
}

.consultation-btn:hover::before{
    left:120%;
}

.consultation-btn:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 12px 30px rgba(0,123,255,0.25);
}

@media (max-width:768px){

    .consultation-btn{
        min-width:unset;
        width:100%;
        padding:14px 18px;
        font-size:15px;
        margin-top:10px;
        text-align:center;
    }

    .nav-menu{
        gap:10px;
    }
}
    
/* FREE CONSULTATION MENU BUTTON FIX */
.nav-consultation-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 18px !important;
    border: 1px solid #4a7cd2 !important;
    border-radius: 30px;
    background: #ffffff !important;
    color: #02073e !important;
    font-weight: 700 !important;
    white-space: nowrap;
}

.nav-consultation-btn:hover {
    background: #4a7cd2 !important;
    color: #ffffff !important;
}

/* PAGE TOP FIX */
.page-banner {
    padding-top: 160px !important;
}

/* MOBILE MENU FIX */
@media (max-width: 992px) {
    .nav-consultation-btn {
        width: 100%;
        margin-top: 10px;
        border-bottom: none !important;
        text-align: center;
    }

    .page-banner {
        padding-top: 130px !important;
    }
}
/* Tüm içerik yazıları */
p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}

/* CALL TO ACTION ve buton alanlarını hariç tut */
.call-to-action p,
.cta p,
.article-cta p,
.cta-content p,
.hero-content p,
.footer p {
    text-align: center !important;

}
.article-cta .btn.btn-primary {
    border: 2px solid #0ea5e9 !important;
    color: #000 !important;
    background: transparent !important;
}

.article-cta .btn.btn-primary:hover {
    background: #0ea5e9 !important;
    color: #000 !important;
}
@media (max-width: 768px) {

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-menu {
        flex-direction: column;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

}
/* FREE CONSULTATION PAGE FIX */

.page-banner {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-banner-title {
    color: #fff;
    font-size: 52px;
    margin-bottom: 15px;
}

.breadcrumb {
    color: #fff;
    font-size: 15px;
}

.breadcrumb a,
.breadcrumb span {
    color: #fff;
}

.consultation-custom-section {
    padding: 90px 0;
    background: #eef3fa;
}

.consultation-header-custom {
    text-align: center;
    margin-bottom: 40px;
}

.consultation-header-custom h2 {
    font-size: 38px;
}

.consultation-form-custom {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.custom-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.custom-form-group {
    display: flex;
    flex-direction: column;
}

.custom-form-group.full-width {
    grid-column: 1 / -1;
}

.custom-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-form-group input,
.custom-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8e0ea;
    border-radius: 8px;
    font-family: inherit;
}

.custom-form-submit {
    width: 100%;
    padding: 16px;
    background: #4a7cd2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.cta {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.cta h2,
.cta p {
    color: #000000 !important;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 320px;
    }

    .page-banner-title {
        font-size: 34px;
    }

    .custom-form-grid {
        grid-template-columns: 1fr;
    }

    .consultation-form-custom {
        padding: 25px;
    }
}
/* SLIDER DARK OVERLAY REMOVE FIX */

.hero::before,
.hero::after,
.hero-overlay,
.page-banner::before,
.page-banner::after,
.swiper-slide::before,
.swiper-slide::after,
.slide-overlay,
.banner-overlay {
    background: transparent !important;
    opacity: 0 !important;
}

/* IMAGE BRIGHTNESS FIX */

.hero-bg img,
.hero img,
.page-banner img,
.swiper-slide img,
.slide img {
    filter: none !important;
    opacity: 1 !important;
}

