/* Reset and Base Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --error-color: #dc2626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    padding-top: 0; /* Remove any top padding */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed; /* Change to fixed */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: #4a6cf7;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 25px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a6cf7;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #4a6cf7;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 1rem;
    background-color: var(--light-gray);
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-section p {
    font-size: 1.25rem;
    color: #4b5563;
}

/* Search Section */
.search-section {
    padding: 2rem 1rem;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tab Styles */
.active-tab {
    border-bottom-color: #3B82F6;
    color: #2563EB;
    border-bottom-width: 2px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Tab Navigation */
[role="tablist"] {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 1.5rem;
}

[role="tab"] {
    position: relative;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #6B7280;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

[role="tab"]:hover {
    color: #4B5563;
}

[role="tab"].active-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3B82F6;
}

/* Hide utility class */
.hidden {
    display: none !important;
}

/* Form Styles */
.search-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select:disabled {
    background-color: #F3F4F6;
    cursor: not-allowed;
}

/* Button Styles */
.btn-primary {
    background-color: #3B82F6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #2563EB;
}

.btn-primary:disabled {
    background-color: #93C5FD;
    cursor: not-allowed;
}

/* Results Section */
.results-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    padding: 10px;
    background: #F9FAFB;
    border-radius: 6px;
}

.detail-item .label {
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 4px;
    display: block;
}

.detail-item .value {
    color: #111827;
    font-size: 16px;
}

/* Loading Spinner */
.loading-spinner {
    border: 4px solid #F3F4F6;
    border-top: 4px solid #3B82F6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Messages */
.error-message {
    color: #DC2626;
    font-size: 14px;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 640px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form {
        padding: 15px;
    }
    
    .form-group select,
    .form-group input {
        font-size: 14px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e9ecef;
}

.footer-section p {
    color: #e9ecef;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4a6cf7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #4a6cf7;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    margin: 5px 0;
    font-size: 14px;
}

/* Responsive Styles for Header and Footer */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu li {
        margin: 0 0 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 15px;
        margin-top: 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* About Page Styles */
.about-section {
    padding: 4rem 1rem;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.about-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-section h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 1rem;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-method p {
    color: #6b7280;
    margin-bottom: 0;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--secondary-color);
}

.social-connect {
    text-align: center;
}

.social-connect h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.social-connect .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-connect .social-links a {
    color: #4b5563;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-connect .social-links a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: var(--success-color);
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: var(--error-color);
    border: 1px solid #fecaca;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-section h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Policy Page Styles */
.policy-section {
    padding: 4rem 1rem;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-text {
    color: #4b5563;
    line-height: 1.8;
}

.policy-text .last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-text h2 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.policy-text h3 {
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.policy-text p {
    margin-bottom: 1rem;
}

.policy-text ul {
    list-style: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-text ul li {
    margin-bottom: 0.5rem;
}

.policy-text .contact-info {
    list-style: none;
    padding-left: 0;
}

.policy-text .contact-info li {
    margin-bottom: 0.5rem;
}

.policy-text .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-text .contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-section h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-text h2 {
        font-size: 1.3rem;
    }

    .policy-text h3 {
        font-size: 1.1rem;
    }
}

/* Service Indicator */
.service-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-indicator.available {
    background-color: #DEF7EC;
    color: #03543F;
}

.service-indicator.unavailable {
    background-color: #FDE8E8;
    color: #9B1C1C;
}

.service-indicator i {
    font-size: 1rem;
}

/* Card Styles */
.detail-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #2563EB);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 24px;
    color: #3B82F6;
    margin-bottom: 1rem;
    animation: fadeIn 0.5s ease;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-content {
    color: #4B5563;
}

.card-content p {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content strong {
    color: #374151;
    min-width: 100px;
}

/* Copy Button */
.copy-btn {
    padding: 0.5rem;
    background: #EFF6FF;
    border: none;
    border-radius: 6px;
    color: #3B82F6;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: #DBEAFE;
    transform: scale(1.05);
}

.copy-btn i {
    font-size: 1rem;
}

/* QR Code Section */
.qr-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Share Buttons */
.share-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.share-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.share-btn[data-platform="facebook"] {
    background-color: #1877F2;
}

.share-btn[data-platform="twitter"] {
    background-color: #1DA1F2;
}

.share-btn[data-platform="whatsapp"] {
    background-color: #25D366;
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(110%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-card {
    animation: fadeIn 0.5s ease;
    animation-fill-mode: both;
}

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }
.detail-card:nth-child(4) { animation-delay: 0.4s; }
.detail-card:nth-child(5) { animation-delay: 0.5s; }

/* Copy Button Small */
.copy-btn-small {
    padding: 0.25rem;
    background: #EFF6FF;
    border: none;
    border-radius: 4px;
    color: #3B82F6;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.copy-btn-small:hover {
    background: #DBEAFE;
    transform: scale(1.05);
}

/* Content Section Animations */
.content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.content-section.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects for Cards */
.detail-card p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.detail-card p:hover {
    background-color: #F3F4F6;
}

.detail-card strong {
    min-width: 80px;
    margin-right: 0.5rem;
}

/* FAQ Hover Effects */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
}

/* Benefits Icons Animation */
.benefit-icon {
    transition: transform 0.3s ease;
}

.benefit-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Content Section Spacing */
.content-section + .content-section {
    margin-top: 4rem;
}

/* Improved Card Spacing */
.card-content p {
    margin-bottom: 1rem;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Navigation Icon */
.nav-icon {
    color: #3B82F6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-icon:hover {
    color: #2563EB;
    transform: scale(1.1);
}

/* Dropdown Menu Animation */
.group-hover\:block {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Section Stagger Animation */
.content-section:nth-child(1) { transition-delay: 0.1s; }
.content-section:nth-child(2) { transition-delay: 0.2s; }
.content-section:nth-child(3) { transition-delay: 0.3s; }
.content-section:nth-child(4) { transition-delay: 0.4s; }

/* Improved Spacing for Labels */
.card-content strong {
    display: inline-block;
    min-width: 100px;
    color: #4B5563;
}

/* Service Indicator Improvements */
.service-indicator {
    margin: 0.25rem 0;
    padding: 0.5rem 0.75rem;
}

/* FAQ Section Improvements */
.faq-section h3 {
    position: relative;
    padding-left: 2rem;
}

.faq-section h3 i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Benefits Section Improvements */
.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-card:hover::after {
    transform: translateX(100%);
}

/* Popular Banks Section */
.bank-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: #3b82f6;
}

.bank-card h4 {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.bank-card:hover h4 {
    color: #3b82f6;
}

.bank-card p {
    margin: 0;
    opacity: 0.7;
}

/* Popular Banks Section */
.popular-banks-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bank category section spacing */
.bank-category + .bank-category {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E7EB;
}

/* Counter Badge Styles */
.counter-badge {
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.counter-badge .counter {
    display: inline-block;
    min-width: 1.5em;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Card Animations */
.info-card {
    animation: fadeIn 0.5s ease-out;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Remove hover effects from footer and other sections */
.footer-section a {
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Remove hover effects from footer divs in index.html */
body.home-page .footer-section > div {
    transition: none !important;
    transform: none !important;
    background-color: transparent !important;
}

body.home-page .footer-section > div:hover {
    transform: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Remove global hover effects */
.content-section > div:hover::before,
.prose:hover::before,
.grid > div:hover::before {
    opacity: 0;
}

.content-section > div:hover,
.prose:hover,
.grid > div:hover {
    transform: none;
    box-shadow: none;
}

/* Keep hover effects only for interactive elements */
.nav-menu a:hover,
.btn-primary:hover,
.copy-btn:hover {
    transform: translateY(-2px);
}

/* Remove animation from non-interactive elements */
.footer-section *,
.footer-bottom * {
    animation: none !important;
    transform: none !important;
}

/* Remove blur hover effect from footer in index.html */
body.home-page .footer-section *,
body.home-page .footer-bottom * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
}

/* Override footer hover effects in index.html */
body.home-page .footer-section a:hover,
body.home-page .footer-section ul li a:hover {
    color: inherit !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

/* Completely remove all hover effects from footer in index.html */
body.home-page .footer-section a,
body.home-page .footer-section ul li a,
body.home-page .footer-section div,
body.home-page .footer-section h3,
body.home-page .footer-section i {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

body.home-page .footer-section a:hover,
body.home-page .footer-section ul li a:hover,
body.home-page .footer-section div:hover,
body.home-page .footer-section h3:hover,
body.home-page .footer-section i:hover {
    color: inherit !important;
    transform: none !important;
    animation: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    background-color: transparent !important;
}

/* Override Tailwind hover classes in footer */
body.home-page .footer-section .hover\:text-white,
body.home-page .footer-section .hover\:bg-blue-600,
body.home-page .footer-section .hover\:bg-gray-800,
body.home-page .footer-section .hover\:scale-110,
body.home-page .footer-section .hover\:rotate-12,
body.home-page .footer-section .hover\:shadow-lg,
body.home-page .footer-section .hover\:shadow-xl,
body.home-page .footer-section .hover\:-translate-y-1,
body.home-page .footer-section .hover\:-translate-y-2 {
    transition: none !important;
    transform: none !important;
    color: inherit !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

body.home-page .footer-section .hover\:text-white:hover,
body.home-page .footer-section .hover\:bg-blue-600:hover,
body.home-page .footer-section .hover\:bg-gray-800:hover,
body.home-page .footer-section .hover\:scale-110:hover,
body.home-page .footer-section .hover\:rotate-12:hover,
body.home-page .footer-section .hover\:shadow-lg:hover,
body.home-page .footer-section .hover\:shadow-xl:hover,
body.home-page .footer-section .hover\:-translate-y-1:hover,
body.home-page .footer-section .hover\:-translate-y-2:hover {
    transition: none !important;
    transform: none !important;
    color: inherit !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Restrict hover effects to main content cards only */
.main-content .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.main-content .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #2563EB);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-content .info-card:hover::before {
    transform: scaleX(1);
}

/* Remove hover effects from About, How to Use, and other static sections */
.about-section *,
.how-to-use-section *,
.faq-section * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.about-section *:hover,
.how-to-use-section *:hover,
.faq-section *:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Keep hover effects only for interactive elements in these sections */
.about-section a:hover,
.how-to-use-section a:hover,
.faq-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Remove hover effects from static content */
.static-content * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.static-content *:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Popular Banks Section */
#view-all-banks {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 