/* --- HOME PAGE SPECIFIC STYLES --- */
.hero-section-rebuilt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    max-width: 100%;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(31, 41, 55, 0.5);
}

.hero-left .name-tag {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.hero-left h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.2;
}

.hero-left .license-tag {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: var(--accent-color);
    margin: 16px 0 32px 0;
}

.hero-left .description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-buttons .btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}

.hero-buttons .btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.hero-buttons .btn-secondary {
    background-color: var(--page-bg);
    color: var(--heading-color);
    border: 1px solid var(--border-color);
}

.hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-item .icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.metric-item .text .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}

.metric-item .text .label {
    font-size: 14px;
    color: var(--text-color);
}

.hero-footnote {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 32px;
}

.referral-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--premium-color);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.05);
    transition: all 0.3s ease;
}

.referral-badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}

/* Typography matching for intro and services cards */
.intro-card h2, 
.services-card h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.intro-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.services-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #9CA3AF; /* Matching recovery-list li color */
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list li strong {
    color: var(--heading-color);
}

.service-note {
    font-size: 13px;
    opacity: 0.8;
}

/* Wealth Recovery */
.recovery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.recovery-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    height: 100%;
}

.recovery-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.recovery-icon {
    flex: 0 0 80px;
    height: 80px;
}

.recovery-title-group h2 {
    font-size: 1.5rem;
    margin: 8px 0 0 0;
    line-height: 1.2;
    color: var(--heading-color);
}

.tag-mitra { color: #10B981; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }
.tag-udgam { color: #3B82F6; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }

.recovery-desc {
    margin-bottom: 24px;
    color: #E5E7EB;
    font-size: 1rem;
    line-height: 1.5;
}

.recovery-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.recovery-list li {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #9CA3AF;
    line-height: 1.5;
}

.mitra-btn, .udgam-btn {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
    margin-top: auto;
}

.mitra-btn { background-color: #10B981; color: #ffffff !important; }
.udgam-btn { background-color: #3B82F6; color: #ffffff !important; }

/* Reviews */
.reviewer-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.reviewer-name {
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.review-stars {
    color: #FBBF24;
    font-size: 18px;
}

.review-text {
    color: var(--text-color);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    max-height: 102px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-out;
}

.review-text.is-expanded {
    max-height: 1000px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0 0 0;
    margin-top: 8px;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 32px;
    margin-bottom: 48px;
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.reviews-summary:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    color: var(--heading-color);
}

#reviews-summary-container a {
    text-decoration: none !important;
    color: inherit !important;
}

.summary-google-logo {
    width: 32px;
    height: 32px;
}

.summary-rating-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-stars {
    color: #FBBF24;
    font-size: 16px;
    letter-spacing: 2px;
}

.summary-total {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 600;
}

/* Swiper Enhancements */
.reviews-swiper {
    width: 100%;
    padding: 20px 60px 60px 60px !important;
    margin: 0 -60px;
    overflow: visible !important;
}

@media (max-width: 768px) {
    .reviews-swiper {
        padding: 20px 10px 60px 10px !important;
        margin: 0;
    }
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-card {
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color) !important;
    background: var(--card-bg);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
    color: white !important;
    border-color: var(--accent-color);
}

.swiper-pagination-bullet {
    background: var(--text-color) !important;
    opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 10px !important;
}


/* FAQ */
.faq-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 500;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    color: var(--text-color);
}

.testimonial-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    max-width: 800px;
    margin: -24px auto 32px auto;
}

.faq-hidden {
    display: none !important;
}


/* FAQ Search Bar */
.faq-search-wrapper {
    max-width: 600px;
    margin: 32px auto;
    width: 100%;
}

#faq-search-input {
    width: 100%;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 16px 32px;
    color: var(--heading-color);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

#faq-search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

#faq-search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section-rebuilt { flex-direction: column-reverse; text-align: center; }
    .hero-left { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-metrics-grid { grid-template-columns: 1fr; text-align: left; }
    .contact-section { flex-direction: column; }
}

@media (min-width: 1024px) {
    .hero-right img { max-width: 550px; }
    .recovery-grid { grid-template-columns: 1fr 1fr; }
    .mitra-btn, .udgam-btn { width: auto; align-self: flex-start; }
}
