/* ========================================
   BASE STYLES - Tüm Hizmetlerde Ortak
   Renk değişkenleri theme dosyalarında tanımlanır
   ======================================== */

:root {
    /* Border Radius */
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-100);
    background: var(--bg-100);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 800;
}

h1 span {
    display: block;
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--text-200);
    margin-top: 16px;
}

h2 {
    font-size: clamp(2rem, 2vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-100);
}

p {
    margin: 0 0 16px;
    color: var(--text-200);
    font-size: 1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-100);
    margin-bottom: 12px;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Header */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 59, 102, 0.06);
    padding: 18px 0;
}

.brand {
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.brand:hover {
    text-decoration: none;
}

.brand-logo {
    height: 60px;
    width: auto;
    margin: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-overline {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--text-300);
}

.brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
}

.contact-actions {
    font-size: 0.95rem;
    gap: 12px;
}

.link-text {
    color: var(--text-200);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-text i {
    margin-right: 6px;
    color: var(--accent-100);
}

.link-text:hover {
    color: var(--primary-100);
    text-decoration: none;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-pill:hover {
    transform: translateY(-2px);
    background: #1fb855;
    color: #fff;
    text-decoration: none;
}

.btn-whatsapp {
    background: linear-gradient(180deg, #5df77a 0%, #25d366 45%, #0fa958 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.34);
}

.btn-whatsapp i {
    font-size: 1.15rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(180deg, #69ff85 0%, #2cdb6b 45%, #12ae5b 100%);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

.social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(13, 59, 102, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon-btn i {
    font-size: 1.35rem;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(13, 59, 102, 0.18);
}

.social-instagram {
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border-radius: 14px;
    box-shadow: none;
    overflow: hidden;
}

.social-instagram:hover {
    box-shadow: none;
}

.instagram-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-call {
    background: linear-gradient(135deg, #ff6b6b, #d90429);
}

/* Hero */
.hero-section {
    min-height: 70vh;
    padding: 140px 0 100px;
    background: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    /* Theme-specific gradient - defined in theme CSS files */
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.85;
    }

    50% {
        opacity: 0.75;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


.parallax-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    display: block;
    opacity: 0.35;
}

.shape-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(46, 196, 182, 0.35), rgba(13, 59, 102, 0));
    top: -140px;
    right: -120px;
}

.shape-square {
    width: 220px;
    height: 220px;
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(243, 213, 243, 0.6), rgba(14, 103, 180, 0.08));
    bottom: -90px;
    left: -80px;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 160px solid transparent;
    border-right: 160px solid transparent;
    border-bottom: 260px solid rgba(251, 200, 152, 0.45);
    top: 20%;
    left: 15%;
}

.shape-dots {
    width: 280px;
    height: 280px;
    background-image: radial-gradient(rgba(14, 130, 186, 0.2) 2px, rgba(255, 255, 255, 0) 2px);
    background-size: 20px 20px;
    top: 65%;
    right: 12%;
    border-radius: 40px;
}

.hero-copy {
    max-width: 540px;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-copy h1 {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-200) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 8s linear infinite;
    text-shadow: none;
    letter-spacing: -0.02em;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-copy .eyebrow {
    position: relative;
    display: inline-block;
}

.hero-copy .eyebrow::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #7dd9d1, transparent);
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {

    0%,
    100% {
        width: 60px;
        opacity: 1;
    }

    50% {
        width: 90px;
        opacity: 0.7;
    }
}

.hero-copy p {
    font-size: 1.1rem;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 18px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.badge-item i {
    font-size: 2rem;
    color: var(--accent-200);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-content strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.badge-content span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    margin-top: 24px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-hero-cta:hover::before {
    transform: translateX(100%);
}

.btn-hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: #fff;
    padding-left: 38px;
    padding-right: 38px;
}

.btn-hero-cta:hover i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3) rotate(12deg);
    }
}

.consultation-card {
    position: relative;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(22, 165, 157, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.consultation-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    /* Theme-specific gradient - defined in theme CSS files */
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.consultation-card:hover::before {
    opacity: 0.3;
}

.consultation-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(13, 59, 102, 0.08);
    pointer-events: none;
}

.consultation-card .card-header h2 {
    font-size: clamp(1.6rem, 2.1vw, 2rem);
}

.consultation-card .card-header p {
    margin-bottom: 32px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--accent-100);
    font-size: 1.1rem;
}

.form-control,
textarea.form-control {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(13, 59, 102, 0.12);
    background: var(--bg-200);
    color: var(--text-100);
    font-size: 0.98rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control::placeholder,
textarea.form-control::placeholder {
    color: var(--text-300);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.form-control:focus::placeholder,
textarea.form-control:focus::placeholder {
    transform: translateX(5px);
    opacity: 0.5;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
    padding-left: 18px;
}

.form-control:focus,
textarea.form-control:focus {
    outline: none;
    border-color: var(--primary-100);
    box-shadow: 0 0 0 4px rgba(22, 165, 157, 0.15),
        0 8px 16px rgba(22, 165, 157, 0.1);
    background: #fff;
    transform: translateY(-2px);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-300);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 50%, var(--primary-100) 100%);
    background-size: 200% auto;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
}

.btn-primary:hover::before {
    animation: slideShine 0.8s ease;
}

@keyframes slideShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.btn-primary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--primary-100-rgb), 0.4);
    background-position: right center;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    background: #25D366;
    color: #fff;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.form-footnote {
    font-size: 0.75rem;
    margin-top: 18px;
    color: var(--text-300);
    text-align: center;
}

