/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Saudi Green Color Palette */
    --primary-green: #006C35;
    --primary-green-dark: #004d26;
    --primary-green-light: #28A745;
    --secondary-green: #20C997;
    --accent-gold: #FFD700;
    --accent-gold-dark: #FFC107;

    /* Supporting Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-light-green: #f0fff4;
    --bg-dark: #1a202c;

    /* Border and Shadow */
    --border-color: #e2e8f0;
    --border-green: #68d391;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 10px 25px rgba(0, 108, 53, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--secondary-green) 100%);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--primary-green-light);
    transform: translateY(-1px);
}

.nav-logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-green);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Simplified Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: 80px 0 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* Header Area */
.hero-header-area {
    text-align: center;
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-green-dark);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    width: fit-content;
    margin: 0 auto 20px;
}

.hero-badge i {
    color: var(--primary-green-dark);
}

.hero-title {
    margin-bottom: 15px;
}

.hero-title .title-main {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    margin-bottom: 20px;
}

.hero-subtitle span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    line-height: 1.3;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Hero Content Area with Equal Height Columns */
.hero-content-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Left Side - Search and Description */
.search-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Search Box - Remove hover effect */
.search-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    transition: none;
}

.search-box:hover {
    transform: none;
    box-shadow: none;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #ffffff;
    justify-content: center;
}

.search-title i {
    font-size: 1.5rem;
    color: #ffffff;
}

.search-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.search-form {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    box-shadow: none;
}

.phone-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--primary-green-light);
    border-radius: 50px;
    font-size: 1.1rem;
    background: #ffffff;
    color: #006c35;
    outline: none;
    transition: none;
    box-shadow: none;
    text-align: center;
    font-weight: 500;
    direction: rtl;
}

.phone-input::placeholder {
    color: #006c35;
    opacity: 0.7;
}

/* Search Button - Remove hover effect */
.search-btn {
    padding: 15px 25px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    color: var(--primary-green-dark);
    font-weight: 600;
    cursor: pointer;
    transition: none;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: none;
}

.search-btn i {
    color: var(--primary-green-dark);
    font-size: 1.2rem;
}

.search-btn:hover {
    transform: none;
    box-shadow: none;
    background: var(--gradient-gold);
}

.search-tips {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 1rem;
    justify-content: center;
    margin-top: 10px;
    font-weight: 600;
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.search-tips i {
    color: #006c35;
    font-size: 1.2rem;
}

.search-tips span {
    color: #000000;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Search Results */
.search-results {
    transition: all 0.5s ease;
    margin-top: 20px;
}

.search-results.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    display: none;
}

.result-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-green-light);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
    justify-content: center;
    border-bottom: 1px solid rgba(0, 108, 53, 0.2);
    padding-bottom: 10px;
}

.result-header i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.result-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.result-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(0, 108, 53, 0.05);
    border-radius: 10px;
}

.label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.value {
    font-weight: 500;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Additional Names (linked to search results) */
.additional-names-card {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.additional-names-header {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.names-list {
    max-height: 260px;
    overflow-y: auto;
    padding: 10px 12px;
    background: #fff;
}

.name-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    border-bottom: 1px solid var(--border-color);
}

.name-item .name-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.name-item .name-text {
    font-size: 1rem;
    color: var(--text-primary);
}

.primary-badge {
    background: var(--primary-green);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Floating elements consolidated: see canonical .floating-elements/.floating-card block further below */

/* Stats Area */
.stats-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #E8F5E8;
    font-weight: 400;
}

/* Right Side - Image Only */
.image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

/* Phone Image - Remove hover effect */
.phone-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: none;
}

.phone-image:hover {
    transform: none;
    box-shadow: none;
}

/* When results are open: hide phone image and floating decorations and expand search/results to full width */
body.results-open .image-side,
body.results-open .phone-image,
body.results-open .floating-elements {
    display: none !important;
}

body.results-open .hero-content-area {
    grid-template-columns: 1fr;
    /* make search/results take full width */
}

/* Ensure the search-side expands to full width and results align */
body.results-open .search-side {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title .title-main {
        font-size: 3rem;
    }

    .hero-subtitle span {
        font-size: 1.3rem;
    }

    .search-side {
        order: 1;
    }

    .info-side {
        order: 2;
    }

    .stats-area {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .hero-subtitle span {
        font-size: 1.2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .stats-area {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .result-content {
        grid-template-columns: 1fr;
    }

    .description-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .description-icon {
        margin-bottom: 10px;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-light-green);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-green);
    border-color: var(--border-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.25rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.step-image {
    width: 90px;
    height: 90px;
    background: var(--bg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.25rem;
    color: var(--primary-green);
    border: 3px solid var(--border-green);
    transition: all 0.3s ease;
}

.step:hover .step-image {
    background: var(--primary-green);
    color: white;
    transform: scale(1.05);
}

/* Statistics Section */
.statistics {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-green);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light-green);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--bg-light-green);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-light-green);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 108, 53, 0.1);
    transform: translateY(-1px);
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green-light);
}

