        /* ===== TEXT LOGO ===== */
.text-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.doctor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;     /* width feel zyada */
    font-weight: 700;
    color: #171717;
    letter-spacing: 0.5px;
    white-space: nowrap;  /* ek line me hi rahe */
}

.doctor-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;   /* height kam */
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #E54C7A;
    text-transform: uppercase;
}

/* Premium CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE5F0 0%, #FFF5F9 50%, #FFE5F0 100%);
}

/* Animated Background Shapes */
.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FFB6C8 0%, #FFA0B8 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFA0B8 0%, #FFB6C8 100%);
    bottom: -80px;
    right: -80px;
    animation-delay: 5s;
}

.cta-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FFB6C8 0%, #FFA0B8 100%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Premium Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(255, 182, 200, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 182, 200, 0.3);
}

.cta-badge i {
    font-size: 1.25rem;
    color: #FFB6C8;
}

.cta-badge span {
    color: #404040;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Headings */
.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #171717;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: #525252;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Premium Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Premium Button Base */
.cta-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2.5rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 260px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-btn:hover::before {
    opacity: 1;
}

/* Primary Button - White with Pink Text */
.cta-btn-primary {
    background: #FFFFFF;
    border: 3px solid #FFB6C8;
}

.cta-btn-primary .btn-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB6C8 0%, #FFA0B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 182, 200, 0.4);
}

.cta-btn-primary .btn-icon i {
    color: #FFFFFF;
    font-size: 1.5rem;
}

.cta-btn-primary .btn-label {
    color: #737373;
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-btn-primary .btn-text {
    color: #171717;
    font-size: 1.125rem;
    font-weight: 700;
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 45px rgba(255, 182, 200, 0.35);
    border-color: #FFA0B8;
}

/* Secondary Button - Pink Gradient */
.cta-btn-secondary {
    background: linear-gradient(135deg, #FFB6C8 0%, #FFA0B8 100%);
    border: 3px solid transparent;
}

.cta-btn-secondary .btn-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary .btn-icon i {
    color: #FFFFFF;
    font-size: 1.5rem;
}

.cta-btn-secondary .btn-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-btn-secondary .btn-text {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 700;
}

.cta-btn-secondary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 45px rgba(255, 182, 200, 0.5);
}

/* Button Content */
.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

/* CTA Features */
.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 182, 200, 0.2);
}

.cta-feature i {
    color: #FFB6C8;
    font-size: 1.25rem;
}

.cta-feature span {
    color: #404040;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        min-width: 100%;
        padding: 1.25rem 2rem;
    }

    .cta-btn .btn-icon {
        width: 50px;
        height: 50px;
    }

    .cta-btn .btn-icon i {
        font-size: 1.25rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-feature {
        width: 100%;
        justify-content: center;
    }

    .cta-shape-1,
    .cta-shape-2,
    .cta-shape-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .cta-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .cta-badge i {
        font-size: 1rem;
    }
}
