/* ========================================
   GLOBAL STYLES
======================================== */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 720px;
    display: flex;
    align-items: center;
    background-image: url('https://i.imgur.com/k9oX29B.jpg');
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    padding: 120px 10% 80px;
}

.hero-content {
    width: 45%;
    z-index: 5;
    color: #333;
    position: relative;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 30px;
}

.hero-content h1 span { 
    font-weight: 700; 
}

.plus-icon {
    display: inline-block;
    background-color: #ff4b4b;
    color: white;
    padding: 0 8px;
    font-size: 28px;
    font-weight: bold;
    border-radius: 2px;
    line-height: 1;
    vertical-align: middle;
}

.hero-content p {
    font-size: 16px;
    color: #0b0a0a;
    margin-bottom: 30px;
    max-width: 400px;
    opacity: 0.9;
}

.read-more-btn {
    background-color: #f4c613;
    color: white;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #d4a60a;
    transform: translateY(-2px);
}

.doctor-image {
    position: absolute;
    /* right: 0; */
    bottom: 0;
    height: 100%;
    width: 100%;
    margin-left: -150px;
    /* object-fit: cover; */
    /* z-index: 1; */
}

/* ========================================
   APPOINTMENT BAR
======================================== */
.appointment-bar {
    margin: -60px auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
    background: linear-gradient(135deg, #3b9150 0%, #2d7a3e 100%);
    z-index: 20;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.appointment-tab {
    position: absolute;
    top: -20px;
    left: 30px;
    background-color: #333;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.form-group {
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 8px;
}

.form-group input {
    background: none;
    border: none;
    width: 100%;
    color: white;
    font-size: 14px;
    outline: none;
    padding: 5px 0;
}

.form-group input::placeholder { 
    color: rgba(255, 255, 255, 0.8); 
}

.form-group input:focus {
    border-bottom: 1px solid white;
}

.message-row {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 8px;
}

.message-row input {
    background: none;
    border: none;
    color: white;
    flex: 1;
    outline: none;
    font-size: 14px;
    padding: 5px 0;
}

.message-row input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.send-btn {
    background-color: white;
    color: #3b9150;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 100px 10%;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.sub-label {
    color: #f4c613;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a2b3c;
    margin-bottom: 25px;
}

.description p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #0399d9;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.action-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.more-btn {
    background-color: #dea925;
    color: white;
    padding: 15px 35px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background-color: #c9961a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 169, 37, 0.4);
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    font-size: 20px;
    background: #0399d9;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    font-weight: 700;
    font-size: 18px;
    color: #1a2b3c;
}

.about-images {
    flex: 1;
    display: flex;
    gap: 15px;
}

.left-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-small {
    width: 100%;
    min-width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 15px;
}

.img-tall {
    width: 100%;
    min-width: 280px;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
}

.img-wrapper-video {
    position: relative;
    width: 100%;
    min-width: 180px;
    height: 130px;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header .plus-icon {
    display: inline-block;
    background-color: #0399d9;
    color: white;
    padding: 0 8px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 2px;
    margin-bottom: 15px;
}

.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-block;
    background-color: #0399d9;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    background-color: #0277a8;
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
.why-choose-us {
    padding: 90px 10%;
    background-color: #fcfcfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #0399d9;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.features-column {
    flex: 1.2;
}

.image-column {
    flex: 1;
}

.feature-block {
    display: flex;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.feature-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-icon {
    background-color: #0399d9;
    color: white;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    border-radius: 8px;
    margin-right: 20px;
}

.feature-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   BLOG & REVIEWS SECTION
======================================== */
.blog-reviews-section {
    padding: 90px 10%;
    background-color: #ffffff;
}

.column-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0399d9;
    display: inline-block;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.blog-column, .review-column {
    flex: 1;
}

.blog-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-img img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.blog-info {
    flex: 1;
}

.blog-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.blog-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.read-more {
    color: #0399d9;
    font-weight: 700;
    font-size: 13px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0277a8;
}

.review-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #0399d9;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.review-header {
    margin-bottom: 15px;
}

.patient-meta strong {
    display: block;
    color: #333;
    font-size: 15px;
    margin-bottom: 5px;
}

.star-rating {
    color: #f1c40f;
    font-size: 16px;
}

.review-text {
    font-style: italic;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE QUERIES
======================================== */

/* Large Tablets & Small Desktops (1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 140px 5% 60px;
    }

    .hero-content {
        width: 50%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .doctor-image {
        width: 45%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        gap: 40px;
    }

    .main-heading {
        font-size: 36px;
    }
}

/* Tablets (900px) */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
        text-align: center;
        padding-top: 160px;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin: 0 auto 25px;
    }

    .doctor-image {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
    }

    .appointment-bar {
        width: 90%;
        padding: 25px 20px;
    }

    .form-row {
        flex-wrap: wrap;
    }

    .form-group {
        flex: 1 1 45%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .image-column {
        width: 100%;
        margin-top: 40px;
    }

    .split-layout {
        flex-direction: column;
        gap: 50px;
    }
}

/* Mobile Devices (768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .read-more-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .doctor-image {
        height: 280px;
    }

    /* Appointment Bar */
    .appointment-bar {
        width: 95%;
        padding: 20px 15px;
        margin-top: 30px;
    }

    .appointment-tab {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 15px;
        display: inline-block;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        flex: 1 1 100%;
    }

    .message-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .send-btn {
        width: 100%;
        padding: 12px;
        margin-left: 0;
    }

    /* About Section */
    .about-section {
        padding: 60px 5%;
    }

    .about-container {
        flex-direction: column;
    }

    .about-content {
        width: 100%;
    }

    .main-heading {
        font-size: 28px;
    }

    .sub-label {
        font-size: 12px;
    }

    .description p {
        font-size: 14px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .action-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .more-btn {
        text-align: center;
    }

    .phone-info {
        justify-content: center;
    }

    .about-images {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .left-stack, .right-stack {
        width: 100%;
    }

    .img-small, .img-tall {
        width: 100%;
        min-width: auto;
        height: auto;
        aspect-ratio: 16/10;
    }

    .img-tall {
        aspect-ratio: 3/4;
    }

    /* Services Section */
    .services-section {
        padding: 60px 5%;
    }

    .services-header h2 {
        font-size: 24px;
    }

    .services-header p {
        font-size: 14px;
    }

    /* Why Choose Us */
    .why-choose-us {
        padding: 60px 5%;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .feature-block {
        flex-direction: column;
        gap: 15px;
    }

    .feature-icon {
        margin-right: 0;
    }

    .feature-info h3 {
        font-size: 14px;
    }

    .feature-info p {
        font-size: 13px;
    }

    /* Blog & Reviews */
    .blog-reviews-section {
        padding: 60px 5%;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .column-title {
        font-size: 18px;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-img img {
        width: 100%;
        height: 180px;
    }

    .review-card {
        padding: 20px;
    }
}

/* Small Mobile Devices (480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 120px 5% 40px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .plus-icon {
        font-size: 20px;
        padding: 0 5px;
    }

    .doctor-image {
        height: 220px;
    }

    .appointment-bar {
        padding: 15px 10px;
    }

    .appointment-tab {
        font-size: 12px;
        padding: 6px 15px;
    }

    .about-section {
        padding: 40px 5%;
    }

    .main-heading {
        font-size: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .services-header h2 {
        font-size: 22px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .blog-info h4 {
        font-size: 14px;
    }
}

/* Extra Small Devices (360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 20px;
    }

    .read-more-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .main-heading {
        font-size: 22px;
    }

    .services-header h2 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 20px;
    }
}