.footer-logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-green-light);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .hero-feature {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .search-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .search-btn {
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .phone-input {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        text-align: center;
    }

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

    .feature-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .floating-card {
        display: none;
    }
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
        max-width: 280px;

        /* add top spacing so hero header doesn't stick to the fixed header on small phones */
        .hero-header-area {
            margin-top: 80px;
            padding-top: 8px;
            /* small extra padding for breathing room */
        }
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .search-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .phone-input {
        padding: 1rem;
        font-size: 1rem;
    }

    .search-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Pulse Animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 108, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 108, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 108, 53, 0);
    }
}

.search-btn:hover {
    animation: pulse 2s infinite;
}

/* Improved focus states for accessibility */
.phone-input:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Better button states */
.search-btn:active,
.submit-btn:active {
    transform: translateY(-1px);
}

/* Enhanced card hover effects */
.feature-card:hover,
.contact-item:hover {
    box-shadow: 0 15px 35px rgba(0, 108, 53, 0.15);
}


/* Enhanced Hero Section Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #006C35;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.hero-badge i {
    color: #006C35;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-title .title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-description {
    margin: 30px 0;
}

.hero-description p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.description-main {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 400;
}

.description-features {
    font-size: 1.1rem;
    color: #E8F5E8;
    font-weight: 300;
}

.description-cta {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006C35;
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #E8F5E8;
    font-weight: 400;
}

/* Enhanced Search Container */
.search-container {
    margin-top: 40px;
}

.search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-header {
    text-align: center;
    margin-bottom: 25px;
}

.search-header h3 {
    color: #006C35;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.search-input-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #006C35;
    font-size: 1.1rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: 'Cairo', sans-serif;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.search-input:focus {
    outline: none;
    border-color: #006C35;
    box-shadow: 0 0 0 3px rgba(0, 108, 53, 0.1);
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #006C35, #28A745);
    transition: width 0.3s ease;
}

.search-input:focus+.input-border {
    width: 100%;
}

.search-btn {
    padding: 18px 30px;
    background: linear-gradient(135deg, #006C35, #28A745);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 108, 53, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, #005A2D, #228B22);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 108, 53, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

.search-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #006C35;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
    background: rgba(0, 108, 53, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 108, 53, 0.2);
}

.feature-badge i {
    color: #28A745;
}

/* Enhanced Search Results */
.search-results {
    margin-top: 30px;
    animation: slideInUp 0.5s ease-out;
}

.results-header {
    text-align: center;
    margin-bottom: 20px;
}

.results-header h4 {
    color: #006C35;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.results-header i {
    color: #28A745;
}

.result-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 108, 53, 0.1);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 108, 53, 0.1);
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 600;
    color: #006C35;
    font-size: 1rem;
}

