/* main.css - Main site styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff7ff;
    color: #333;
    line-height: 1.6;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
 

/* Hide WordPress auto-generated page titles */
.entry-title,
.page-title,
.ast-single-post .entry-header {
    display: none !important;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid;
}

.feature-card:nth-child(1) {
    border-color: #ff6b6b;
}

.feature-card:nth-child(2) {
    border-color: #ffa500;
}

.feature-card:nth-child(3) {
    border-color: #6bcf7f;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card:nth-child(1) i {
    color: #ff6b6b;
}

.feature-card:nth-child(2) i {
    color: #ffa500;
}

.feature-card:nth-child(3) i {
    color: #6bcf7f;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    text-align: center;
    font-size: 1rem;
}

.hero-section {
    background: #764ba2;
    color: yellow;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 600px;
    color: yellow;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* ========================================
   BOOKS PAGE STYLES
======================================== */

.books-main {
    background-color: #fff7ff;
    padding-bottom: 60px;
}

.books-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Books Grid */
.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Available Book Cards */
.book-card.available {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 6px solid #a8d5ba;
}

.book-card.available:nth-child(2) {
    border-top-color: #9ad1d4;
}

.book-card.available:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.book-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f8f9fa;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-card.available:hover .book-image img {
    transform: scale(1.05);
}

.book-content {
    padding: 30px;
}

.book-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.book-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    text-align: left;
}

.book-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #a8d5ba, #9ad1d4);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 213, 186, 0.3);
}

.book-cta-btn:hover {
    background: linear-gradient(135deg, #9ad1d4, #a8d5ba);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 213, 186, 0.5);
}

.book-cta-btn i {
    font-size: 1.2rem;
}

/* Upcoming Book Cards */
.book-card.upcoming {
    background: white;
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid #e9ecef;
    border-left: 6px solid #ffa500;
    position: relative;
}

.book-card.upcoming:nth-child(2) {
    border-left-color: #ff6b6b;
}

.book-card.upcoming:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #dee2e6;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffa500, #ff6b6b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(255, 165, 0, 0.3);
}

.coming-soon-badge i {
    font-size: 1rem;
}

