/* ============================================
   Dr. Sudha Kashmiri - Premium Medical Website
   CSS Stylesheet
   ============================================ */

/* ========== CSS Variables ========== */
:root {
    --baby-pink: #f46a9b;
    --baby-pink-light: #F9E5E5;
    --white: #FFFFFF;
    --light-beige: #F5F5DC;
    --muted-grey: #D3D3D3;
    --dark-grey: #666666;
    --text-dark: #333333;
    --text-light: #777777;
    --transition: all 0.3s ease;
}

/* ========== Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========== Header & Navigation ========== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-container img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-placeholder {
    width: 200px;
    height: 60px;
    background: var(--baby-pink-light);
    border: 2px dashed var(--baby-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #f46a9b;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--baby-pink);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-icon {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(135deg, var(--baby-pink-light) 0%, var(--white) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--baby-pink);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.hero-text h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-beige);
    border: 2px dashed var(--muted-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: 15px;
    font-size: 1rem;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    margin: 0.5rem;
}

.btn-primary {
    background: #fd86a6;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(244, 194, 194, 0.4);
}

.btn-primary:hover {
    background: #E8A8A8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 194, 194, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--baby-pink);
    border: 2px solid var(--baby-pink);
}

.btn-secondary:hover {
    background: var(--baby-pink);
    color: var(--white);
}

.btn-call,
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-call {
    right: 20px;
    background: #25D366;
}

.btn-whatsapp {
    right: 20px;
    background: #25D366;
    bottom: 90px;
}

.btn-call:hover,
.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}



/* ========== Sections ========== */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--baby-pink);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== About Section ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.about-image {
    animation: fadeInRight 1s ease;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========== Achievements Section ========== */
.achievements {
    background: var(--baby-pink-light);
    padding: 5rem 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.achievement-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.achievement-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.achievement-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.achievement-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.achievement-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.achievement-nav-btn {
    background: var(--baby-pink);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.achievement-nav-btn:hover {
    background: #E8A8A8;
    transform: scale(1.1);
}

/* ========== Services Section ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid #06bbde;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 194, 194, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #f16a9c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #101415;
    font-weight: bold;
}

/* Service Icon Characters */
.icon-gynecology::before { content: 'G'; }
.icon-family::before { content: 'F'; }
.icon-pregnancy::before { content: 'P'; }
.icon-preventive::before { content: 'V'; }
.icon-consultation::before { content: 'C'; }
.icon-women::before { content: 'W'; }
.icon-checkup::before { content: '✓'; }
.icon-postnatal::before { content: 'N'; }
.icon-planning::before { content: 'P'; }
.icon-menopause::before { content: 'M'; }
.icon-vaccination::before { content: 'V'; }
.icon-hormonal::before { content: 'H'; }
.icon-wellness::before { content: 'W'; }

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ========== Clinics Section ========== */
.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.clinic-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.clinic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.clinic-name {
    color: var(--baby-pink);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.clinic-info {
    margin: 1rem 0;
}

.clinic-info strong {
    color: var(--text-dark);
}

.clinic-timing {
    background: var(--baby-pink-light);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* ========== Contact Section ========== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--muted-grey);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--baby-pink);
    box-shadow: 0 0 0 3px rgba(244, 194, 194, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: var(--baby-pink-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--baby-pink-light);
    border-radius: 50%;
    color: var(--baby-pink);
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.icon-phone::before { content: 'P'; }
.icon-email::before { content: '@'; }
.icon-whatsapp::before { content: 'W'; }
.icon-instagram::before { content: 'I'; }
.icon-youtube::before { content: 'Y'; }

.contact-item-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-light);
}

.contact-item-content a:hover {
    color: var(--baby-pink);
}

/* ========== Footer ========== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* LEFT SIDE - Contact & Social */
.footer-left {
    text-align: left;
}

.footer-left h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.footer-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 194, 194, 0.2);
    border-radius: 50%;
    color: var(--baby-pink);
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin: 0.3rem 0;
    color: var(--muted-grey);
}

.footer-contact-item a {
    color: var(--muted-grey);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--baby-pink);
}

/* RIGHT SIDE - Clinics & Branding */
.footer-right {
    text-align: right;
}

.footer-clinics {
    margin-bottom: 2.5rem;
}

.footer-right h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: right;
}

.footer-clinic-item {
    margin-bottom: 2rem;
    text-align: right;
}

.footer-clinic-item h4 {
    color: var(--baby-pink);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-clinic-item p {
    color: var(--muted-grey);
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

/* BRAND BLOCK - Logo and Name on Same Line */
.footer-brand {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    text-align: right;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand-text {
    flex: 1;
    text-align: right;
}

.footer-brand-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-brand-text p {
    color: var(--muted-grey);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Credit Line */
.footer-credits {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--muted-grey);
    font-size: 0.85rem;
}

.footer-credits a {
    color: var(--muted-grey);
    transition: var(--transition);
}

.footer-credits a:hover {
    color: var(--baby-pink);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .clinics-grid {
        grid-template-columns: 1fr;
    }

    .btn-call,
    .btn-whatsapp {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        bottom: 80px;
    }

    /* Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-left,
    .footer-right {
        text-align: left;
    }

    .footer-right h3,
    .footer-clinic-item,
    .footer-brand-content {
        text-align: left;
    }

    .footer-brand-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-brand-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo-placeholder {
        width: 150px;
        height: 50px;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 3rem 1rem 1rem;
    }

    .footer-main {
        gap: 1.5rem;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-brand-text h4 {
        font-size: 1rem;
    }

    .footer-brand-text p {
        font-size: 0.85rem;
    }
}
.footer-left-brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.footer-left-logo{
    height:120px;
    width:auto;
    border-radius:6px;
    object-fit:contain;
}

.footer-left-name{
    margin:0;
    font-weight:600;
}

.footer-left-degrees{
    margin:2px 0;
    font-size:0.9rem;
    opacity:0.85;
}

.footer-left-desc{
    margin-top:3px;
    font-size:0.85rem;
    opacity:0.75;
    max-width:330px;
}

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.footer-contact-item i{
    font-size:1rem;
    opacity:0.9;
}

/* button icons */
.btn-call i,
.btn-whatsapp i{
    margin-right:6px;
}
.contact-item{
    display:flex;
    gap:14px;
    margin-bottom:1.5rem;
}

.contact-icon{
    font-size:1.3rem;
    color:var(--primary-color);
    margin-top:4px;
    min-width:24px;
}

.alert-success{
    background:#d4edda;
    color:#155724;
    padding:1rem;
    border-radius:8px;
    margin-bottom:1.5rem;
}

.alert-error{
    background:#f8d7da;
    color:#721c24;
    padding:1rem;
    border-radius:8px;
    margin-bottom:1.5rem;
}

.quick-actions a{
    display:block;
    margin:.5rem 0;
    text-align:center;
}