.result-value {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    text-align: left;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsiveness for Enhanced Elements */
@media (max-width: 768px) {
    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .hero-title .title-sub {
        font-size: 1.4rem;
    }

    .hero-stats {
        gap: 15px;
        justify-content: center;
    }

    .stat-item {
        padding: 12px 15px;
    }

    .search-input-container {
        flex-direction: column;
        gap: 15px;
    }

    .search-btn {
        width: 100%;
    }

    .search-features {
        gap: 10px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .result-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .result-value {
        text-align: right;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title .title-main {
        font-size: 2rem;
    }

    .hero-title .title-sub {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .search-form {
        padding: 20px;
    }
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Search Results */
.search-results {
    transition: all 0.5s ease;
}

.search-results.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.result-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    justify-content: center;
}

.result-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: var(--text-secondary);
}

.value {
    font-weight: 500;
    color: var(--primary-green);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Hero Header - Innovative Layout */
.hero-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    line-height: 1.3;
    display: block;
}

.tagline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Hero Description Box - Innovative Layout */
.hero-description-box {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hero-description-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.description-icon {
    font-size: 1.75rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.description-content {
    flex: 1;
}

.description-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Innovative Layout */
@media (max-width: 768px) {
    .hero-header {
        text-align: center;
        align-items: center;
    }

    .tagline-features {
        justify-content: center;
    }

    .hero-description-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .description-icon {
        margin-bottom: 0.75rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .tagline-text {
        font-size: 1.2rem;
    }

    .tagline-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .feature-tag {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
}

/* Hero Section - Full Width Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: 100px 0 60px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* Badge at Top */
.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-green-dark);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    width: fit-content;
    animation: pulse 2s infinite;
    position: absolute;
    top: 20px;
    right: 20px;
}

.hero-badge-top i {
    color: var(--primary-green-dark);
}

/* Main Layout - Horizontal */
.hero-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    min-height: 500px;
}

/* Left Side - Content */
.hero-content-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
}

.hero-header {
    margin-bottom: 10px;
}

.hero-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    line-height: 1.3;
    display: block;
}

.feature-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Description Box - New Position */
.description-box {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.description-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.description-icon {
    font-size: 1.75rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.description-content {
    flex: 1;
}

.description-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Right Side - Search */
.hero-search-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-container-prominent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    width: 100%;
    transition: none;
}

.search-container-prominent:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

.search-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--accent-gold);
    justify-content: center;
}

.search-header i {
    font-size: 1.75rem;
}

.search-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.search-form {
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.phone-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    outline: none;
    transition: none;
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-weight: 500;
}

.phone-input:focus {
    background: white;
    transform: none;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-green-light);
}

.search-btn {
    padding: 15px 30px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    color: var(--primary-green-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
    animation: pulse 2s infinite;
}

.search-tips {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    justify-content: center;
}

/* Search Results - More Prominent */
.search-results {
    transition: all 0.5s ease;
    margin-top: 20px;
}

.search-results.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    display: none;
}

.result-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-green-light);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-green);
    justify-content: center;
    border-bottom: 1px solid rgba(0, 108, 53, 0.2);
    padding-bottom: 15px;
}

.result-header i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.result-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.result-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(0, 108, 53, 0.05);
    border-radius: 10px;
}

.label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.value {
    font-weight: 500;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Stats - Horizontal Layout */
.hero-stats-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.hero-stats-horizontal .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats-horizontal .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats-horizontal .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 1.2rem;
}

.hero-stats-horizontal .stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stats-horizontal .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.hero-stats-horizontal .stat-label {
    font-size: 0.8rem;
    color: #E8F5E8;
    font-weight: 400;
}

/* Phone Image - Floating */
.hero-phone-image {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 300px;
    transition: none;
}

.phone-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: var(--shadow-green);
    transition: none;
    display: block;
}

.phone-image:hover {
    transform: none;
    box-shadow: none;
}

/* Floating Elements - Fixed Positioning */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green-dark);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    pointer-events: auto;
    white-space: nowrap;
    z-index: 5;
    will-change: transform;
    /* hint to browser to isolate animations */
    transition: transform 0.6s ease;
}

.floating-card i {
    color: var(--primary-green);
    font-size: 1rem;
}

.card-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    right: 5%;
    animation-delay: 4s;
}