/* Highlights */
.section-intro {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Doctor Showcase - Oval Layout */
.doctor-showcase {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.doctor-image-wrapper {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.doctor-image {
    width: 480px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(13, 59, 102, 0.2));
    animation: floatDoctor 6s ease-in-out infinite;
}

@keyframes floatDoctor {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.feature-card {
    position: absolute;
    width: 500px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(13, 59, 102, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(22, 165, 157, 0.1);
    display: flex;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 48px rgba(22, 165, 157, 0.2);
    border-color: var(--primary-100);
}

/* Oval positioning around doctor */
.feature-card-1 {
    top: 8%;
    left: 5%;
    animation: floatCard1 7s ease-in-out infinite;
}

.feature-card-2 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    animation: floatCard2 6s ease-in-out infinite;
}

.feature-card-3 {
    bottom: 6%;
    left: 8%;
    animation: floatCard3 8s ease-in-out infinite;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -15px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, 10px);
    }
}

.feature-card-content {
    flex: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    color: #555;
}

.icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    /* Theme-specific background - defined in theme CSS files */
    color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrap {
    /* Theme-specific hover background - defined in theme CSS files */
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* Procedures */
.procedures-section {
    background: linear-gradient(135deg, #fef9f3 0%, #f0f5ff 50%, #fef5f8 100%);
    position: relative;
    overflow: hidden;
}

.procedures-section .eyebrow {
    position: relative;
    display: inline-block;
}

.procedures-section .eyebrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-100), var(--accent-100));
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 1.5s ease-out 0.3s forwards;
}

.procedures-section .row {
    margin-top: 160px;
}

.procedure-card {
    border-radius: var(--radius-lg);
    overflow: visible;
    background: #fff;
    box-shadow: 0 8px 24px rgba(13, 59, 102, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-popular {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 64, 129, 0.95));
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, rgba(22, 165, 157, 0.95), rgba(46, 196, 182, 0.95));
    color: #fff;
    box-shadow: 0 4px 12px rgba(22, 165, 157, 0.3);
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.procedure-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    /* Theme-specific gradient border - defined in theme CSS files */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.procedure-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.procedure-card:hover::before {
    /* Theme-specific - defined in theme CSS files */
}

.card-media {
    width: 100%;
    margin: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.card-media::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    /* Theme-specific gradient overlay - defined in theme CSS files */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.procedure-card:hover .card-media::after {
    /* Theme-specific - defined in theme CSS files */
}

.card-media img {
    width: calc(100% - 80px);
    height: 100%;
    object-fit: cover;
    margin: 0;
    transform: translateY(-80px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.procedure-card:hover .card-media img {
    transform: translateY(-80px) scale(1.08);
}

.procedure-card .card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    margin-top: -80px;
}

.procedure-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
}

.procedure-card:hover h3 {
    letter-spacing: 0.02em;
}

.procedure-card p {
    margin-bottom: 0;
    flex: 1;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    margin-top: 12px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    background-size: 200% auto;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-card:hover::before {
    left: 100%;
}

.btn-card::after {
    content: '→';
    font-size: 1.2em;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-card:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-card:hover::after {
    transform: translateX(4px);
}

/* Timeline */
.timeline-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.timeline-dark {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.95) 0%, rgba(100, 100, 100, 0.65) 100%),
        url('../img/timeline-bg.jpg') center/cover no-repeat;
    /* Theme-specific gradient colors - defined in theme CSS files */
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.timeline-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Theme-specific background - defined in theme CSS files */
    pointer-events: none;
}

.timeline-dark .eyebrow {
    color: var(--accent-200);
}

.timeline-dark h2 {
    color: #fff;
}

.timeline-dark .timeline-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.timeline-dark .timeline-card h3 {
    color: #fff;
}

.timeline-dark .timeline-card p {
    color: rgba(255, 255, 255, 0.9);
}

.timeline-dark .timeline-card .step {
    color: rgba(255, 255, 255, 0.15);
}

.timeline-dark .timeline-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(46, 196, 182, 0.15));
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.timeline-card {
    position: relative;
    padding: 32px 26px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-200);
    overflow: hidden;
}

