/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.logo i {
    font-size: 2rem;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #1e40af;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    background: none;
    border: none;
    color: #374151;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #1e40af;
}

.browse-btn {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.browse-btn:hover {
    transform: translateY(-1px);
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: #374151;
    padding: 0.5rem 0;
    font-weight: 500;
}

.browse-btn-mobile {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #3730a3 100%);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
}

.bg-circle-1 {
    width: 5rem;
    height: 5rem;
    top: 2.5rem;
    left: 2.5rem;
}

.bg-circle-2 {
    width: 8rem;
    height: 8rem;
    bottom: 2.5rem;
    right: 2.5rem;
}

.bg-circle-3 {
    width: 4rem;
    height: 4rem;
    top: 50%;
    left: 33%;
    background: rgba(251, 191, 36, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e7ff;
    line-height: 1.8;
}

.search-container {
    position: relative;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.search-container input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    outline: none;
}

.search-submit {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Category Filter */
.category-filter {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category-btn.active {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

/* Books Section */
.books-section {
    padding: 4rem 0;
}

.books-header {
    text-align: center;
    margin-bottom: 3rem;
}

.books-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.books-count {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.title-underline {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    margin: 0 auto;
    border-radius: 9999px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Book Card */
.book-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.book-cover {
    position: relative;
    overflow: hidden;
}

.book-cover img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-card:hover .book-cover img {
    transform: scale(1.1);
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-icon {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-icon {
    opacity: 1;
}

.book-icon i {
    color: #1e40af;
}

.book-info {
    padding: 1.5rem;
}

.book-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.book-card:hover .book-title {
    color: #1e40af;
}

.book-author {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.star.empty {
    color: #d1d5db;
}

.rating-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.book-description {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.book-detail {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.book-detail i {
    color: #1e40af;
}

.book-actions {
    display: flex;
    gap: 0.75rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.25);
}

.action-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(30, 64, 175, 0.35);
}

.action-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.action-btn.secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.no-results-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1rem;
}

.no-results-subtitle {
    color: #9ca3af;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #f3f4f6 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #1e40af;
}

.feature-description {
    color: #6b7280;
    line-height: 1.7;
}

.stats-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box:nth-child(1) .stat-number { color: #1e40af; }
.stat-box:nth-child(2) .stat-number { color: #7c3aed; }
.stat-box:nth-child(3) .stat-number { color: #3730a3; }
.stat-box:nth-child(4) .stat-number { color: #ec4899; }

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #e0e7ff 100%);
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    color: #1e40af;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 400px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: #6b7280;
    line-height: 1.7;
}

.faq-cta {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #e0e7ff;
    margin-bottom: 1.5rem;
}

.contact-btn {
    background: white;
    color: #1e40af;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Call to Action Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #3730a3 0%, #7c3aed 50%, #ec4899 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle-4 {
    width: 6rem;
    height: 6rem;
    top: 2.5rem;
    right: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.bg-circle-5 {
    width: 10rem;
    height: 10rem;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #e879f9;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: #7c3aed;
}

.cta-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #7c3aed;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #60a5fa;
    font-size: 2rem;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #374151;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: #60a5fa;
    width: 1.25rem;
}

.footer-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.disclaimer-content {
    background: #374151;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.disclaimer-content h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-badges {
    text-align: right;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .books-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .books-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book-card {
    animation: fadeInUp 0.6s ease forwards;
}

.book-card:nth-child(even) {
    animation-delay: 0.1s;
}

.book-card:nth-child(3n) {
    animation-delay: 0.2s;
}

/* ================================
   Welcome Section
   ================================ */
.welcome-section {
  padding: 80px 0;
  background-color: #f9fafb;
  text-align: center;
}
.welcome-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}
.welcome-section .section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.welcome-section .cta-btn.primary {
  background-color: #2563eb;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}
.welcome-section .cta-btn.primary:hover {
  background-color: #1e40af;
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.contact-section .section-header {
  margin-bottom: 40px;
}
.contact-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
}
.contact-section .section-subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-top: 8px;
}
.contact-section .title-underline {
  width: 60px;
  height: 4px;
  background-color: #2563eb;
  margin-top: 16px;
  border-radius: 2px;
}
.contact-section .contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.contact-section .contact-info {
  margin-bottom: 32px;
}
.contact-section .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-section .info-item i {
  font-size: 1.5rem;
  color: #2563eb;
  margin-right: 16px;
  flex-shrink: 0;
}
.contact-section .info-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}
.contact-section .info-item p {
  font-size: 0.95rem;
  color: #4b5563;
}
.contact-section .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  color: #111827;
  background-color: #f9fafb;
  transition: border-color 0.2s ease;
}
.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background-color: #ffffff;
}
.contact-section .contact-form .cta-btn.primary {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}
.contact-section .contact-form .cta-btn.primary:hover {
  background-color: #1e40af;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
  position: relative;
  padding: 80px 0;
  background-color: #2563eb;
  color: #ffffff;
  overflow: hidden;
}
.cta-section .bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
}
.cta-section .bg-circle-4 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}
.cta-section .bg-circle-5 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}
.cta-section .cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta-section .cta-content h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-section .cta-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.85);
}
.cta-section .cta-buttons .cta-btn {
  margin: 0 8px;
}
.cta-section .cta-btn.secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cta-section .cta-btn.secondary:hover {
  background-color: #ffffff;
  color: #2563eb;
}


.green-button{
    background-color: greenyellow;
}


.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item i {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
}

.info-text h3 {
  margin: 0 0 4px;
  font-size: 1.125rem;
  color: #111827;
}

.info-text p {
  margin: 0;
  color: #4b5563;
  line-height: 1.5;
}



