/* Responsive CSS for UPI Withdrawal Games */

/* Additional Mobile Styles */
@media (max-width: 768px) {
    /* Page Header Styles */
    .page-header {
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .last-updated {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    /* Policy Section Styles */
    .policy-section,
    .disclaimer-section,
    .terms-section {
        margin-bottom: 2rem;
    }
    
    .policy-section h2,
    .disclaimer-section h2,
    .terms-section h2 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .policy-section h3,
    .disclaimer-section h3,
    .terms-section h3 {
        font-size: 1.4rem;
        color: var(--secondary-color);
        margin: 1.5rem 0 0.5rem;
    }
    
    .policy-section ul,
    .disclaimer-section ul,
    .terms-section ul {
        margin-left: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .policy-section li,
    .disclaimer-section li,
    .terms-section li {
        margin-bottom: 0.5rem;
    }
    
    /* Contact Page Styles */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-details p {
        margin-bottom: 0.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-item {
        padding: 1.5rem;
        background: var(--text-light);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .category-item ul {
        margin-left: 1.5rem;
        margin-top: 1rem;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--primary-color);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid var(--border-color);
        border-radius: 6px;
        font-size: 1rem;
        transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(190, 49, 68, 0.1);
    }
    
    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        cursor: pointer;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: auto;
        margin-top: 0.2rem;
    }
    
    .form-submit {
        text-align: center;
        margin-top: 2rem;
    }
    
    /* FAQ Page Styles */
    .faq-search {
        padding: 2rem 0;
    }
    
    .search-container {
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        gap: 0.5rem;
    }
    
    .search-input {
        flex: 1;
        padding: 12px;
        border: 2px solid var(--border-color);
        border-radius: 6px;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 12px 24px;
        background: var(--accent-color);
        color: var(--text-light);
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
    }
    
    .category-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 20px;
        background: var(--text-light);
        border: 2px solid var(--border-color);
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: var(--transition);
    }
    
    .tab-btn.active,
    .tab-btn:hover {
        background: var(--accent-color);
        color: var(--text-light);
        border-color: var(--accent-color);
    }
    
    .faq-category {
        display: none;
    }
    
    .faq-category.active {
        display: block;
    }
    
    .faq-item {
        background: var(--text-light);
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: var(--shadow);
        overflow: hidden;
    }
    
    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--background-light);
    }
    
    .faq-question h3 {
        margin: 0;
        font-size: 1.2rem;
        color: var(--primary-color);
    }
    
    .faq-toggle {
        font-size: 1.5rem;
        color: var(--accent-color);
        font-weight: bold;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        display: none;
    }
    
    .faq-answer.active {
        display: block;
    }
    
    .faq-answer p {
        margin: 0;
        color: var(--text-muted);
        line-height: 1.6;
    }
    
    .helpful-links ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }
    
    .helpful-links li {
        margin-bottom: 0.5rem;
    }
    
    .helpful-links a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
    }
    
    .helpful-links a:hover {
        text-decoration: underline;
    }
    
    /* About Page Styles */
    .mission-section,
    .vision-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .mission-content,
    .vision-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
        background: var(--text-light);
        border-radius: 8px;
        box-shadow: var(--shadow);
        text-align: center;
    }
    
    .timeline {
        position: relative;
        padding: 2rem 0;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--accent-color);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 2rem;
        width: 45%;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) {
        left: 55%;
        text-align: left;
    }
    
    .timeline-year {
        background: var(--accent-color);
        color: var(--text-light);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        display: inline-block;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        background: var(--text-light);
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        text-align: center;
        background: var(--text-light);
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
    }
    
    .position {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* 404 Page Styles */
    .error-404 {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .error-number {
        font-size: 8rem;
        font-weight: bold;
        color: var(--accent-color);
        margin-bottom: 1rem;
        line-height: 1;
    }
    
    .error-content h1 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .error-content p {
        font-size: 1.2rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .error-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 3rem;
    }
    
    .helpful-links,
    .search-suggestion {
        margin-top: 2rem;
        padding: 2rem;
        background: var(--background-light);
        border-radius: 8px;
    }
    
    .helpful-links h3,
    .search-suggestion h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    /* Still Have Questions Section */
    .still-have-questions {
        padding: 60px 0;
        background: var(--background-light);
        text-align: center;
    }
    
    .questions-content h2 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .questions-content p {
        color: var(--text-muted);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .questions-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Office Locations */
    .office-locations {
        padding: 60px 0;
        background: var(--text-light);
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
        background: var(--background-light);
        border-radius: 8px;
        text-align: center;
    }
    
    .location-card h3 {
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
    
    .location-card p {
        margin-bottom: 0.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        width: 40%;
    }
    
    .timeline-item:nth-child(even) {
        left: 60%;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop Styles */
@media (min-width: 1025px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .timeline-item {
        width: 40%;
    }
    
    .timeline-item:nth-child(even) {
        left: 60%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
        margin-top: 0 !important;
    }
    
    .hero-title {
        color: black !important;
    }
    
    .page-header {
        padding: 20px 0 !important;
    }
    
    .page-header h1 {
        color: black !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .faq-question {
        background: white !important;
        border-bottom: 1px solid #ccc !important;
    }
    
    .faq-answer {
        display: block !important;
    }
} 