/* Home Page Specific CSS */

:root {
    --primary-color: #2C2A4C;
    --secondary-color: #E7A51B;
    --background-color: #f5f5f5;
    --surface-color: #ffffff;
    --text-primary: #212121;
    --text-secondary: #757575;
    --shadow-color: rgba(0, 0, 0, 0.12);
    --accent-color: #F7C873;
    --success-color: #4CAF50;
    --danger-color: #E53935;
    --border-radius: 16px;
}

/* Body and Layout */
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}

.main-content {
    padding: 0;
    margin: 0;
    background: var(--background-color);
}

/* 1. Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 44px;
    white-space: nowrap;
}

.hero-btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* 2. Notification Section */
.notification-section {
    background: var(--surface-color);
    margin: 2rem auto;
    max-width: 800px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px var(--shadow-color);
    overflow: hidden;
}

.notification-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    transition: background 0.3s ease;
}

.notification-toggle:hover {
    background: #3a3564;
}

.toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.notification-form {
  
    padding: 2rem;
    background: var(--surface-color);
}

.notification-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Category Selection Button and Modal Styles */
.category-select-container {
    position: relative;
    width: 100%;
}

.category-select-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 20px;
    width: 100%;
    text-align: left;
    font-size: 1rem;
}

.category-select-btn:hover {
    border-color: var(--secondary-color);
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-select-btn:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 165, 27, 0.1);
}

.category-select-btn i {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.category-select-btn:hover i {
    transform: translateX(3px);
}

/* Category Modal Styles */
.category-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.category-modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.category-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}

.category-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-modal-header h3 i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.6rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.category-modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.category-search-section {
    padding: 15px 20px 12px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    flex-shrink: 0;
}

.search-container {
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 10px 18px 10px 42px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.search-container input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 165, 27, 0.1);
}

.search-container .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
}

.category-select-all {
    padding: 12px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.select-all-label {
    font-weight: 600;
    color: var(--primary-color);
}

.category-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #f0f0f0;
    min-height: 0;
}

.category-list::-webkit-scrollbar {
    width: 6px;
}

.category-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.category-list::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

.category-list::-webkit-scrollbar-thumb:hover {
    background: #d4921a;
}

.category-checkbox-label {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    min-height: 42px;
}

.category-checkbox-label:hover {
    background: #f8f9fa;
    padding-left: 24px;
}

.category-checkbox-label:last-child {
    border-bottom: none;
}

