/* --- 1. CORE RESET & BASE HIGH-CONTRAST THEME --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}
body {
    background-color: #f8f9fa; /* Light clean gray background */
    color: #212529; /* Dark, highly readable body text */
    line-height: 1.6;
}
a {
    color: #4385f5; /* High-contrast clean blue link color */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* --- 2. HEADER & NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    border-bottom: 3px solid #4385f5; /* Distinct blue accent border */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #212529;
    text-transform: uppercase;
}
.logo span { color: #4385f5; }
nav a {
    color: #495057;
    margin: 0 12px;
    font-size: 14px;
    font-weight: 700;
}
nav a:hover { color: #4385f5; }
.btn-whatsapp {
    background: #25D366; /* Vibrant brand green */
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
}
.btn-whatsapp:hover {
    background: #20ba5a;
    text-decoration: none;
}

/* --- 3. HERO BANNER --- */
.hero-banner {
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(248,249,250,1)), url('https://www.ruhijuise.in/images/1sidebanner.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 70px 20px;
}
.hero-banner .h1 { color: #4385f5; font-size: 38px; font-weight: 800; margin: 10px 0; }
.hero-banner p { color: #333333; font-size: 16px; margin-bottom: 25px; font-weight: 600; }

/* --- 4. ACTION BUTTONS --- */
.cta-container {
    background: #ffffff;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
}
.btn-action {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    color: white;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
}
.btn-action:hover { text-decoration: none; opacity: 0.9; }
.btn-action.wa { background: #25D366; }
.btn-action.call { background: #ff9f43; }

/* --- 5. CONTENT SECTIONS --- */
.content-section {
    padding: 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.heading-styled {
    font-size: 24px;
    border-left: 5px solid #4385f5; /* Bright blue side marker */
    padding-left: 12px;
    margin: 35px 0 15px 0;
    color: #111111;
}
.text-block p {
    color: #333333;
    margin-bottom: 15px;
    font-size: 15px;
    text-align: left;
}
.text-block strong { color: #4385f5; }

/* --- 6. SPLIT MEDIA LAYOUTS --- */
.split-box {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
}
.split-img {
    flex: 1;
    max-width: 300px;
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text { flex: 2; }

/* --- 7. PHOTO SECTIONS & BANNERS --- */
.section-divider-banner {
    background: #4385f5; /* Solid striking blue banner background */
    padding: 30px 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
}
.section-divider-banner h1, .section-divider-banner h2 { color: #ffffff; font-size: 24px; font-weight: 700; }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.grid-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border-bottom: 4px solid #4385f5; /* Solid blue base ribbon */
    text-align: center;
    padding-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}
.grid-card:hover {
    transform: translateY(-4px);
}
.grid-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.grid-card .badge {
    background: #4385f5;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: -15px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}
.grid-card h2 { font-size: 18px; margin: 10px 0 5px; color: #111111; }
.grid-card p { color: #666666; font-size: 14px; }

/* --- 8. COUNTER STATS --- */
.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 20px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
}
.stat-item { text-align: center; padding: 15px; }
.stat-item h2 { color: #4385f5; font-size: 32px; font-weight: 800; }
.stat-item p { color: #495057; font-weight: 700; }

/* --- 9. FAQ ACCORDION --- */
.faq-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
}
.faq-title {
    color: #4385f5; 
    font-weight: bold; 
    font-size: 22px; 
    text-align: center; 
    margin-bottom: 20px;
}
.faq-item {
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
}
.faq-trigger { 
    color: #111111; 
    font-size: 16px; 
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    font-weight: 700;
}
.faq-trigger::after {
    content: '+';
    position: absolute;
    right: 0;
    color: #4385f5;
    font-weight: bold;
}
.faq-item.active .faq-trigger::after {
    content: '-';
}
.faq-content { 
    color: #495057; 
    font-size: 14px; 
    margin-top: 10px;
    display: none;
}

/* --- 10. DISCLAIMER BLOCK --- */
.disclaimer {
    background: #fff5f5;
    border: 1px dashed #dc3545;
    padding: 20px;
    border-radius: 6px;
    margin: 40px 0;
}
.disclaimer b { color: #dc3545; font-size: 18px; display: block; margin-bottom: 8px; }
.disclaimer p { color: #6c757d; font-size: 13px; }

/* --- 11. FOOTER STYLING --- */
footer {
    background: #ffffff;
    padding: 30px 5%;
    border-top: 2px solid #4385f5;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-logo-text { color: #4385f5; font-size: 18px; font-weight: bold; }
.footer-copyright { font-size: 12px; color: #6c757d; }
.footer-menu a { color: #495057; margin: 0 10px; font-size: 14px; font-weight: 600; }
.footer-menu a:hover { color: #4385f5; }
.social-links a {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 6px 14px;
    border-radius: 15px;
    margin: 3px;
    font-size: 13px;
    border: 1px solid #dee2e6;
    font-weight: 600;
}
.social-links a:hover { color: white; background: #4385f5; border-color: #4385f5; }

/* --- 12. RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    header { flex-direction: column; text-align: center; gap: 10px; }
    .split-box { flex-direction: column; text-align: center; }
    .split-img { max-width: 100%; }
    .footer-flex { flex-direction: column; text-align: center; }
}
/* --- 13. ATTRACTIVE RATE TABLE STYLING --- */
.rate-section {
    margin: 40px 0;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
}
.rate-intro {
    color: #495057;
    font-size: 15px;
    margin-bottom: 20px;
}
.table-container {
    width: 100%;
    overflow-x: auto; /* Ensures seamless responsive horizontal scrolling on mobile screens */
    margin: 15px 0;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}
.rate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
}
.rate-table th {
    background-color: #4385f5; /* Theme matching blue header row */
    color: #ffffff;
    padding: 14px 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.rate-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #dee2e6;
    color: #333333;
    font-weight: 600;
}
.rate-table tbody tr:nth-child(even) {
    background-color: #f8f9fa; /* Sleek alternating light row colors */
}
.rate-table tbody tr:hover {
    background-color: rgba(67, 133, 245, 0.05); /* Highlight color line when hovered */
    transition: background-color 0.2s ease;
}
.highlight-blue {
    color: #4385f5;
}
.rate-note {
    margin-top: 15px;
    background: rgba(67, 133, 245, 0.03);
    border-left: 4px solid #4385f5;
    padding: 12px 15px;
    border-radius: 0 6px 6px 0;
}
.rate-note p {
    font-size: 13.5px;
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

/* Table Responsive adjustments */
@media (max-width: 576px) {
    .rate-table th, .rate-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}