/* IP Lookup Page Styles */

/* Lookup Hero Section */
.lookup-hero {
    background: linear-gradient(135deg, #ff3679 0%, #ff5c8d 100%);
    padding: 50px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.lookup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.lookup-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.lookup-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.lookup-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.lookup-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lookup-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.lookup-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    border: none;
    outline: none;
    background: white;
    color: #2d2d2d;
}

.lookup-input::placeholder {
    color: #999;
}

.lookup-btn {
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 54, 121, 0.3);
}

.lookup-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 54, 121, 0.4);
}

.lookup-btn:active {
    transform: translateY(0);
}

.auto-detect-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.auto-detect-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.loading-overlay.hidden {
    display: none;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.loading-spinner p {
    font-size: 18px;
    font-weight: 600;
}

/* Results Section */
.results-section {
    padding: 60px 0;
    background: var(--light-bg);
    color: var(--text-primary);
}

.results-section.hidden {
    display: none;
}

.results-header {
    margin-bottom: 40px;
}

.results-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.current-ip-display {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.current-ip-display .label {
    font-size: 16px;
    color: var(--text-secondary);
}

.ip-value-display {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ip-value {
    background: white;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    border: 2px solid var(--primary-color);
}

.btn-lookup-current {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 54, 121, 0.3);
}

.btn-lookup-current:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 54, 121, 0.4);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Map Column */
.map-column {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ip-map {
    width: 100%;
    height: 450px;
}

/* Details Column */
.details-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    background: white;
    padding: 18px 24px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    gap: 16px;
}

.detail-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 54, 121, 0.15);
}

.detail-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
}

/* Detailed Section */
.detailed-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.detailed-section.hidden {
    display: none;
}

.detailed-card {
    background: white;
    border-radius: 16px;
    padding: 45px;
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(255, 54, 121, 0.1);
    border: 2px solid var(--border-color);
}

.detailed-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-primary);
}

.detailed-title span {
    color: var(--primary-color);
}

.detailed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.detailed-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    gap: 20px;
}

.detail-row:hover {
    background: var(--lighter-bg);
    border-radius: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    flex-shrink: 0;
    min-width: 140px;
}

.detail-row-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    word-break: break-word;
    flex: 1;
    padding-left: 16px;
}

.detailed-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-map {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.blacklist-btn {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 54, 121, 0.3);
}

.blacklist-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 54, 121, 0.5);
}

.blacklist-btn:active {
    transform: translateY(0);
}

.detailed-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Blacklist Results */
.blacklist-results {
    margin-top: 40px;
}

.blacklist-results.hidden {
    display: none;
}

.blacklist-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blacklist-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blacklist-title i {
    color: var(--primary-color);
}

.blacklist-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.checking-text {
    text-align: center;
    font-size: 16px;
    padding: 40px 0;
    color: var(--text-secondary);
}

