/* ---------------------------------- */
/* 1. Global Reset and Base Styles */
/* ---------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Enable Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on your header height + a little extra */
}


body {
    font-family: 'Inter', sans-serif; /* Using Inter for a clean, modern look */
    color: #333;
    background-color: #f7f9fc; /* Very light background for the site body */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* ---------------------------------- */
/* 2. Button and Utility Styles */
/* ---------------------------------- */

/* Blue Gradient Button (Used for 'Talk Now!', 'Book now') */
.btn-primary-gradient, .btn-cta-large {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #4a90e2, #7ed6df); 
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.4);
    text-align: center;
}

.btn-primary-gradient:hover, .btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.6);
}

.btn-cta-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 8px; /* Larger radius for the main CTA */
}

.text-center {
    text-align: center;
}
.section-subtitle {
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #666;
    font-size: 1.05rem;
}

/* ---------------------------------- */
/* 3. Header Styling */
/* ---------------------------------- */
.main-header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4a90e2; /* Blue logo color */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px; 
}

.main-nav a {
    font-weight: 500;
    color: #555;
    padding: 5px 0;
}

.main-nav a:hover,
.main-nav a.active { /* Style for active link (optional, if using JS to track) */
    color: #4a90e2;
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #4a90e2;
}

/* ---------------------------------- */
/* 4. Hero Section Styling (index.php) */
/* ---------------------------------- */
.hero-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.hero-content {
    flex: 1; 
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a90e2; 
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-proof-grid {
    display: flex; 
    gap: 40px;
    margin-top: 40px;
}

.social-proof-grid .stat {
    text-align: left;
}

.social-proof-grid .count {
    font-size: 1.8rem;
    font-weight: 800;
    color: #444;
    display: block; 
    margin-bottom: 5px;
}

.social-proof-grid .stat p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* ---------------------------------- */
/* 5. Core Services Grid (index.php) */
/* ---------------------------------- */
.core-services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 25px;
    text-align: center; /* Center content within card */
}

.service-card {
    background-color: white;
    padding: 30px 20px; /* More padding */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px; /* Adjust height if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Vertically center */
}

.service-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card .service-icon {
    display: block; 
    width: 60px;    
    height: 60px;   
    margin: 0 auto 15px auto; 
    object-fit: contain; 
}


.service-card h4 {
    margin-top: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #4a90e2;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0; /* Remove default margin */
}

/* ---------------------------------- */
/* 6. Legal Issues Grid (index.php) */
/* ---------------------------------- */
.legal-issues-section {
    padding: 80px 0; /* More padding */
    text-align: center;
    background-color: #f0f4f8; 
}

.legal-issues-section h2 {
    font-size: 2rem;
    margin-bottom: 50px; /* More space */
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 25px;
}

