/* --- Dhanlaxmi Developer - Landing Page Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
    --primary-orange: #D97706;
    --primary-orange-dark: #b45309;
    --dark-blue: #1e293b; /* For text */
    --light-gray: #f1f5f9;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: var(--dark-blue);
    background-color: var(--white);
    line-height: 1.6;
}

/* --- Reusable Container --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
    background-color: var(--white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.firm-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.firm-logo svg {
    height: 40px;
    width: 40px;
    color: var(--primary-orange);
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

.header-btn {
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
}

.btn-login {
    background-color: #fef3c7; /* Amber 100 */
    color: var(--primary-orange-dark);
}

.btn-login:hover {
    background-color: #fde68a; /* Amber 200 */
}

.btn-register {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-register:hover {
    background-color: var(--primary-orange-dark);
}

/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(20, 30, 40, 0.6), rgba(20, 30, 40, 0.6)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* --- Section Styling --- */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-light {
    background-color: var(--light-gray);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* --- Investment Plan Section --- */
.plan-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}
.plan-header {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 2rem;
}
.plan-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}
.plan-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}
.plan-body {
    padding: 2rem;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}
.plan-features li:last-child {
    border-bottom: none;
}
.plan-features i {
    color: var(--primary-orange);
    font-size: 1.25rem;
}
.plan-features strong {
    color: var(--dark-blue);
}
.plan-cta {
    margin-top: 2rem;
}


/* --- Why Choose Us Section --- */
.features-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    background-color: #fffbeb; /* Amber 50 */
    padding: 1rem;
    border-radius: 50%;
    min-width: 56px;
    text-align: center;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-blue);
    color: var(--light-gray);
    padding: 3rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer-content {
    text-align: center;
}

.footer-content h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary-orange);
}

.footer-copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .firm-logo span {
       display: none;
    }
    .header-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    .hero {
        padding: 4rem 0;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .plan-features {
        font-size: 0.9rem;
    }
}

