/* ============================================
   CLEANED CSS - USED SELECTORS ONLY
   Analyzed from: chatwithdoctor.php, consultation.php
   ============================================ */

body { 
    background-color: #f8f9fa;
    color: #333;
}

/* ============================================
   Hero Section - Used in chatwithdoctor.php
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #5fc1a3, #48a1c8);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 113px;
}

.hero-section h1 {
    font-weight: 700;
    color: #fff;
}

.hero-section p {
    font-size: 1.1rem;
}

/* ============================================
   Button Styles - Used in both PHP files
   ============================================ */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5a;
    color: #fff;
}

/* ============================================
   Booking Cards - Used in consultation.php
   ============================================ */
.booking-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.booking-icon img {
    width: 150px;
}

/* ============================================
   Feature Icons - Used in both PHP files
   ============================================ */
.feature-icon {
    font-size: 40px;
    color: #48a1c8;
    margin-bottom: 15px;
}

.feature-icon img {
    width: 100px;
}

/* ============================================
   Custom Button - Used in consultation.php
   ============================================ */
.custom-btn {
    background-color: #05213f;
    border-radius: 25px;
    padding: 12px 25px;
    color: #fff !important;
}

/* ============================================
   Background Color Utilities
   ============================================ */
.bg-light-blue {
    background-color: #ffffff;
}

/* ============================================
   Footer - Used in both PHP files
   ============================================ */
footer {
    background: #222;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .booking-icon {
        font-size: 2.5rem;
    }
}
