/* ============================================
   INDEX PAGE - SPECIFIC STYLES
   Fully Responsive - Mobile First
   ============================================ */

/* ============================================
   HERO BANNER
   ============================================ */

.hero-banner {
    position: relative;
    background: linear-gradient(rgba(91,41,6,0.85), rgba(139,69,19,0.85)),url('/uploads/website/hindu.png');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    color: white;
}

.hero-content h1{
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content > p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 100%;
    line-height: 1.6;
}

/* Search Box */
.search-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 100%;
    margin-top: 1.5rem;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.search-form .form-group label i {
    color: var(--accent);
    font-size: 0.85rem;
}

.search-form .form-group select,
.search-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.search-form .form-group select:focus,
.search-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-btn {
    background: var(--accent);
    color: white;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-btn:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 2.5rem 1rem;
    background: var(--bg-section);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   PROFILES SECTION
   ============================================ */

.profiles-section {
    padding: 3rem 1rem;
    background: var(--bg-primary);
}

.profiles-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.profile-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.profile-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.profile-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.profile-info {
    padding: 1.25rem;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.profile-id {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.profile-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.profile-detail i {
    color: var(--accent);
    width: 18px;
    font-size: 0.8rem;
}

.profile-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.8rem;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.profile-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 3rem 1rem;
    background: var(--bg-section);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-card);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ============================================
   SUCCESS STORIES
   ============================================ */

.success-section {
    padding: 3rem 1rem;
    background: white;
}

.stories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.story-card {
    background: var(--bg-highlight);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 4rem;
    color: var(--accent-light);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.story-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.story-quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-name {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ============================================
   INSPIRATION SECTION
   ============================================ */

.inspiration-section {
    padding: 3rem 1rem;
    background: var(--bg-section);
}

.inspiration-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.inspiration-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.inspiration-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.inspiration-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.inspiration-content {
    padding: 1.25rem;
}

.inspiration-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.inspiration-date {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.inspiration-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: var(--gradient-primary);
    padding: 3rem 1rem;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cta-btn-primary,
.cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-btn-primary {
    background: var(--gold);
    color: var(--primary-dark);
}

.cta-btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   TABLET (min-width: 576px)
   ============================================ */

@media (min-width: 576px) {
    .hero-banner {
        padding: 3rem 1.5rem;
        min-height: 75vh;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content > p {
        font-size: 1.1rem;
    }
    
    .search-box {
        padding: 2rem;
    }
    
    .search-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .search-btn {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: auto;
    }
}

/* ============================================
   TABLET LANDSCAPE (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {
    .hero-banner {
        padding: 4rem 2rem;
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content > p {
        font-size: 1.2rem;
        max-width: 600px;
    }
    
    .search-box {
        padding: 2.5rem;
        max-width: 700px;
    }
    
    .stats-section {
        padding: 3.5rem 1.5rem;
    }
    
    .stat-box {
        padding: 1.75rem 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .profiles-section,
    .services-section,
    .success-section,
    .inspiration-section {
        padding: 4rem 1.5rem;
    }
    
    .profile-image {
        height: 280px;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inspiration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-banner {
        padding: 4rem 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* ============================================
   DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
    .hero-banner {
        min-height: 85vh;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content > p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        max-width: 700px;
    }
    
    .search-box {
        max-width: 900px;
        margin-top: 2rem;
    }
    
    .search-form {
        grid-template-columns: repeat(4, 1fr) auto;
        align-items: end;
    }
    
    .search-btn {
        grid-column: auto;
        max-width: none;
        padding: 0.9rem 2rem;
    }
    
    .stats-section {
        padding: 4rem 2rem;
    }
    
    .stat-box {
        padding: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .profiles-section,
    .services-section,
    .success-section,
    .inspiration-section {
        padding: 6rem 2rem;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .profile-image {
        height: 320px;
        font-size: 6rem;
    }
    
    .profile-info {
        padding: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 3rem 2rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
    }
    
    .service-card p {
        font-size: 1.05rem;
    }
    
    .stories-grid {
        gap: 2.5rem;
    }
    
    .story-card {
        padding: 2.5rem;
    }
    
    .story-card::before {
        font-size: 6rem;
    }
    
    .story-quote {
        font-size: 1.05rem;
        line-height: 1.9;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .author-name {
        font-size: 1.2rem;
    }
    
    .inspiration-image {
        height: 250px;
        font-size: 4rem;
    }
    
    .inspiration-content {
        padding: 1.5rem;
    }
    
    .inspiration-title {
        font-size: 1.3rem;
    }
    
    .cta-banner {
        padding: 6rem 2rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-text {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }
}

/* ============================================
   LARGE DESKTOP (min-width: 1200px)
   ============================================ */

@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content > p {
        font-size: 1.4rem;
    }
    
    .search-form .form-group label {
        font-size: 0.95rem;
    }
    
    .search-form .form-group select,
    .search-form .form-group input {
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    .search-btn {
        font-size: 1.1rem;
        padding: 0.9rem 2.5rem;
    }
}