.category-checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-right: 14px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-checkbox-label input[type="checkbox"]:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.category-checkbox-label input[type="checkbox"]:indeterminate {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Checkmark styles handled by ::after pseudo-elements */

.category-checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.category-checkbox-label input[type="checkbox"]:indeterminate::after {
    content: '−';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.category-name {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.3;
    flex: 1;
}

.category-modal-footer {
    background: #fafafa;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.selected-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 90px;
    justify-content: center;
}

.modal-btn-cancel {
    background: transparent;
    border: 2px solid #ddd;
    color: var(--text-secondary);
}

.modal-btn-cancel:hover {
    background: #f8f9fa;
    border-color: #bbb;
    transform: translateY(-1px);
}

.modal-btn-confirm {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4921a 100%);
    border: none;
    color: white;
    box-shadow: 0 3px 12px rgba(231, 165, 27, 0.3);
}

.modal-btn-confirm:hover {
    background: linear-gradient(135deg, #d4921a 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(231, 165, 27, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .category-modal {
        padding: 5px;
    }
    
    .category-modal-content {
        max-width: 98vw;
        max-height: 98vh;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border-radius: 8px;
    }
    
    .category-modal-header {
        padding: 12px 16px;
        border-radius: 8px 8px 0 0;
    }
    
    .category-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .category-search-section,
    .category-select-all,
    .category-modal-footer {
        padding: 12px 16px;
    }
    
    .category-checkbox-label {
        padding: 6px 16px;
        min-height: 38px;
    }
    
    .category-checkbox-label:hover {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .category-modal {
        padding: 2px;
    }
    
    .category-modal-content {
        max-width: 99vw;
        max-height: 99vh;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        border-radius: 6px;
    }
    
    .category-modal-header {
        padding: 10px 14px;
        border-radius: 6px 6px 0 0;
    }
    
    .category-modal-header h3 {
        font-size: 1rem;
    }
    
    .modal-close-btn {
        width: 30px;
        height: 30px;
        font-size: 1.4rem;
    }
    
    .category-search-section,
    .category-select-all,
    .category-modal-footer {
        padding: 10px 14px;
    }
    
    .category-checkbox-label {
        padding: 5px 14px;
        min-height: 36px;
    }
    
    .category-checkbox-label:hover {
        padding-left: 18px;
    }
    
    .modal-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .modal-btn {
        width: 100%;
        padding: 12px 16px;
    }
}

/* Desktop - larger modal for better UX */
@media (min-width: 1024px) {
    .category-modal {
        padding: 15px;
    }
    
    .category-modal-content {
        max-width: 90vw;
        max-height: 90vh;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }
    
    .category-checkbox-label {
        padding: 10px 20px;
        min-height: 44px;
    }
    
    .category-checkbox-label:hover {
        padding-left: 24px;
    }
}

#categories-display {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#categories-display.placeholder {
    color: var(--text-secondary);
}

/* Mobile responsive styles for multi-select */
@media (max-width: 768px) {
    .multi-select-dropdown {
        border-radius: 0 0 8px 8px;
    }
    
    .multi-select-options {
        max-height: 280px; /* Show approximately 7-8 options on tablet */
    }
    
    .multi-select-search {
        padding: 10px 12px;
    }
    
    .multi-select-search input {
        padding: 6px 35px 6px 10px;
        font-size: 0.85rem;
    }
    
    .multi-select-option {
        padding: 0.6rem 0.8rem;
    }
    
    .multi-select-option span {
        font-size: 0.9rem;
    }
    
    .multi-select-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }
    
    #categories-display {
        font-size: 0.9rem;
    }
}

.notify-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 280px;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    margin: 1rem auto;
    border: 2px solid #25D366;
}

.notify-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    border-color: #128C7E;
}

.whatsapp-notify-btn {
    background: #25D366;
    position: relative;
    overflow: hidden;
}

.whatsapp-notify-btn i {
    font-size: 1.3rem;
    margin-right: 0;
}

.whatsapp-notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-notify-btn:hover::before {
    left: 100%;
}

/* Sponsor Section within Notification Form */
.sponsor-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fef7f0 100%);
    border: 2px solid #f0a8a8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(240, 168, 168, 0.1);
}