.timeline-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Theme-specific gradient - defined in theme CSS files */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Theme-specific timeline card hover effects - defined in theme CSS files */

.timeline-card .step {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(13, 59, 102, 0.12);
}

/* Before After */
.beforeafter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.beforeafter-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
}

.beforeafter-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.beforeafter-grid figure:hover img {
    transform: scale(1.05);
}

/* Metrics */
.metrics-card {
    padding: 48px;
    background: linear-gradient(135deg, rgba(14, 103, 180, 0.85), rgba(46, 196, 182, 0.85));
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-100);
}

.metric-item {
    text-align: center;
}

.metric-item strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
}

.metric-item span {
    font-size: 0.95rem;
    opacity: 0.85;
}

.certificate-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificate-row img {
    width: 280px;
    height: auto;
    box-shadow: var(--shadow-200);
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-200);
}

.testimonial-card {
    padding: 38px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-200);
    height: auto;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-200);
}

.testimonial-meta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-meta .name {
    font-weight: 600;
}

.testimonial-meta .tag {
    font-size: 0.85rem;
    color: var(--text-300);
}

.swiper-pagination-bullet {
    background: rgba(13, 59, 102, 0.3);
}

.swiper-pagination-bullet-active {
    background: var(--primary-100);
}

/* FAQ */
.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.accordion-item {
    border-radius: var(--radius-md);
    background: #fff;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-200);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 28px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-100);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-200);
}

.accordion-item.active .accordion-body {
    padding: 0 28px 24px;
}

/* CTA */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(11, 33, 58, 0.92), rgba(100, 100, 100, 0.6)), url('../img/cta-bg.jpg') top;
    /* Theme-specific gradient colors - defined in theme CSS files */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Theme-specific background - defined in theme CSS files */
    pointer-events: none;
}

.cta-card {
    display: flex;
    flex-direction: column;
    gap: 26px;
    border-radius: var(--radius-lg);
    padding: 58px;
    background: rgba(13, 59, 102, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cta-card h2,
.cta-card p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: #0b213a;
    color: #fff;
    padding: 50px 0 40px;
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #fff;
    text-decoration: none;
}

.footer-brand:hover {
    color: #fff;
    text-decoration: none;
}

.footer-logo {
    height: auto;
    width: 90%;
    margin: 0;
}

.footer-brand .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.footer-brand .brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-100);
}

.footer-links i {
    margin-right: 0;
}

