@import 'base.css';

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    color: white;
    text-decoration: none;
        background: linear-gradient(180deg, #9b8036, #a58419);

}

.download-btn i {
    font-size: 1.1rem;
}



        /* Conditions Section */
        .conditions-section {
            padding: 5rem 0;
            background: #faf9f7;
        }



        /* Condition Card */
        .condition-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border-right: 5px solid var(--gold-accent);
            transition: all 0.3s ease;
        }

        .condition-card:hover {
            transform: translateX(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .condition-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0ebe3;
        }

        .condition-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.4rem;
        }

        .condition-card-header h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin: 0;
            font-size: 1.4rem;
        }

        .condition-card p {
            color: #555;
            line-height: 1.9;
            margin-bottom: 1rem;
        }

        /* Condition List */
        .condition-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .condition-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: #faf9f7;
            border-radius: 12px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }

        .condition-list li:hover {
            background: #f0ebe3;
            transform: translateX(-5px);
        }

        .condition-list li:last-child {
            margin-bottom: 0;
        }

        .list-icon {
            width: 28px;
            height: 28px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.75rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .condition-list li span {
            color: #444;
            line-height: 1.7;
        }

        /* Important Notes */
        .important-note {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            border-right: 4px solid #ffc107;
        }

        .important-note h6 {
            color: #856404;
            font-weight: 700;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .important-note p {
            color: #856404;
            margin: 0;
            font-size: 0.95rem;
        }

        /* File Formats */
        .file-formats {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        .format-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff;
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0ebe3;
            transition: all 0.3s ease;
        }

        .format-badge:hover {
            background: var(--primary-color);
            color: #fff;
            transform: translateY(-3px);
        }

        .format-badge i {
            font-size: 1.2rem;
        }

        .format-badge.word i {
            color: #2b579a;
        }

        .format-badge.pdf i {
            color: #f40f02;
        }

        .format-badge:hover i {
            color: #fff;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.5rem;
            background: #faf9f7;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            background: #f0ebe3;
            transform: translateX(-5px);
        }

        .step-number {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .step-content h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .step-content p {
            color: #666;
            margin: 0;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            padding: 4rem 0;
        }

        .cta-content {
            text-align: center;
            color: #fff;
        }

        .cta-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn.primary {
            background: var(--gold-accent);
            color: #3d3d3d;
        }

        .cta-btn.primary:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-btn.secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .cta-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        /* Download Template */
        .download-templates {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .download-templates h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .template-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            background: #faf9f7;
            border-radius: 12px;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }

        .template-item:hover {
            background: #f0ebe3;
        }

        .template-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .template-info i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .template-info h6 {
            margin: 0;
            color: var(--primary-color);
            font-weight: 600;
        }

        .template-info span {
            font-size: 0.85rem;
            color: #666;
        }

        .download-btn {
            background: var(--gradient);
            color: #fff;
            padding: 0.5rem 1.25rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .download-btn:hover {
            transform: scale(1.05);
            color: #fff;
            box-shadow: 0 5px 15px rgba(95, 87, 55, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .conditions-nav {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                min-height: 200px;
                margin-top: 60px;
            }

            .page-title {
                font-size: 2rem;
            }

            .condition-card {
                padding: 1.5rem;
            }

            .condition-card-header {
                flex-direction: column;
                text-align: center;
            }

            .template-item {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .template-info {
                flex-direction: column;
            }
        }

        :root {
            --primary-color: #5f5737;
            --gold-accent: #d4af37;
            --gradient: linear-gradient(135deg, #5f5737 0%, #8b6f47 100%);
        }

        * {
            font-family: 'Cairo', sans-serif;
        }

        body {
            background: #faf9f7;
        }

        /* Header */
        .page-header {
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            align-content: center;
            position: relative;
            height: 7rem;
        }

        .page-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        /* Navigation Sidebar */
        .conditions-nav {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 120px;
        }

        .conditions-nav h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #f0ebe3;
        }

        .conditions-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .conditions-nav a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: #555;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s;
            margin-bottom: 0.5rem;
        }

        .conditions-nav a:hover,
        .conditions-nav a.active {
            background: var(--primary-color);
            color: #fff;
        }

        /* Cards */
        .condition-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-right: 4px solid var(--gold-accent);
        }

        .condition-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0ebe3;
        }

        .condition-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
        }

        .condition-card-header h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin: 0;
            font-size: 1.3rem;
        }

        /* Lists */
        .condition-list {
            list-style: none;
            padding: 0;
        }

        .condition-list li {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: #faf9f7;
            border-radius: 10px;
            margin-bottom: 0.75rem;
        }

        .list-icon {
            width: 26px;
            height: 26px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.7rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Important Note */
        .important-note {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
            border-radius: 12px;
            padding: 1.25rem;
            margin-top: 1.5rem;
            border-right: 4px solid #ffc107;
        }

        .important-note h6 {
            color: #856404;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .important-note p {
            color: #856404;
            margin: 0;
            line-height: 1.7;
        }

        /* Process Steps */
        .step-item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem;
            background: #faf9f7;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }

        .step-content p {
            color: #666;
            margin: 0;
            line-height: 1.7;
        }

        /* Templates */
        .template-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            background: #faf9f7;
            border-radius: 12px;
            margin-bottom: 0.75rem;
        }

        .template-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .template-info i {
            font-size: 1.8rem;
        }

        .template-info h6 {
            margin: 0 0 0.25rem 0;
            color: var(--primary-color);
            font-weight: 600;
        }

        .template-info span {
            font-size: 0.85rem;
            color: #666;
        }

        .download-btn {
            background: var(--gradient);
            color: #fff;
            padding: 0.5rem 1.25rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .download-btn:hover {
            color: #fff;
            transform: scale(1.05);
        }

        /* CTA */
        .cta-section {
            background: var(--gradient);
            padding: 3.5rem 0;
            text-align: center;
            color: #fff;
        }

        .cta-section h3 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0 0.5rem;
        }

        .cta-btn.primary {
            background: var(--gold-accent);
            color: #3d3d3d;
        }

        .cta-btn.primary:hover {
            background: #fff;
            color: #3d3d3d;
        }

        .cta-btn.secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .cta-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .conditions-nav {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }

            .condition-card {
                padding: 1.5rem;
            }

            .step-item,
            .template-item {
                flex-direction: column;
                text-align: center;
            }

            .cta-btn {
                display: flex;
                width: 100%;
                justify-content: center;
                margin: 0.5rem 0;
            }
        }
