/*
Theme Name: Astra Child - Advocate Vishu Kushwaha
Theme URI: https://advocatevishukushwaha.com
Description: A minimalist, professional theme designed for Advocate Vishu Kushwaha, focusing on clarity, authority, and conversion, based on the principles of high-converting landing pages.
Author: Advocate Vishu Kushwaha & Gemini AI
Author URI: https://advocatevishukushwaha.com
Template: astra
Version: 3.1.0
*/

/* Import parent theme styles */
@import url("../astra/style.css");

/* --- Minimalist Color & Font Scheme --- */
:root {
    --bg-main: #FFFFFF;
    --bg-secondary: #FFFFFF; /* Set to white as per request */
    --text-primary: #111827; /* Near-black for headings */
    --text-secondary: #374151; /* Dark grey for body text */
    --text-muted: #6B7280;
    --accent-gold: #B48C2C; /* A refined, professional gold */
    --accent-gold-hover: #93701F;
    --border-color: #E5E7EB;

    --font-display: 'Playfair Display', serif; /* For impactful headings */
    --font-body: 'Inter', sans-serif; /* For clean, readable body text */
}

/* --- Base & Typography --- */
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.3;
    margin-top: 0;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.5rem, 4vw, 1.8rem); }
p { margin-bottom: 1.5rem; margin-top: 0; }
a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-gold-hover); }

/* --- Section Styling --- */
.section {
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--bg-main); /* Default white background */
}
.section-bg {
    background-color: var(--bg-secondary); /* Also white now */
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* --- Components --- */
.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--bg-main);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-button:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

.content-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}
.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

/* --- Page Structure (from Anatomy) --- */

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url('img/Hero_Section_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(17, 24, 39, 0.6); /* Dark overlay for contrast */
    z-index: 1;
}
.hero-section .container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}
.hero-section h1, .hero-section .sub-headline {
    color: #FFFFFF; /* White text on image background */
}
.hero-section .sub-headline {
    font-size: 1.2rem;
    margin: 20px 0 30px 0;
    opacity: 0.9;
}

/* Social Proof / Trust Strip */
.trust-strip {
    padding: 40px 0;
    background-color: #F9FAFB; /* Subtle off-white for this strip */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-strip .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.trust-strip .logos img {
    max-height: 45px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.trust-strip .logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Why Choose Us / Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-item {
    text-align: center;
}
.feature-item .icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
}
.feature-item h3 {
    margin-bottom: 10px;
}

/* Review / Testimonial Section */
.review-card {
    text-align: center;
}
.review-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid var(--accent-gold);
}
.review-card .stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
}
.review-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}
.review-card .author {
    font-weight: 700;
    color: var(--text-primary);
}

/* FAQ Section */
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #F9FAFB;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
    color: var(--accent-gold);
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

/* Final CTA Section */
.final-cta-section {
    background: #F9FAFB;
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #111827;
    color: var(--text-muted);
    padding: 60px 0;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.footer-col h3 {
    color: var(--bg-main);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

/* Swiper Customization */
.swiper-container {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
}
.swiper-pagination-bullet {
    background: var(--border-color);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: var(--accent-gold) !important;
}