.sponsor-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sponsor-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d, #e74c3c);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.sponsor-text h4 {
    margin: 0 0 0.75rem 0;
    color: #d63384;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sponsor-text p {
    margin: 0 0 1.25rem 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sponsor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sponsor-btn,
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sponsor-btn {
    background: linear-gradient(135deg, #ff6b9d, #e74c3c);
    color: white;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.sponsor-btn:hover {
    background: linear-gradient(135deg, #e55a8a, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.learn-more-btn {
    background: transparent;
    color: #6f42c1;
    border-color: #6f42c1;
}

.learn-more-btn:hover {
    background: #6f42c1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.3);
}

.sponsor-btn .material-icons,
.learn-more-btn .material-icons {
    font-size: 1.1rem;
}

/* Responsive design for sponsor section */
@media (max-width: 768px) {
    .sponsor-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sponsor-actions {
        justify-content: center;
    }
    
    .sponsor-btn,
    .learn-more-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

/* 3. User Cards Section */
.user-cards-section {
    padding: 4rem 2rem;
    background: var(--background-color);
}

.user-cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.user-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px var(--shadow-color);
}

.user-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 42, 76, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-stat {
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-cta {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* 4. Trust Section */
.trust-section {
    padding: 4rem 2rem;
    background: var(--surface-color);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.trust-counters h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.counter-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.counter-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.trust-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logos-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.logos-grid img {
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logos-grid img:hover {
    opacity: 1;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
}

/* 5. How It Works Section */
.how-it-works-section {
    padding: 4rem 2rem;
    background: var(--background-color);
    text-align: center;
}

.how-it-works-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.step-item {
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    color: var(--secondary-color);
    font-size: 2rem;
}

/* 6. Referral Section */
.referral-section {
    padding: 2rem;
    background: var(--surface-color);
}

.referral-banner {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.referral-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.referral-emoji {
    font-size: 2rem;
}

.referral-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.referral-cta {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.referral-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 7. Impact Section */
.impact-section {
    padding: 4rem 2rem;
    background: var(--background-color);
    text-align: center;
}

.impact-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.impact-gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.impact-story {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.impact-story:hover {
    transform: translateY(-5px);
}

.story-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-quote {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.story-location {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 8. Discovery Section */
.discovery-section {
    padding: 4rem 2rem;
    background: var(--surface-color);
}

.discovery-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.discovery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.discovery-filters {
    margin-bottom: 2rem;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 1rem;
    width: fit-content;
}

.filters-content {
    display: none;
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.filter-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-badge {
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-badge.active,
.filter-badge:hover {
    background: var(--primary-color);
    color: white;
}

.filter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.discovery-camps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.camp-preview-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px var(--shadow-color);
    position: relative;
}

.camp-urgency {
    background: var(--danger-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: 1rem;
}

.camp-preview-card h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    font-weight: 700;
}

.camp-preview-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.camp-cta {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.camp-cta:hover {
    background: var(--primary-color);
    color: white;
}

/* 9. FAQs Section */
.faqs-section {
    padding: 4rem 2rem;
    background: var(--background-color);
}

.faqs-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-category {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 2px 12px var(--shadow-color);
}

.faq-category h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem 0;
}

.faq-answer {
    display: none;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

/* 10. Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(44, 42, 76, 0.3);
    display: none;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(44, 42, 76, 0.4);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 1rem;
    cursor: pointer;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-btn {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .referral-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .user-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-gallery {
        grid-template-columns: 1fr;
    }
    
    .discovery-camps {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .notification-section {
        margin: 1rem;
    }
    
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        border-radius: 12px;
        justify-content: center;
    }
    
    .sticky-cta-content {
        flex: 1;
        justify-content: center;
    }
    
    .step-arrow {
        display: none;
    }
    
    /* Adjust section padding for mobile */
    .user-cards-section,
    .trust-section,
    .how-it-works-section,
    .impact-section,
    .discovery-section,
    .faqs-section {
        padding: 2rem 1rem;
    }
    
    /* Mobile-friendly text sizes */
    .trust-counters h2,
    .how-it-works-section h2,
    .impact-section h2,
    .discovery-section h2,
    .faqs-section h2 {
        font-size: 2rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .notification-toggle {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Multi-select on small mobile */
    .multi-select-options {
        max-height: 240px; /* Show approximately 6 options on small mobile */
    }
    
    .multi-select-option {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .multi-select-search input {
        padding: 5px 30px 5px 8px;
        font-size: 0.8rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
}

 
 / *   S w e e t A l e r t   C u s t o m   S t y l e s   * / 
 . n o t i f i c a t i o n - s u c c e s s - p o p u p   { 
         b o r d e r - r a d i u s :   1 6 p x   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 } 
 
 . n o t i f i c a t i o n - s u c c e s s - t i t l e   { 
         c o l o r :   # 2 d 3 7 4 8   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 . 8 r e m   ! i m p o r t a n t ; 
 } 
 
 . n o t i f i c a t i o n - s u c c e s s - b t n   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 2 5 D 3 6 6   0 % ,   # 1 2 8 C 7 E   1 0 0 % )   ! i m p o r t a n t ; 
         c o l o r :   w h i t e   ! i m p o r t a n t ; 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   8 p x   ! i m p o r t a n t ; 
         p a d d i n g :   1 2 p x   2 4 p x   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 r e m   ! i m p o r t a n t ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 3 )   ! i m p o r t a n t ; 
 } 
 
 . n o t i f i c a t i o n - s u c c e s s - b t n : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x )   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   6 p x   1 6 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 4 )   ! i m p o r t a n t ; 
 }  
 /* SweetAlert Custom Styles */
.notification-success-popup {
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.notification-success-title {
    color: #2d3748 !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
}

.notification-success-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
}

.notification-success-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4) !important;
}