.blacklist-item {
    padding: 16px;
    border-left: 4px solid var(--success-color);
    background: var(--lighter-bg);
    margin-bottom: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.blacklist-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blacklist-item.listed {
    border-left-color: var(--danger-color);
    background: #fff5f5;
}

.blacklist-item-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.blacklist-item-status {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .detailed-grid {
        grid-template-columns: 1fr;
    }

    .detail-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    /* Compact Hero Section */
    .lookup-hero {
        padding: 35px 0 40px;
    }

    .lookup-hero-content {
        padding: 0 20px;
    }

    .lookup-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .lookup-title {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .lookup-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .lookup-form {
        flex-direction: column;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .lookup-input {
        border-radius: 12px 12px 0 0;
        padding: 14px 18px;
        font-size: 15px;
    }

    .lookup-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .auto-detect-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .lookup-btn {
        border-radius: 0 0 12px 12px;
        padding: 16px 32px;
    }

    .results-header h2 {
        font-size: 26px;
    }

    .ip-value {
        font-size: 20px;
        padding: 10px 20px;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .detail-value {
        text-align: left;
    }

    .detailed-card {
        padding: 24px;
    }

    .detailed-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    /* Ultra Compact Hero Section */
    .lookup-hero {
        padding: 25px 0 30px;
    }

    .lookup-hero-content {
        padding: 0 16px;
    }

    .lookup-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .lookup-title {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .lookup-description {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .lookup-form {
        margin-bottom: 12px;
    }

    .lookup-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .lookup-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .auto-detect-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .ip-map {
        height: 350px;
    }

    .detail-map {
        height: 250px;
    }

    .blacklist-btn {
        font-size: 13px;
        padding: 14px 24px;
    }
}

/* Leaflet Map Customization */
.leaflet-container {
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    font-size: 14px;
    line-height: 1.6;
}

/* Custom Marker Popup */
.custom-popup {
    text-align: center;
}

.custom-popup h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.custom-popup p {
    margin: 4px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   Content Sections - Elegant Premium Design
   ============================================ */

/* Base Content Section Styles */
.content-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.content-section-white {
    background: #ffffff;
}

.content-section-light {
    background: var(--lighter-bg);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.section-title i {
    color: var(--primary-color);
    font-size: 32px;
}

/* Content Card - What Section */
.content-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 245, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(255, 54, 121, 0.08),
                0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 54, 121, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.content-text {
    line-height: 1.9;
    color: #333;
    font-size: 17px;
}

.content-text p {
    margin-bottom: 24px;
    color: #444;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Steps Section - How to Use */
.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 54, 121, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 54, 121, 0.12),
                0 4px 10px rgba(0, 0, 0, 0.06);
}

.step-card:hover::before {
    opacity: 1;
}

.step-card[data-step="1"] {
    animation-delay: 0.1s;
}

.step-card[data-step="2"] {
    animation-delay: 0.2s;
}

.step-card[data-step="3"] {
    animation-delay: 0.3s;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 54, 121, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title i {
    font-size: 20px;
}

.step-description {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    padding: 40px 35px;
    border-radius: 18px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-card-2 {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
}

.benefit-card-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.benefit-card-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.benefit-card-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.benefit-card-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-description {
    line-height: 1.75;
    opacity: 0.95;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(255, 54, 121, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.08);
    border-left-width: 6px;
}

.feature-card:hover::before {
    width: 6px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 54, 121, 0.1) 0%, rgba(255, 92, 141, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.feature-title {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.feature-description {
    line-height: 1.75;
    color: #555;
    font-size: 15px;
}

/* Use Cases Container */
.use-cases-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.use-case-card {
    padding: 35px 40px;
    background: linear-gradient(to right, rgba(255, 240, 245, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.use-case-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.use-case-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(255, 54, 121, 0.12),
                0 4px 10px rgba(0, 0, 0, 0.06);
    border-left-width: 8px;
}

.use-case-card:hover::after {
    width: 8px;
}

.use-case-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(255, 54, 121, 0.3);
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
}

.use-case-title {
    color: #333;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.use-case-description {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* FAQ Section Enhancement */
.faq-section .section-title {
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 54, 121, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(255, 54, 121, 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 54, 121, 0.15);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation for Cards */
.benefits-grid > *,
.features-grid > * {
    animation: fadeInUp 0.6s ease-out backwards;
}

.benefits-grid > *:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid > *:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid > *:nth-child(3) { animation-delay: 0.3s; }
.benefits-grid > *:nth-child(4) { animation-delay: 0.4s; }
.benefits-grid > *:nth-child(5) { animation-delay: 0.5s; }
.benefits-grid > *:nth-child(6) { animation-delay: 0.6s; }

.features-grid > *:nth-child(1) { animation-delay: 0.1s; }
.features-grid > *:nth-child(2) { animation-delay: 0.2s; }
.features-grid > *:nth-child(3) { animation-delay: 0.3s; }
.features-grid > *:nth-child(4) { animation-delay: 0.4s; }
.features-grid > *:nth-child(5) { animation-delay: 0.5s; }
.features-grid > *:nth-child(6) { animation-delay: 0.6s; }

.use-cases-container > *:nth-child(1) { animation-delay: 0.1s; }
.use-cases-container > *:nth-child(2) { animation-delay: 0.2s; }
.use-cases-container > *:nth-child(3) { animation-delay: 0.3s; }
.use-cases-container > *:nth-child(4) { animation-delay: 0.4s; }
.use-cases-container > *:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design for Content Sections */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title i {
        font-size: 24px;
    }
    
    .content-card {
        padding: 35px 28px;
    }
    
    .content-text {
        font-size: 16px;
    }
    
    .step-card {
        flex-direction: column;
        padding: 28px 24px;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 28px;
    }
    
    .benefit-icon {
        font-size: 2.5em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
    
    .use-case-card {
        padding: 28px 24px;
    }
    
    .use-case-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 24px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        flex-direction: column;
        gap: 8px;
    }
    
    .content-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .step-card {
        padding: 24px 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .benefit-card {
        padding: 28px 24px;
    }
    
    .benefit-icon {
        font-size: 2em;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .use-case-card {
        padding: 24px 20px;
    }
}

