/* Lotus Dental Care Landing Page Styles - Updated for Logo Colors */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
:root {
    --primary: #1b3664; /* Deep Blue from logo */
    --secondary: #2ec4dd; /* Teal/Cyan from logo */
    --accent: #a03a5c; /* Maroon/Pink from logo */
    --light: #ffffff;
    --gray: #6c757d;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    --radius: 8px;
    --transition: 0.2s;
}

body {
    font-family: "Lato", sans-serif;
    background: var(--light);
    color: var(--primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", sans-serif !important;
}
p {
    font-family: "Roboto", sans-serif !important;
}

/* Header */
.header {
    background: var(--light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: var(--primary);
    color: var(--light);
}
.clinic-phone {
    font-size: 1.1rem;
    font-weight: 600;
}
.book-appointment-btn {
    background: var(--accent);
    color: var(--light);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: background var(--transition);
}
.book-appointment-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Logo Row (if needed) */
.logo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem 0.5rem 2rem;
}
.logo-row img {
    height: 60px;
}
.logo-row .logo-text-main {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
.logo-row .logo-text-sub {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    background: var(--light);
    box-shadow: 0 1px 0 #e9ecef;
}
.nav-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 2rem;
}
.nav-list > li {
    position: relative;
}
.nav-list > li > a {
    display: block;
    padding: 1rem 1.2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-list > li > a:hover {
    color: var(--accent);
}
.dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--light);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    z-index: 10;
    padding: 0.5rem 0;
}
.dropdown-menu li a {
    padding: 0.7rem 1.2rem;
    color: var(--primary);
    display: block;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.dropdown-menu li a:hover {
    background: var(--secondary);
    color: var(--light);
}

/* Hero Section */
.hero {
    background: linear-gradient(
        176deg,
        rgb(255 239 244) 50%,
        rgb(232 230 255) 100%
    );
    color: var(--light);
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #a03a5c;
}
.hero-content h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 auto;
    max-width: 600px;
    color: #1b3664;
}

/* Clinic Info */
.clinic-info {
    background: var(--light);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 700px;
}
.clinic-info h2 {
    margin-top: 0;
    color: var(--primary);
}
.clinic-info address {
    font-style: normal;
    color: var(--gray);
}

