* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f5f6fa;
    --muted: #5c6b7a;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.6rem 1rem;
    z-index: 2000;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 0.85rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: inherit;
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-cta {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background-color: #c0392b;
    color: white !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 92vh;
    background: linear-gradient(rgba(12, 24, 36, 0.78), rgba(12, 24, 36, 0.78)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 7rem 5% 4rem;
}

.hero-content {
    max-width: 880px;
}

.eyebrow {
    display: inline-block;
    background: rgba(243, 156, 18, 0.18);
    border: 1px solid rgba(243, 156, 18, 0.45);
    color: var(--accent-color);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

.cta-button,
.cta-button-outline {
    display: inline-block;
    padding: 1rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.cta-button {
    background-color: var(--secondary-color);
    color: white;
}

.cta-button:hover {
    background-color: #c0392b;
}

.cta-button-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.cta-button-outline:hover {
    background: white;
    color: var(--primary-color);
}

.trust-bar {
    background: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 5%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.trust-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.trust-item span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 5rem 5%;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro h2,
.venues h2,
.tv-packages h2,
.solutions h2,
.contact h2,
.why h2,
.process h2,
.coverage h2,
.faq h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.section-intro p,
.tv-packages > p {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2.2rem;
}

.why {
    background: var(--light-bg);
}

.why-grid,
.feature-grid,
.venue-grid,
.process-grid,
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card,
.feature-card,
.venue-card,
.process-step,
.coverage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.why-card h3,
.venue-card h3,
.process-step h3,
.coverage-card h3 {
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.why-icon,
.venue-icon,
.solution-icon,
.process-num {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.9rem;
}

.process-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.venues {
    padding: 5rem 5%;
}

.venue-card {
    text-align: center;
    transition: transform 0.3s;
}

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

.tv-packages {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.filter-container {
    max-width: 1000px;
    margin: 0 auto 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.filter-button {
    padding: 0.5rem 1.3rem;
    background-color: white;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-button:hover,
.filter-button.active {
    background-color: var(--primary-color);
    color: white;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

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

.package-card.selected {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 22px rgba(231, 76, 60, 0.2);
}

.package-card.selected::after {
    content: "Added to inquiry";
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.package-image-wrap {
    height: 230px;
    overflow: hidden;
    background: #1a2a38;
}

.package-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.package-content {
    padding: 1.5rem;
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.package-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    background-color: var(--light-bg);
    border-radius: 30px;
}

.hint {
    text-align: center;
    color: var(--muted);
    margin-top: 1.4rem;
    font-size: 0.95rem;
}

.solutions {
    padding: 5rem 5%;
}

.solution-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: min(300px, 100%);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.solution-card.selected {
    border-color: var(--secondary-color);
}

.coverage {
    background: var(--primary-color);
    color: white;
}

.coverage h2,
.coverage .section-intro p {
    color: white;
}

.coverage .section-intro p {
    opacity: 0.85;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.coverage-card h3 {
    color: var(--accent-color);
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.coverage-list span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

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

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1.1rem 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 1.3rem 1.2rem;
    color: var(--muted);
}

.contact {
    padding: 5rem 5%;
}

.contact > p {
    text-align: center;
    margin-bottom: 1.8rem;
}

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

.form-container {
    max-width: 860px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 700;
}

.submit-button:hover {
    background-color: #c0392b;
}

.selected-services {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.selected-services h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.selected-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.selected-item i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.page-hero {
    padding: 8.5rem 5% 3rem;
    background: linear-gradient(135deg, var(--primary-color), #1a2a38);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.7rem;
}

.about-body {
    padding: 4rem 5% 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-copy,
.about-aside {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.about-copy p {
    margin-bottom: 1rem;
    color: var(--muted);
}

.about-lang-block {
    margin-bottom: 2.4rem;
}

.about-lang-block:last-of-type {
    margin-bottom: 1.4rem;
}

.about-lang-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.9rem;
}

.about-ar {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    direction: rtl;
    text-align: right;
}

.about-ar .about-lang-label {
    letter-spacing: 0;
    text-transform: none;
    font-size: 1rem;
}

.about-aside h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.about-aside ul {
    padding-left: 1.1rem;
    color: var(--muted);
}

.about-aside li {
    margin-bottom: 0.45rem;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
    margin: 1.5rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.social-icons {
    margin: 1.5rem 0;
}

.social-icons a {
    color: white;
    margin: 0 0.7rem;
    font-size: 1.4rem;
}

.email-fab {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    background: var(--secondary-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.35);
    z-index: 1100;
}

@media (max-width: 900px) {
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 5% 1.4rem;
        gap: 0.9rem;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }

    .nav-links.open {
        display: flex;
    }

    .form-grid,
    .trust-bar {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.4rem;
    }
}