.issue-card { /* Style the link itself */
    display: block; /* Make it block for padding */
    background-color: white;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.issue-card .icon-circle {
    width: 80px; 
    height: 80px; 
    background-color: #e8f0fe; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto; 
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.issue-card:hover .icon-circle {
    background-color: #d1e2ff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.issue-card strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
    min-height: 3em; 
}

.issue-card .talk-now-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------------------------------- */
/* 7. Footer Styling */
/* ---------------------------------- */
.main-footer {
    background-color: #2c3e50; 
    color: #ecf0f1;
    padding: 40px 0 20px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #7ed6df; 
    margin-bottom: 10px;
}

.footer-brand .slogan {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.support-info h4 {
    font-weight: 700;
    color: #7ed6df;
    margin-bottom: 5px;
}

.support-info p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #ecf0f1;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #7ed6df;
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex-wrap: wrap; /* Allow wrapping */
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: #bdc3c7; /* Lighter grey for links */
    font-size: 0.95rem;
}

.footer-links-group a:hover {
    color: #7ed6df;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 10px;
    margin-top: 20px;
    font-size: 0.85rem;
}

.disclaimer-toggle {
    background: none;
    border: none;
    color: #ecf0f1;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.disclaimer-toggle i {
    margin-left: 8px;
    transition: transform 0.3s;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 90;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ---------------------------------- */
/* 8. Talk To Lawyer Categories (talk-to-lawyer.php) */
/* ---------------------------------- */
.page-header-section {
    padding: 50px 0;
    background-color: #f7f9fc;
}

.advice-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.advice-card h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.advice-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
    gap: 20px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: #e8f0fe; 
    color: #333;
    font-weight: 600;
    transition: background-color 0.3s, box-shadow 0.3s;
    border: 1px solid #d1e2ff;
}

.category-item:hover {
    background-color: #d1e2ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-item i:first-child {
    color: #4a90e2; 
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px; /* Ensure consistent icon width */
    text-align: center;
}

.category-item i:last-child {
    color: #4a90e2; 
}

.category-item span {
    flex-grow: 1;
}

/* ----------------------------------------- */
/* 9. Lawyer List Page (lawyer-list.php) */
/* ----------------------------------------- */
.lawyer-list-main {
    padding: 50px 0;
}

.lawyer-list-header {
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lawyer-list-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.back-link {
    color: #4a90e2;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.back-link:hover {
    text-decoration: underline;
}

.lawyer-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    margin-bottom: 25px;
    display: flex;
    gap: 25px;
    align-items: flex-start; /* Align items to top */
}

.lawyer-card-image img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.lawyer-card-details {
    flex-grow: 1;
}

.lawyer-card-details h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: #333;
}

.lawyer-card-details .specialty {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    display: block; /* Make it block */
}

.lawyer-card-details .bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lawyer-card-details .price-duration {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.lawyer-card-details .price-duration span {
    font-weight: 400;
    color: #777;
    margin: 0 5px;
}

.no-lawyers-message {
    background-color: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}


/* ---------------------------------- */
/* 10. Booking Page (booking.php) */
/* ---------------------------------- */
.booking-page-main {
    padding: 50px 0;
    background-color: #f7f9fc;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 40px;
    align-items: start;
}

/* Left Column */
.booking-details-col {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.details-header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.details-header p {
    color: #666;
    font-size: 0.95rem;
}

.video-info {
    padding: 15px 0;
}
.video-info i {
    color: #4a90e2;
    margin-right: 10px;
    font-size: 1.2rem;
}
.video-info h3 {
    display: inline;
    font-size: 1.1rem;
    margin: 0;
}
.video-info p {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.trust-badges {
    display: flex;
    gap: 25px;
    padding: 15px 0;
    flex-wrap: wrap;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}
.badge-item i {
    color: #f39c12; /* Gold color for icons */
}

.share-link {
    display: inline-block;
    color: #4a90e2;
    font-size: 0.9rem;
    margin-top: 10px;
}
.share-link i {
    margin-right: 5px;
}

.lawyer-intro {
    padding: 20px 0;
}
.lawyer-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}
.lawyer-intro h2 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.lawyer-intro p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
    clear: both; /* Ensure text clears the floated image */
}

.payment-badges p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}
.payment-badges img {
    height: 20px;
    margin-right: 10px;
    opacity: 0.7;
}

.whatsapp-float-inline {
    display: block;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}
.whatsapp-float-inline i {
    color: #25d366;
    margin-right: 5px;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* Right Column */
.booking-form-col {
    position: sticky; /* Make the form sticky */
    top: 100px; /* Adjust based on header height */
}

.booking-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    overflow: hidden; /* Hide overflowing image */
}

.lawyer-image-top img {
    width: 100%;
    height: 200px; /* Fixed height for top image */
    object-fit: cover;
}

#bookingForm {
    padding: 25px;
}

.timezone-selector {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}
.timezone-selector i {
    margin-right: 8px;
    color: #4a90e2;
}

.schedule-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}
.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    background-color: #fff;
    appearance: none; /* Remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}
.input-group select:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
}

.add-slot-placeholder {
    font-size: 0.9rem;
    color: #4a90e2;
    cursor: pointer; /* Indicate it's clickable (though not functional yet) */
    margin-top: 10px;
}
.add-slot-placeholder i {
    margin-right: 5px;
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 10px;
}
.price-summary p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}
.price-summary .price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.book-spot-btn {
    width: 100%;
    padding: 15px; /* Larger button */
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 10px;
}
.book-spot-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.book-spot-btn i {
    margin-left: 10px;
}

/* Error/Success Message Styling */
.form-error {
    background: #f8d7da; color: #721c24; padding: 15px; border-radius: 8px; margin-bottom: 20px; text-align: center; font-size: 0.95rem; border: 1px solid #f5c6cb;
}
.form-success {
    background: #d4edda; color: #155724; padding: 15px; border-radius: 8px; margin-bottom: 20px; text-align: center; font-size: 0.95rem; border: 1px solid #c3e6cb;
}

/* ---------------------------------- */
/* 7b. FAQ Page Styling (faqs.php & index.php) */
/* ---------------------------------- */
/* General Section Styling */
.faqs-main, .faqs-section { /* Apply to both page and section */
    padding: 60px 0;
    background-color: #f0f4f8; /* Match original faqs page bg */
}

.faqs-layout-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 for intro, 2/3 for list */
    gap: 40px;
    align-items: start;
}

.faqs-intro-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px; /* Sticks below the header */
}