.footer-social-logo {
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-meta {
    margin-top: 18px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
}

/* Mobile Header Actions - Hidden on Desktop */
.mobile-header-actions {
    display: none;
}

/* Go Top Button - Hidden on Desktop */
.go-top-btn {
    display: none;
}

.whatsapp-toggle {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-toggle i {
    font-size: 1.3rem;
}

.whatsapp-panel {
    width: 300px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-widget.is-open .whatsapp-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-form h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #25d366;
    font-weight: 600;
}

.whatsapp-form input,
.whatsapp-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.whatsapp-form textarea {
    resize: vertical;
    min-height: 80px;
}

.whatsapp-form button {
    border: none;
    border-radius: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-form button:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-form button:active {
    transform: translateY(0);
}

.whatsapp-form button i {
    font-size: 1.2rem;
}

/* Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animations - Only for fallback when GSAP is not available */
.no-gsap .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.no-gsap .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.no-gsap .slide-up {
    transform: translateY(30px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.no-gsap .slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
@media (max-width: 1366px) {
    .brand-logo {
        height: 50px;
    }

    .header-main {
        padding: 14px 0;
    }

    .hero-section {
        min-height: 80vh;
        padding: 30px 0 30px;
    }

    .hero-copy {
        max-width: 480px;
    }

    .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-copy p {
        font-size: 0.8rem;
    }

    .consultation-card {
        padding: 24px;
    }

    .consultation-card .card-header h2 {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }

    .consultation-card .card-header p {
        font-size: 0.9rem;
    }

    .form-control,
    textarea.form-control {
        padding: 12px 16px 12px 42px;
        font-size: 0.92rem;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group i {
        font-size: 1.1rem;
    }

    .trust-badges {
        gap: 14px;
        margin: 16px 0;
    }

    .badge-item {
        padding: 7px 12px;
        font-size: 0.8rem;
    }

    .badge-item i {
        font-size: 1.1rem;
    }
}

@media (max-width: 1199px) {
    .brand-logo {
        height: auto;
        width: 90%;
    }

    .hero-section {
        padding: 75px 0 45px;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-copy p {
        font-size: 0.95rem;
    }

    .consultation-card {
        padding: 22px;
    }

    .consultation-card .card-header h2 {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .consultation-card .card-header p {
        font-size: 0.85rem;
    }

    .form-control,
    textarea.form-control {
        padding: 10px 14px 10px 38px;
        font-size: 0.88rem;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group i {
        font-size: 1rem;
        left: 12px;
    }

    .trust-badges {
        gap: 12px;
        margin: 14px 0;
    }

    .badge-item {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .badge-item i {
        font-size: 1rem;
    }

    .timeline-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 130px 0 100px;
    }

    .consultation-card {
        padding: 36px;
    }

    .contact-actions {
        gap: 12px;
    }

    .brand-main {
        font-size: 1rem;
    }

    /* Doctor showcase responsive */
    .doctor-showcase {
        min-height: auto;
        flex-direction: column;
        gap: 30px;
    }

    .doctor-image-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        order: -1;
        margin-bottom: 30px;
    }

    .doctor-image {
        width: 350px;
        max-width: 100%;
    }

    .feature-card {
        position: relative !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }


    .cta-card {
        padding: 48px 38px;
    }

    .procedures-section .row {
        margin-top: 100px;
    }

    .card-media img {
        transform: translateY(-70px);
        width: calc(100% - 30px);
    }

    .procedure-card .card-body {
        margin-top: -70px;
    }

    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-panel {
        width: 260px;
    }
}

@media (max-width: 767px) {

    /* Mobile Header Actions - Round buttons next to logo */
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-action-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-action-btn i {
        font-size: 1.3rem;
    }

    .mobile-btn-call {
        background: linear-gradient(135deg, #ff6b6b, #d90429);
        color: #fff;
    }

    .mobile-btn-instagram {
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border-radius: 12px;
        box-shadow: none;
        color: inherit;
        overflow: hidden;
    }

    .mobile-btn-whatsapp {
        background: linear-gradient(180deg, #5df77a 0%, #25d366 45%, #0fa958 100%);
        color: #fff;
    }

    .mobile-btn-instagram:hover,
    .mobile-btn-instagram:active {
        box-shadow: none;
    }

    .mobile-btn-instagram .instagram-logo {
        width: 100%;
        height: 100%;
    }

    .mobile-action-btn:active {
        transform: scale(0.92);
    }

    /* Go Top Button - Bottom right */
    .go-top-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
        color: #fff;
        border: none;
        box-shadow: 0 4px 16px rgba(22, 165, 157, 0.3);
        cursor: pointer;
        z-index: 1000;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .go-top-btn i {
        font-size: 1.5rem;
    }

    .go-top-btn:active {
        transform: scale(0.92);
    }

    /* Hide desktop WhatsApp button on mobile */
    .whatsapp-widget {
        display: none !important;
    }

    /* Mobile Hero Adjustments */
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero-section .row {
        justify-content: center;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-copy p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-copy .eyebrow {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    /* Hide trust badges on mobile */
    .trust-badges {
        display: none;
    }

    .btn-hero-cta {
        margin: 20px auto 0;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Header - Hide phone and WhatsApp, keep only logo */
    .topbar-phone,
    .btn-whatsapp,
    .contact-actions {
        display: none !important;
    }

    .header-main {
        padding: 12px 0;
        text-align: center;
    }

    .brand {
        justify-content: center;
    }

    /* Consultation card mobile optimization */
    .consultation-card {
        padding: 20px;
    }

    .consultation-card .card-header h2 {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .consultation-card .card-header p {
        font-size: 0.85rem;
    }

    .timeline-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline-wrapper {
        grid-template-columns: 1fr;
    }

    .beforeafter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metrics-card {
        padding: 38px 28px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .procedures-section .row {
        margin-top: 90px;
    }

    .card-media img {
        transform: translateY(-60px);
        width: calc(100% - 25px);
    }

    .procedure-card .card-body {
        margin-top: -60px;
    }

    .section-padding {
        padding: 70px 0;
    }

    /* Add padding to last section for go top button */
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {
    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hero-section {
        padding: 50px 0 80px;
    }

    .consultation-card {
        padding: 28px;
    }

    .form-control,
    textarea.form-control {
        padding: 12px 16px 12px 44px;
    }

    .beforeafter-grid {
        grid-template-columns: 1fr;
    }

    .certificate-row img {
        width: 220px;
    }

    .cta-card {
        padding: 32px 28px;
    }

    .procedures-section .row {
        margin-top: 80px;
    }

    .card-media img {
        transform: translateY(-50px);
        width: calc(100% - 20px);
    }

    .procedure-card .card-body {
        margin-top: -50px;
    }

    .section-padding {
        padding: 60px 0;
    }
}