/* Appointment Form */
.appointment-section {
    background: #ffeff4;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.appointment-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.appointment-form {
    background: var(--light);
    padding: 2rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
    text-align: left;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--primary);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ced4da;
    border-radius: var(--radius);
    font-size: 1rem;
    background: #f6fafd;
    transition: border var(--transition);
    color: var(--primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
}
.submit-btn {
    background: var(--accent);
    color: var(--light);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.submit-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--light);
    text-align: center;
    padding: 2.5rem 1rem 2rem 1rem;
    margin: 2rem 0 0 0;
}
.cta-section h2 {
    margin-top: 0;
    font-size: 1.5rem;
}
.cta-section a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--light);
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
}
.footer-info {
    margin-bottom: 1rem;
}
.footer-info a {
    color: var(--secondary);
    text-decoration: none;
}
.footer-banner {
    margin: 1rem 0;
}
.whatsapp-link {
    display: inline-block;
}
.whatsapp-banner-img {
    width: 180px;
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.footer-copy {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* --- Clinic Info Section Modern Layout --- */
.clinic-info-section {
    background: #f6fafd;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(43, 54, 100, 0.06);
    padding: 2.5rem 1rem;
    margin: 2.5rem auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.clinic-info-container {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.clinic-info-content {
    flex: 1 1 340px;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.clinic-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
.clinic-info-icon {
    font-size: 1.7rem;
    color: var(--secondary);
}
.clinic-info-box {
    background: linear-gradient(
        176deg,
        rgb(255 239 244) 50%,
        rgb(232 230 255) 100%
    );
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(43, 54, 100, 0.04);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1.5px solid #f0f4fa;
}
.clinic-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}
.info-icon {
    background: #a03a5c;
    color: #f9fbff;
    font-size: 1.1rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(46, 196, 221, 0.08);
    flex-shrink: 0;
}
.info-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}
.info-value {
    font-size: 1rem;
    color: var(--primary);
    word-break: break-word;
}
.info-value a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
.info-value a:hover,
.info-value a:focus {
    color: var(--secondary);
    text-decoration: underline;
}
.info-divider {
    border: none;
    border-top: 1.5px dashed #7597d2;
    margin: 1.1rem 0;
}

.clinic-info-map {
    flex: 2 1 420px;
    min-width: 320px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clinic-info-map iframe {
    width: 100%;
    min-height: 320px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 12px rgba(43, 54, 100, 0.08);
}

/* --- Footer Social Icons --- */
.footer-social {
    margin: 1.2rem 0 0.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    font-size: 1.4rem;
    box-shadow: 0 1px 4px rgba(43, 54, 100, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    border: 2px solid var(--primary);
}
.social-icon.facebook:hover {
    background: #1877f3;
    color: #fff;
    border-color: #1877f3;
    transform: translateY(-2px) scale(1.08);
}
.social-icon.instagram:hover {
    background: linear-gradient(135deg, #fd5c63 0%, #fcae1e 50%, #2ec4dd 100%);
    color: #fff;
    border-color: #fd5c63;
    transform: translateY(-2px) scale(1.08);
}
.social-icon.whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    transform: translateY(-2px) scale(1.08);
}
.social-icon.youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
    transform: translateY(-2px) scale(1.08);
}
.social-icon span {
    display: block;
    line-height: 1;
}

/* --- Modern Footer Styles --- */
.modern-footer {
    background: var(--primary);
    color: var(--light);
    padding: 2.5rem 1rem 1rem 1rem;
    margin-top: 2rem;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem auto;
}
.footer-contact {
    flex: 1 1 320px;
    min-width: 220px;
}
.footer-title {
    color: #ffffff;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    padding-bottom: 3px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* border-bottom: 1px dashed #ffc3d7; */
    display: inline-block;
    text-transform: uppercase;
}
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--light);
}
.footer-contact-row a {
    color: #f9feff;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}
.contact-icon {
    color: var(--secondary);
    font-size: 1.2rem;
    min-width: 1.2em;
    text-align: center;
}
.footer-social-block {
    flex: 1 1 180px;
    min-width: 180px;
    text-align: center;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 0.5rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    font-size: 1.4rem;
    box-shadow: 0 1px 4px rgba(43, 54, 100, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    border: 2px solid var(--primary);
}
.social-icon.instagram:hover {
    background: linear-gradient(135deg, #fd5c63 0%, #fcae1e 50%, #2ec4dd 100%);
    color: #fff;
    border-color: #fd5c63;
    transform: translateY(-2px) scale(1.08);
}
.footer-divider {
    border: none;
    border-top: 1.5px solid #2ec4dd;
    margin: 1.5rem 0;
    opacity: 0.2;
}
.footer-copy {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
}
.footer-contact-row i {
    color: #ff9bbc;
}
.footer-vertical-divider {
    width: 2px;
    background: #2ec4dd;
    opacity: 0.18;
    margin: 0 2rem;
    min-height: 120px;
    align-self: stretch;
    border-radius: 2px;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .footer-contact,
    .footer-social-block {
        min-width: 0;
        text-align: left;
    }
    .footer-social-block {
        text-align: left;
        margin-top: 1.2rem;
    }
    .footer-vertical-divider {
        display: none;
    }
}

/* --- Modern Header Top Styles --- */
.modern-header-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    background: var(--primary);
    color: var(--light);
    padding: 0.7rem 0rem;
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    flex-wrap: wrap;
}
.header-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    white-space: nowrap;
}
.header-icon {
    color: var(--secondary);
    font-size: 1.1rem;
    min-width: 1.1em;
    text-align: center;
}
.header-vertical-divider {
    width: 2px;
    height: 1.5em;
    background: #2ec4dd;
    opacity: 0.18;
    margin: 0 0.7rem;
    border-radius: 2px;
    align-self: center;
}
.clinic-email a {
    color: #fff;
    text-decoration: none;
}
.bg-form {
    background: #ffeff4;
    padding: 20px 0px 0px;
    text-align: center;
}
.ldc-heading-sub {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #130208;
}
.ldc-heading-sub {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1b3664;
      font-family: "Roboto Slab", serif!important;
}
.header-item a
{
    color:#fff;
    text-decoration: none;
          font-family: "Roboto Slab", serif!important;
}
@media (max-width: 900px) {
    .modern-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.7rem 1rem;
    }
    .header-vertical-divider {
        display: none;
    }
    .book-appointment-btn {
        margin-top: 0.7rem;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .nav-list {
        flex-direction: column;
        padding: 0 1rem;
    }
    .main-nav {
        font-size: 1rem;
    }
}
@media (max-width: 700px) {
    .clinic-info,
    .appointment-form {
        padding: 1.2rem;
    }
    .appointment-form {
        max-width: 100%;
    }
    .clinic-info-section {
        padding: 1.2rem 0.2rem;
    }
    .clinic-info-box {
        padding: 1.2rem 0.7rem;
    }
    .clinic-info-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 500px) {
    .header-top,
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1rem;
    }
    .hero {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
    .appointment-section {
        padding: 1.2rem 0;
    }
    .footer {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
}
@media (max-width: 1100px) {
    .clinic-info-container {
        flex-direction: column;
        gap: 2rem;
    }
    .clinic-info-map,
    .clinic-info-content {
        max-width: 100%;
    }
}