.faqs-intro-card .intro-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.faqs-intro-card .intro-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.faqs-intro-card .intro-cta {
    padding: 12px 30px; 
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden; 
    border: 1px solid #e7eaf3;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    font-size: 0.9rem;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer {
    padding: 0 25px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* --- The JavaScript Toggle Logic --- */
.faq-item.active .faq-question {
    background-color: #e8f0fe; /* Light blue when active */
}

.faq-item.active .faq-answer-container {
    max-height: 500px; /* Adjust if answers are very long */
    padding: 0 25px 20px 25px;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Rotates the '+' icon */
}

/* ---------------------------------- */
/* 11. New Homepage Sections */
/* ---------------------------------- */
/* General Content Section Styling */
.content-section {
    padding: 80px 0;
    border-bottom: 1px solid #e7eaf3; /* Light separator */
}
.content-section:nth-child(even) { /* Alternate background colors */
     background-color: #ffffff;
}
.content-section:nth-child(odd) { /* Odd includes hero, legal issues, reviews */
     background-color: #f7f9fc;
}
/* Override for specific sections if needed */
.legal-issues-section, .faqs-section { background-color: #f0f4f8; }
.reviews-section { background-color: #f7f9fc; }


.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* Two Column Layout (Used in Therapy) */
.two-column-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}
.two-column-layout .text-content {
    flex: 1;
}
.two-column-layout .image-content {
    flex: 1;
    text-align: center;
}
.two-column-layout .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Therapy Section Specific */
.therapy-section .text-content h2 {
    margin-bottom: 15px;
}
.therapy-section .text-content p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

/* Reviews Section Specific */
.reviews-section h2 {
    margin-bottom: 50px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    border: 1px solid #e7eaf3;
    position: relative; /* For quote icon positioning */
}
.review-card .quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.8rem;
    color: #4a90e2;
    opacity: 0.2;
}
.review-card p {
    margin-bottom: 25px;
    color: #555;
    font-style: italic;
    line-height: 1.7;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-info strong {
    font-weight: 600;
    color: #333;
}
.reviewer-info .stars {
    color: #f39c12; /* Star color */
}

/* Business Setup Section Specific */
.business-setup-section h2 {
    margin-bottom: 15px;
}
.business-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-radius: 10px;
    background-color: #e8f0fe; /* Light blue from category items */
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, box-shadow 0.3s;
    border: 1px solid #d1e2ff;
}
.option-card:hover {
    background-color: #d1e2ff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}
.option-card i {
    color: #4a90e2;
}

/* ---------------------------------- */
/* 12. Media Queries (Responsiveness) */
/* ---------------------------------- */
@media (max-width: 1024px) {
    /* Adjustments for medium screens */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .main-nav ul {
        gap: 20px;
    }
    .footer-links-group {
        gap: 40px;
    }
    .booking-container {
        grid-template-columns: 1fr; /* Stack booking columns */
    }
    .booking-form-col {
        position: static; /* Unstick form */
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    /* Adjustments for tablets and mobiles */
    .main-header .container {
        padding: 10px 20px;
    }
    .main-nav, .main-header .talk-now-btn { /* Hide desktop nav and header button */
        display: none; 
    }
    .hamburger-menu {
        display: block; /* Show hamburger */
    }

    /* Mobile Navigation Styles */
    .main-nav {
        display: none; /* Hidden initially */
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 99;
        flex-direction: column; /* Stack links vertically */
        padding: 15px 0;
        border-top: 1px solid #eee;
    }
    .main-nav.active {
        display: flex; /* Show when active */
    }
    .main-nav ul {
        flex-direction: column; /* Stack links */
        width: 100%;
        text-align: center;
        gap: 0; /* Remove horizontal gap */
    }
    .main-nav li {
        width: 100%;
    }
    .main-nav a {
        display: block; /* Make links full width */
        padding: 15px 20px; /* Add padding */
        border-bottom: 1px solid #eee;
        width: 100%; /* Ensure full width */
    }
     .main-nav li:last-child a {
         border-bottom: none;
     }
     /* End Mobile Nav Styles */


    .hero-section .container {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }

    .hero-image {
        order: -1; 
        margin-bottom: 20px;
    }

    .hero-image img {
        max-width: 80%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .social-proof-grid {
        justify-content: center;
    }

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

    .legal-issues-section {
        padding: 40px 0;
    }

    .issues-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-group {
        flex-direction: row; /* Keep side by side if space allows */
        justify-content: space-around; /* Distribute space */
        gap: 20px;
        width: 100%; /* Take full width */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .category-grid {
        grid-template-columns: 1fr; /* Single column */
    }

    .faqs-layout-container {
        grid-template-columns: 1fr; /* Stack on mobile */
    }

    .faqs-intro-card {
        position: static; /* Don't stick on mobile */
        text-align: center;
        margin-bottom: 30px;
    }
    
    .two-column-layout {
        flex-direction: column;
    }
    .two-column-layout .image-content {
        margin-top: 30px;
        order: -1; /* Image first on mobile often looks better */
    }
     .reviews-grid {
         grid-template-columns: 1fr; /* Stack reviews on mobile */
    }
}

@media (max-width: 480px) {
    /* Adjustments for small phones */
    .services-grid {
        grid-template-columns: 1fr; 
    }
    .issues-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .hero-image img {
        max-width: 100%;
    }
    .service-card .service-icon {
        width: 50px;
        height: 50px;
    }
    .legal-issues-section .issue-card .icon-circle {
        width: 70px;
        height: 70px;
    }
     .footer-links-group {
        flex-direction: column; /* Stack footer links */
        text-align: center;
     }
}
	 .service-fa-icon {
    font-size: 3.5rem;   /* Makes icons big */
    color: #4a90e2;      /* Uses your brand blue */
    margin-bottom: 20px; /* Space between icon and text */
    display: block;      /* Ensures it sits on its own line */
    transition: transform 0.3s ease;
}

.service-card:hover .service-fa-icon {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
}