.book-card.upcoming .book-title {
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.book-card.upcoming .book-description {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Upcoming Section Styling */
.upcoming-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 60px;
}

/* Books CTA Section */
.books-cta {
    background: linear-gradient(135deg, #a8d5ba 0%, #9ad1d4 100%);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    color: #2c3e50;
    margin-top: 80px;
}

.books-cta .cta-content h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.books-cta .cta-content p {
    color: #2c3e50;
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Books Page Responsive */
@media (max-width: 968px) {
    .books-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .book-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .book-title {
        font-size: 1.5rem;
    }
    
    .book-description {
        font-size: 1rem;
    }
    
    .upcoming-section {
        padding: 40px 20px;
    }
    
    .books-cta {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .book-content {
        padding: 25px 20px;
    }
    
    .book-card.upcoming {
        padding: 30px 25px;
    }
    
    .book-title {
        font-size: 1.4rem;
    }
}

/* ========================================
   END BOOKS PAGE STYLES
======================================== */

/* Contact Hero Section */
.contact-hero {
    color: #2c3e50;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: #2c3e50;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Information */
.contact-info h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-intro {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 1.2rem;
}

.contact-details p {
    color: #555;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details small {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Contact Social */
.contact-social h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.social-links {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.email:hover {
    background: #a8d5ba;
    color: white;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8d5ba;
    box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #a8d5ba, #9ad1d4);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #9ad1d4, #a8d5ba);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.4);
}

/* Location Section */
.location-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin-bottom: 60px;
}

.location-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-section p {
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.location-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.placeholder-content h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.placeholder-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Contact Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-method {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 20px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .location-section {
        padding: 40px 20px;
    }
    
    .location-placeholder {
        padding: 40px 20px;
    }
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #a8d5ba 0%, #9ad1d4 100%);
    color: #2c3e50;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.blog-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.blog-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: #2c3e50;
}

/* Blog Main Content */
.blog-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Simplified Blog Grid - Single Column */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

/* Simplified Blog Card - Text Only */
.blog-card {
    background: white;
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #a8d5ba;
}

.blog-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    border-left-color: #6bcf7f;
}

/* Blog Meta Information */
.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #6c757d;
    align-items: center;
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-category {
    display: inline-block;
    background: #a8d5ba;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Title */
.blog-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
    font-weight: 700;
}

/* Blog Excerpt */
.blog-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Read More Link */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a8d5ba;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #6bcf7f;
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Load More Button */
.blog-load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: linear-gradient(135deg, #a8d5ba, #9ad1d4);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 213, 186, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 213, 186, 0.4);
    background: linear-gradient(135deg, #9ad1d4, #a8d5ba);
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 80px 20px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-main {
        padding: 30px 15px 60px;
    }
    
    .blog-card {
        padding: 25px 30px;
    }
    
    .blog-title {
        font-size: 1.5rem;
    }
    
    .blog-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .blog-card {
        padding: 20px 25px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
}

/* About Sections */
.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5rem;
}

/* Mission Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    text-align: left;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #a8d5ba;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Images */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.value-icon i {
    font-size: 2rem;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    border-radius: 15px;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.member-role {
    color: #a8d5ba;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.member-bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.member-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #a8d5ba;
    color: white;
    transform: translateY(-3px);
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #a8d5ba 0%, #9ad1d4 100%);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    color: #2c3e50;
}

.cta-content h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-content p {
    color: #2c3e50;
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: #2c3e50;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Book Actions Container */
.book-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Resources Button */
.book-resources-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffa500, #ff6b6b);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.book-resources-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
}

.book-resources-btn i {
    font-size: 1.2rem;
}

/* Responsive adjustments for book actions */
@media (max-width: 480px) {
    .book-actions {
        flex-direction: column;
    }
    
    .book-cta-btn,
    .book-resources-btn {
        width: 100%;
        justify-content: center;
    }
}

 /* Footer with Rainbow Background */
.footer {
    margin-top: 30px;
}

.footer-rainbow-bg {
    background: repeating-linear-gradient(
        90deg,
        #ff6b6b 0%, #ff6b6b 4.76%,
        #ffa500 4.76%, #ffa500 9.52%,
        #ffd93d 9.52%, #ffd93d 14.28%,
        #6bcf7f 14.28%, #6bcf7f 19.04%,
        #4d96ff 19.04%, #4d96ff 23.8%,
        #9b59b6 23.8%, #9b59b6 28.56%,
        #ff6b9d 28.56%, #ff6b9d 33.33%,
        #ff6b6b 33.33%, #ff6b6b 38.09%,
        #ffa500 38.09%, #ffa500 42.85%,
        #ffd93d 42.85%, #ffd93d 47.61%,
        #6bcf7f 47.61%, #6bcf7f 52.37%,
        #4d96ff 52.37%, #4d96ff 57.13%,
        #9b59b6 57.13%, #9b59b6 61.89%,
        #ff6b9d 61.89%, #ff6b9d 66.65%,
        #ff6b6b 66.65%, #ff6b6b 71.41%,
        #ffa500 71.41%, #ffa500 76.17%,
        #ffd93d 76.17%, #ffd93d 80.93%,
        #6bcf7f 80.93%, #6bcf7f 85.69%,
        #4d96ff 85.69%, #4d96ff 90.45%,
        #9b59b6 90.45%, #9b59b6 95.21%,
        #ff6b9d 95.21%, #ff6b9d 100%
    );
    background-size: 100% 100%;
    padding: 7px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    background: white;
    width: 100%;
    border-radius: 0;
    padding: 15px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Footer Social Media Icons */
.footer-social {
    margin-bottom: 15px;
    text-align: center;
}

.footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    margin: 0 8px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-icon:hover {
    background: #6bcf7f;
    color: white;
    transform: translateY(-3px);
}

.footer .social-icon i {
    font-size: 1.2rem;
}

/* Footer Action Buttons */
.footer-actions {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.footer-action-btn {
    background: linear-gradient(135deg, #6bcf7f, #4d96ff);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.footer-action-btn:hover {
    background: linear-gradient(135deg, #4d96ff, #6bcf7f);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-action-btn i {
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    margin-bottom: 15px;
    text-align: center;
}

.footer-link {
    color: #2c3e50;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #6bcf7f;
    text-decoration: underline;
}

.link-separator {
    color: rgba(44, 62, 80, 0.5);
    margin: 0 5px;
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 10px;
    opacity: 0.8;
    color: #2c3e50;
    text-align: center;
    font-size: 0.85rem;
}

.footer-copyright p {
    margin: 0;
}

/* Mobile Responsive Design */
@media (max-width: 900px) {
    .footer-content {
        padding: 20px 25px;
    }
    
    .footer-actions {
        gap: 8px;
    }
    
    .footer-action-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-rainbow-bg {
        padding: 10px 0;
    }
    
    .footer-content {
        padding: 25px 20px;
    }
    
    /* Stack social icons in 2 rows if needed */
    .footer-social {
        margin-bottom: 20px;
    }
    
    .footer .social-icon {
        margin: 5px 6px;
    }
    
    /* Action buttons in 2-3 columns */
    .footer-actions {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .footer-action-btn {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 100px;
        max-width: 150px;
        justify-content: center;
        padding: 10px 12px;
    }
    
    /* Legal links stack vertically */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .footer-link {
        margin: 0;
        padding: 5px 0;
    }
    
    .link-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 20px 15px;
    }
    
    /* Social icons slightly smaller */
    .footer .social-icon {
        width: 36px;
        height: 36px;
        margin: 4px 5px;
    }
    
    .footer .social-icon i {
        font-size: 1rem;
    }
    
    /* Action buttons stack in 2 columns */
    .footer-actions {
        gap: 8px;
    }
    
    .footer-action-btn {
        flex: 1 1 calc(50% - 8px);
        min-width: 120px;
        max-width: none;
        font-size: 0.8rem;
        padding: 10px 10px;
    }
    
    .footer-action-btn i {
        font-size: 0.85rem;
    }
    
    /* Copyright text smaller */
    .footer-copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    /* Very small screens - full width buttons */
    .footer-action-btn {
        flex: 1 1 100%;
        max-width: 100%;
    }
}