/* Responsive Design for Horizontal Layout */
@media (max-width: 1200px) {
    .hero-main-layout {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .hero-phone-image {
        width: 250px;
        bottom: -60px;
    }

    .floating-card {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .hero-title .title-main {
        font-size: 3rem;
    }

    .tagline-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content-side {
        order: 1;
        text-align: center;
        padding-right: 0;
    }

    .hero-search-side {
        order: 2;
    }

    .hero-phone-image {
        position: relative;
        order: 0;
        bottom: 0;
        left: auto;
        transform: none;
        width: 200px;
        margin: 0 auto;
    }

    .feature-tags-container {
        justify-content: center;
    }

    .hero-description-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .description-icon {
        margin-bottom: 10px;
    }

    .floating-card {
        display: none;
    }

    .hero-badge-top {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
        margin-top: 34px;
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .tagline-text {
        font-size: 1.2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .hero-stats-horizontal {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .result-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-content-area {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .image-side {
        display: none;
        /* Hide image on mobile */
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .hero-subtitle span {
        font-size: 1.2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .stats-area {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .result-content {
        grid-template-columns: 1fr;
    }

    .description-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .description-icon {
        margin-bottom: 10px;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .hero-header-area {
        margin-bottom: 20px;
    }

    .hero-title .title-main {
        font-size: 2rem;
    }

    .hero-subtitle span {
        font-size: 1rem;
    }

    /* Feature tags styling is now handled by mobile-horizontal class */

    .search-box {
        padding: 15px;
    }

    .search-title h3 {
        font-size: 1.3rem;
    }

    .phone-input,
    .search-btn {
        padding: 12px;
    }
}

/* Feature Tags - Default */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

/* Mobile Horizontal Feature Tags */
.mobile-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .mobile-horizontal {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        padding: 5px 0;
        margin: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .mobile-horizontal::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .mobile-horizontal .feature-tag {
        flex: 0 0 auto;
        font-size: 0.8rem;
        padding: 6px 12px;
        white-space: nowrap;
    }
}

/* Remove hover effects */
.search-box:hover,
.phone-image:hover,
.input-group:hover,
.phone-input:hover {
    transform: none;
    box-shadow: none;
    transition: none;
}

.search-btn:hover {
    transform: none;
}

/* Global remove hover effects for search box and image */
.search-box,
.search-container,
.search-container-prominent,
.phone-image,
.hero-phone-image,
.search-btn,
.phone-input,
.input-group {
    transition: none !important;
}

.search-box:hover,
.search-container:hover,
.search-container-prominent:hover,
.phone-image:hover,
.hero-phone-image:hover,
.search-btn:hover,
.phone-input:hover,
.input-group:hover {
    transform: none !important;
    box-shadow: inherit !important;
}

/* Remove all transform effects */
.search-box,
.search-container,
.search-container-prominent,
.phone-image,
.hero-phone-image,
.search-btn,
.phone-input,
.input-group,
.search-side,
.image-side {
    transform: none !important;
    transition: none !important;
}

/* Fix for search-btn hover shadow */
.search-btn:hover,
.search-btn:active,
.search-btn:focus {
    transform: none !important;
    box-shadow: none !important;
    background: var(--gradient-gold) !important;
}

/* Fix for search-tips shadow */
.search-tips {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 1rem;
    justify-content: center;
    margin-top: 10px;
    font-weight: 600;
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

/* Final override for all shadow effects */
.search-box,
.search-container,
.search-container-prominent,
.search-btn,
.phone-input,
.input-group,
.search-tips,
.search-box:hover,
.search-container:hover,
.search-container-prominent:hover,
.search-btn:hover,
.search-btn:active,
.search-btn:focus,
.phone-input:hover,
.phone-input:focus,
.input-group:hover,
.search-tips:hover {
    box-shadow: none !important;
}

/* تنسيقات صفحات المحتوى (من نحن، إخلاء المسؤولية، سياسة الخصوصية، شروط الخدمة) */
.content-wrapper {
    margin: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header h1 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header .page-subtitle {
    color: #fff;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* تنسيقات الأقسام المشتركة */
.disclaimer-section,
.privacy-section,
.terms-section,
.about-section,
.mission-vision-section,
.values-section,
.team-section,
.technology-section,
.achievements-section,
.future-section,
.contact-cta-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.disclaimer-section h2,
.privacy-section h2,
.terms-section h2,
.about-section h2,
.mission-vision-section h2,
.values-section h2,
.team-section h2,
.technology-section h2,
.achievements-section h2,
.future-section h2,
.contact-cta-section h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.disclaimer-section h2::after,
.privacy-section h2::after,
.terms-section h2::after,
.about-section h2::after,
.mission-vision-section h2::after,
.values-section h2::after,
.team-section h2::after,
.technology-section h2::after,
.achievements-section h2::after,
.future-section h2::after,
.contact-cta-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.disclaimer-section p,
.privacy-section p,
.terms-section p,
.about-section p,
.mission-vision-section p,
.values-section p,
.team-section p,
.technology-section p,
.achievements-section p,
.future-section p,
.contact-cta-section p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* تنسيقات صفحة إخلاء المسؤولية */
.accuracy-disclaimer,
.responsible-use,
.liability-grid,
.external-links-info,
.availability-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.disclaimer-card,
.use-section,
.liability-item,
.link-disclaimer,
.availability-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon,
.liability-item i,
.availability-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.disclaimer-card h3,
.use-section h3,
.liability-item h4,
.link-disclaimer h4,
.availability-item h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.use-section ul,
.prohibited-use ul {
    padding-right: 20px;
    margin-bottom: 20px;
}

.use-section li,
.prohibited-use li {
    color: #fff;
    margin-bottom: 8px;
    list-style-type: disc;
}

/* تنسيقات صفحة سياسة الخصوصية */
.usage-grid,
.security-measures,
.cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usage-item,
.security-item,
.cookie-type,
.sharing-section,
.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.usage-item i,
.security-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.usage-item h4,
.security-item h4,
.cookie-type h4,
.sharing-section h3,
.info-box h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* تنسيقات صفحة شروط الخدمة */
.service-features,
.acceptable-use,
.prohibited-use,
.accuracy-info,
.privacy-commitments,
.ip-rights {
    margin: 20px 0;
}

.feature-list,
.accuracy-info,
.privacy-commitments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-item,
.accuracy-item,
.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item i,
.accuracy-item i,
.commitment-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.feature-item span {
    color: #fff;
}

.accuracy-item h4,
.commitment-item h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.accuracy-item p,
.commitment-item p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

.ip-rights h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.ip-rights ul {
    padding-right: 20px;
    margin-bottom: 20px;
}

.ip-rights li {
    color: #fff;
    margin-bottom: 8px;
    list-style-type: disc;
}

/* تنسيقات صفحة من نحن */
.section-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    align-items: center;
    margin: 30px 0;
}

.text-content {
    color: #fff;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-green);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.value-card h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.team-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.team-stat .stat-label {
    color: #fff;
    font-size: 1.1rem;
}

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

.department {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.department h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.tech-item h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.achievement-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.achievement-content h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.future-plans {
    margin: 30px 0;
}

.plan-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.plan-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.plan-content h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.7), rgba(0, 60, 30, 0.7));
    padding: 50px 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--gradient-gold);
    color: var(--primary-green-dark);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

/* تنسيقات صفحة الاتصال */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.contact-details h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-details p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-container h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input {
    width: 18px;
    height: 18px;
}

.form-check label {
    color: #fff;
    font-size: 0.95rem;
}

.form-check a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* تنسيقات للشاشات المتوسطة */
@media (max-width: 992px) {
    .section-content {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .page-subtitle {
        font-size: 1rem;
    }

    .disclaimer-section,
    .privacy-section,
    .terms-section,
    .about-section,
    .mission-vision-section,
    .values-section,
    .team-section,
    .technology-section,
    .achievements-section,
    .future-section,
    .contact-cta-section {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* تنسيقات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .team-stats {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
    }
}

/* تحسين تنسيقات صفحات المحتوى */
.main-content {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.9), rgba(0, 60, 30, 0.95));
    z-index: -1;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    z-index: -1;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.page-header .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.last-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-style: italic;
}

/* تحسين تنسيقات الأقسام المشتركة */
.disclaimer-section,
.privacy-section,
.terms-section,
.about-section,
.mission-vision-section,
.values-section,
.team-section,
.technology-section,
.achievements-section,
.future-section,
.contact-cta-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    color: #333;
}

.disclaimer-section::before,
.privacy-section::before,
.terms-section::before,
.about-section::before,
.mission-vision-section::before,
.values-section::before,
.team-section::before,
.technology-section::before,
.achievements-section::before,
.future-section::before,
.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-gold);
}

.disclaimer-section h2,
.privacy-section h2,
.terms-section h2,
.about-section h2,
.mission-vision-section h2,
.values-section h2,
.team-section h2,
.technology-section h2,
.achievements-section h2,
.future-section h2,
.contact-cta-section h2 {
    color: var(--primary-green-dark);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.disclaimer-section h2::after,
.privacy-section h2::after,
.terms-section h2::after,
.about-section h2::after,
.mission-vision-section h2::after,
.values-section h2::after,
.team-section h2::after,
.technology-section h2::after,
.achievements-section h2::after,
.future-section h2::after,
.contact-cta-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.disclaimer-section p,
.privacy-section p,
.terms-section p,
.about-section p,
.mission-vision-section p,
.values-section p,
.team-section p,
.technology-section p,
.achievements-section p,
.future-section p,
.contact-cta-section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* تحسين تنسيقات البطاقات والعناصر المتداخلة */
.disclaimer-card,
.use-section,
.liability-item,
.link-disclaimer,
.availability-item,
.usage-item,
.security-item,
.cookie-type,
.sharing-section,
.info-box,
.feature-item,
.accuracy-item,
.commitment-item,
.mv-card,
.value-card,
.team-stat,
.department,
.tech-item,
.achievement-card,
.plan-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-card:hover,
.use-section:hover,
.liability-item:hover,
.link-disclaimer:hover,
.availability-item:hover,
.usage-item:hover,
.security-item:hover,
.cookie-type:hover,
.sharing-section:hover,
.info-box:hover,
.feature-item:hover,
.accuracy-item:hover,
.commitment-item:hover,
.mv-card:hover,
.value-card:hover,
.team-stat:hover,
.department:hover,
.tech-item:hover,
.achievement-card:hover,
.plan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* تحسين تنسيقات الأيقونات */
.card-icon,
.liability-item i,
.availability-item i,
.usage-item i,
.security-item i,
.feature-item i,
.accuracy-item i,
.commitment-item i,
.mv-icon,
.value-icon,
.tech-item i,
.achievement-icon,
.plan-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.card-icon::after,
.liability-item i::after,
.availability-item i::after,
.usage-item i::after,
.security-item i::after,
.feature-item i::after,
.accuracy-item i::after,
.commitment-item i::after,
.mv-icon::after,
.value-icon::after,
.tech-item i::after,
.achievement-icon::after,
.plan-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* تحسين تنسيقات العناوين الفرعية */
.disclaimer-card h3,
.use-section h3,
.liability-item h4,
.link-disclaimer h4,
.availability-item h4,
.usage-item h4,
.security-item h4,
.cookie-type h4,
.sharing-section h3,
.info-box h4,
.accuracy-item h4,
.commitment-item h4,
.mv-card h3,
.value-card h4,
.department h4,
.tech-item h4,
.achievement-content h4,
.plan-content h4 {
    color: var(--primary-green-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.disclaimer-card h3::after,
.use-section h3::after,
.liability-item h4::after,
.link-disclaimer h4::after,
.availability-item h4::after,
.usage-item h4::after,
.security-item h4::after,
.cookie-type h4::after,
.sharing-section h3::after,
.info-box h4::after,
.accuracy-item h4::after,
.commitment-item h4::after,
.mv-card h3::after,
.value-card h4::after,
.department h4::after,
.tech-item h4::after,
.achievement-content h4::after,
.plan-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

/* تحسين تنسيقات القوائم */
.use-section ul,
.prohibited-use ul,
.ip-rights ul {
    padding-right: 25px;
    margin-bottom: 25px;
}

.use-section li,
.prohibited-use li,
.ip-rights li {
    color: #444;
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-right: 25px;
    line-height: 1.6;
}

.use-section li::before,
.prohibited-use li::before,
.ip-rights li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 3px;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.prohibited-use li::before {
    content: '\f00d';
    color: #e74c3c;
}

/* تحسين تنسيقات صفحة من نحن */
.section-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.text-content {
    color: #444;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.02);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.team-stat .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-align: center;
}

.team-stat .stat-label {
    color: #444;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}

/* تحسين تنسيقات للشاشات المتوسطة */
@media (max-width: 992px) {
    .section-content {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* تحسين تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header .page-subtitle {
        font-size: 1.1rem;
    }

    .disclaimer-section,
    .privacy-section,
    .terms-section,
    .about-section,
    .mission-vision-section,
    .values-section,
    .team-section,
    .technology-section,
    .achievements-section,
    .future-section,
    .contact-cta-section {
        padding: 25px;
    }

    .disclaimer-section h2,
    .privacy-section h2,
    .terms-section h2,
    .about-section h2,
    .mission-vision-section h2,
    .values-section h2,
    .team-section h2,
    .technology-section h2,
    .achievements-section h2,
    .future-section h2,
    .contact-cta-section h2 {
        font-size: 1.7rem;
    }
}

/* تحسين تنسيقات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .team-stats {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header .page-subtitle {
        font-size: 1rem;
    }
}

/* تصحيح ألوان النصوص في الأقسام ذات الخلفية البيضاء */
.contact-info h3,
.contact-info p,
.contact-card h4,
.contact-card p,
.contact-form h3,
.contact-form p,
.contact-cta-section h3,
.contact-cta-section p,
.contact-info-item h4,
.contact-info-item p,
.contact-info-item i {
    color: #333 !important;
}

.contact-info-item i {
    color: var(--primary-green) !important;
}

/* إصلاح ألوان النصوص في الفوتر مع الحفاظ على التصميم الأصلي */
.footer {
    position: relative;
    background-color: var(--primary-green-dark);
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    text-align: right;
}

.footer h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p,
.footer a {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-left: 10px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-left: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* تحسين تباين النصوص في صفحة الاتصال */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.9), rgba(0, 60, 30, 0.95));
    position: relative;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-green-dark);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-left: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 108, 53, 0.1);
    border-radius: 50%;
}

.contact-info-item h4 {
    color: var(--primary-green-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #444;
    font-size: 1.1rem;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary-green-dark);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    background: #fff;
    outline: none;
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--primary-green-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* تحسين تنسيقات صفحة الاتصال */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* تنسيق الأسئلة الشائعة */
.contact-faq-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-faq-section h2 {
    color: var(--primary-green-dark);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: right;
}

.contact-faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--primary-green-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.faq-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.faq-item p {
    color: #444;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* تنسيق أقسام المساعدة */
.support-categories {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-categories h2 {
    color: var(--primary-green-dark);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: right;
}

.support-categories h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.category-card h4 {
    color: var(--primary-green-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card p {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    min-height: 50px;
}

.category-link {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-green-dark) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* تنسيق أوقات الاستجابة */
.response-time-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.response-info h3 {
    color: var(--primary-green-dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: right;
}

.response-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.response-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.response-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.response-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-left: 20px;
}

.response-item h4 {
    color: var(--primary-green-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.response-item p {
    color: #444;
    font-size: 1.1rem;
    font-weight: 500;
}

/* تنسيق وسائل التواصل الاجتماعي */
.social-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.social-section h3 {
    color: var(--primary-green-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-section p {
    color: #444;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333 !important;
    font-weight: 600;
}

.social-link i {
    font-size: 1.5rem;
    margin-left: 10px;
}

.social-link.twitter i {
    color: #1DA1F2;
}

.social-link.linkedin i {
    color: #0077B5;
}

.social-link.telegram i {
    color: #0088cc;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* تنسيقات متجاوبة */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .response-times {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

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

/* تصحيح تباين النصوص في الأقسام ذات الخلفية البيضاء أو الشفافة */
.page-header .page-subtitle,
.last-updated {
    color: #222 !important;
}

.disclaimer-section p,
.privacy-section p,
.terms-section p,
.about-section p,
.mission-vision-section p,
.values-section p,
.team-section p,
.technology-section p,
.achievements-section p,
.future-section p,
.contact-cta-section p {
    color: #222 !important;
}

.disclaimer-section h2,
.privacy-section h2,
.terms-section h2,
.about-section h2,
.mission-vision-section h2,
.values-section h2,
.team-section h2,
.technology-section h2,
.achievements-section h2,
.future-section h2,
.contact-cta-section h2 {
    color: var(--primary-green-dark) !important;
}