* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: Cairo, sans-serif
}
.hero {
    margin-top: 7%;
    min-height: 570px;
}
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.section-title-container {
    margin-bottom: 2rem;
}
.section-title-container .page-subtitle {
    font-size: 1.4rem;
}
h1.page-title {
    font-size: 3rem;
}

.features-grid h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.partners {
    padding: 100px 0;
    background: linear-gradient(
        to bottom,
        var(--bg-dark),
        #121418
    );
}

.partners-logos img {
    max-height: 130px;
    max-width: 240px;
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.85;
    transition: all 0.35s ease;
}
.partners-logos img:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212,175,55,0.45);
}
.projects-section
{
    padding: 50px 0;
    
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.services-section {
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.2) 100%),
                linear-gradient(to top, rgba(15, 16, 18, 1) 0%, transparent 20%);
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

@media (max-width: 768px) {
    .partners-logos img {
        max-height: 90px;
        max-width: 180px;
    }
}


.register-sec {
    padding: 120px 0;
    background: #0f1012;
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

/* LEFT: FORM */
.register-form {
    background: linear-gradient(145deg, #1a1d22, #121418);
    padding: 70px 60px;
}
.register-form h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.register-form h2::after {
    content: '';
    width: 70px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 12px auto 0;
}

/* INPUT GROUP */
.register-form .input-group {
    margin-bottom: 25px;
}

.register-form .input-group-text {
    background: #0e0f11;
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.35);
    font-weight: 700;
    min-width: 140px;
    justify-content: center;
}

.register-form .form-control {
    background: #08090a !important;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 15px;
}

.register-form .form-control:focus {
    border-color: #d4af37;
    box-shadow: none;
}

/* SUBMIT BUTTON */
.form-submit {
    background: linear-gradient(180deg, #f0c75e, #d4af37);
    color: #000;
    padding: 14px 60px;
    font-weight: 800;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
    transition: 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.45);
}



/* RESPONSIVE */
@media (max-width: 992px) {
    .register-layout {
        grid-template-columns: 1fr;
    }

    .register-image {
        height: 260px;
    }

    .register-form {
        padding: 40px 25px;
    }
}

.footer-links{
    padding-right: 1rem;
}

.logo img {
    max-width: 65%;
}
.hero-sec img {
    height: 360px;
    object-fit: cover;
}

.about-sec {
    background: var(--bg-dark);
}

.about-sec .page-title {
    color: var(--gold-primary);
    font-size: 2.8rem;
}

.about-sec p {
    color: var(--text-dim);
}

.about-link {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.about-link:hover {
    background: var(--gold-primary);
    color: #000;
}

video {
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.3);
}

section.bg-dark {
    background: linear-gradient(
        to bottom,
        #0f1012,
        #14161a
    );
}

section.bg-dark .page-title {
    color: var(--gold-light);
}

section.bg-dark p {
    color: var(--text-dim);
}

section.bg-dark ul li {
    color: var(--text-dim);
}

.gold-span {
    color: var(--gold-primary);
    margin-left: 5px;
}

section:not(.hero-sec):not(.about-sec):not(.bg-dark):not(.stats-bar) {
    background: #121418;
}

section:not(.hero-sec):not(.stats-bar) {
    border-top: 1px solid rgba(255,255,255,0.05);
}

section h2.page-title {
    position: relative;
    display: inline-block;
}

section h2.page-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--gold-primary);
    margin: 15px auto 0;
}

ul.list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

ul.list-unstyled li:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .hero-sec img {
        height: 260px;
    }

    .about-sec .page-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-link {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-sec img {
        height: 220px;
    }

    section {
        padding: 60px 0;
    }
}
#vision {
    scroll-margin-top: 100px;
}
.works-hero {
    padding: 140px 0 80px;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.8) 40%,
        rgba(0,0,0,0.3) 100%
    );
}

.works-hero .page-title {
    font-size: 3.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.works-gallery {
    padding: 100px 0;
    background: var(--bg-dark);
}

.sec-title {
    font-size: 2.4rem;
    color: var(--gold-primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.project-item {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    transition: 0.4s;
}

.project-item:hover img {
    transform: scale(1.12);
}

.project-item:hover::after {
    background: rgba(0,0,0,0);
}

.more-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 50px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: 0.3s;
}

.more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.45);
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .works-hero {
        padding: 120px 0 60px;
    }

    .works-hero .page-title {
        font-size: 2.6rem;
    }
}
/* ===============================
   PAGINATION – ZAHRA LOURA STYLE
   =============================== */

.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    list-style: none;
}

.pagination li {
    display: inline-flex;
}

.pagination li a,
.pagination li span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1012;
    border: 1px solid rgba(212,175,55,0.25);
    color: #cfcfcf;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    background: rgba(212,175,55,0.15);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

/* ACTIVE PAGE */
.pagination .active span {
    background: linear-gradient(180deg, #f0c75e, #d4af37);
    color: #000;
    border-color: var(--gold-primary);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(212,175,55,0.45);
}

/* DISABLED (Prev / Next) */
.pagination .disabled span {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ARROWS */
.pagination li:first-child a,
.pagination li:last-child a {
    font-weight: 700;
    letter-spacing: 1px;
}

/* MOBILE */
@media (max-width: 576px) {
    .pagination {
        gap: 6px;
    }

    .pagination li a,
    .pagination li span {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}


.blog-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.blog-section {
    padding: 90px 0;
    background: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: linear-gradient(145deg,#1a1d22,#121418);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(212,175,55,0.35);
}

.blog-image {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-image::after {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);
}

.blog-content {
    padding: 25px;
    text-align: right;
}

.blog-badge {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: var(--gold-primary);
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
}

.blog-link::after {
    content:'';
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    position: absolute;
    bottom: -4px;
    right: 0;
    transition: 0.3s;
}

.blog-link:hover::after {
    width: 100%;
}
/* ===============================
   BLOG SINGLE – ISOLATED STYLES
   =============================== */

.blog-single-wrapper {
    padding: 140px 0 100px;
    background: var(--bg-dark);
}

.blog-single-title {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1.35;
    text-align: center;
}

.blog-single-media {
    max-width: 900px;
    margin: 0 auto 50px;
    background: #111;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.blog-single-media img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

.blog-single-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.9;
    color: #ddd;
}

.blog-single-content h2,
.blog-single-content h3 {
    color: var(--gold-primary);
    margin: 35px 0 15px;
}

.blog-single-content p {
    margin-bottom: 18px;
}

.blog-single-content ul,
.blog-single-content ol {
    padding-right: 20px;
    margin-bottom: 20px;
}

.blog-single-content li {
    margin-bottom: 8px;
}

/* ===============================
   FULL WIDTH CONTENT PAGE
   =============================== */

/* الصفحة */
#page-content {
    padding: 10px 0;
}

/* نضيّق عرض النص عشان القراءة */
#content {
    max-width: 900px;
    margin: 0 auto;
}

/* العنوان الرئيسي */
.page-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    line-height: 1.2;
}

/* خط بسيط تحت العنوان */
.page-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--gold-primary);
    margin: 15px auto 0;
}

/* المقال */
.post-single {
    background: var(--bg-card);
    padding: 45px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--card-shadow);
    margin-bottom: 90px;
}

/* النص */
.post-single p {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 22px;
    color: var(--text-dim);
}

/* عناوين داخل المحتوى */
.post-single h2,
.post-single h3,
.post-single h4 {
    margin: 45px 0 20px;
    font-weight: 800;
    color: var(--text-light);
}

/* Accent ذهبي */
.post-single h2::after,
.post-single h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold-primary);
    margin-top: 10px;
}

/* القوائم */
.post-single ul,
.post-single ol {
    padding-right: 25px;
    margin: 25px 0 35px;
}

.post-single li {
    margin-bottom: 12px;
    line-height: 1.9;
}

/* الروابط */
.post-single a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.post-single a:hover {
    color: var(--gold-light);
}

/* ===============================
   SECTIONS BELOW CONTENT
   =============================== */

.posts {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.title-main h4 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    position: relative;
}

.title-main h4::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    display: block;
    margin: 12px auto 0;
}

/* cards */
.post-related {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.post-related:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
    border-color: var(--gold-primary);
}

.post-related img {
    height: 230px;
    object-fit: cover;
}

.post-related h2 {
    padding: 15px;
    font-size: 1rem;
    text-align: center;
}

/* Gallery */
.teaser {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.teaser-img img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.teaser:hover img {
    transform: scale(1.1);
}

/* Buttons center */
.posts .btn {
    display: table;
    margin: 40px auto 0;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 768px) {
    #content {
        max-width: 100%;
        padding: 0 15px;
    }

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

    .post-single {
        padding: 25px;
    }
}
/* ===============================
   GALLERY FIX – NO MORE UGLY BOXES
   =============================== */

/* الكارت نفسه */
.teaser {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teaser:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

/* ماسك الصورة */
.teaser-img {
    width: 100%;
    aspect-ratio: 4 / 3;   /* 👈 أهم سطر */
    overflow: hidden;
}

/* الصورة نفسها */
.teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 👈 يقص ويملأ */
    display: block;
    transition: transform 0.4s ease;
}

.teaser:hover img {
    transform: scale(1.08);
}

/* زرار اللايت بوكس */
.lightbox.btn-icon-view {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.teaser:hover .btn-icon-view {
    opacity: 1;
}

/* موبايل */
@media (max-width: 768px) {
    .teaser-img {
        aspect-ratio: 1 / 1; /* مربعة على الموبايل */
    }
}
/* ===============================
   SMART VIDEO GRID
   =============================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

/* الفيديو الواحد */
.projects-grid:has(> .thumbnail:only-child) {
    grid-template-columns: 1fr;
}

.projects-grid:has(> .thumbnail:only-child) .thumbnail {
    max-width: 700px;
    margin: 0 auto;
}

/* عنصر الفيديو */
.projects-grid .thumbnail {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-grid .thumbnail:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow);
    border-color: var(--gold-primary);
}

/* صورة الفيديو */
.projects-grid .thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* عنوان الفيديو */
.projects-grid .thumbnail p {
    padding: 12px 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

/* موبايل */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   IMAGE HOVER – PREMIUM EFFECT
   =============================== */

/* العنصر الحاضن */
.projects-grid a,
.projects-grid .thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

/* الصورة */
.projects-grid img {
    transition: transform 0.5s ease;
}

/* Overlay */
.projects-grid a::after,
.projects-grid .thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* أيقونة */
.projects-grid a::before,
.projects-grid .thumbnail::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: var(--gold-primary);
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Hover */
.projects-grid a:hover img,
.projects-grid .thumbnail:hover img {
    transform: scale(1.08);
}

.projects-grid a:hover::after,
.projects-grid .thumbnail:hover::after {
    opacity: 1;
}

.projects-grid a:hover::before,
.projects-grid .thumbnail:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* موبايل */
@media (max-width: 768px) {
    .projects-grid a::before,
    .projects-grid .thumbnail::before {
        font-size: 2rem;
    }
}
/* ===============================
   VIDEO DETAILS PAGE
   =============================== */

.video-page {
    max-width: 1000px;
    margin: 0 auto;
}

/* العنوان */
.video-header {
    margin-bottom: 30px;
}

.video-header .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.video-header .page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin: 12px auto 0;
}

/* الفيديو */
.video-wrapper {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
}

/* موبايل */
@media (max-width: 768px) {
    .video-header .page-title {
        font-size: 2rem;
    }

    .video-page {
        max-width: 100%;
        padding: 0 10px;
    }
}


/* ==================================================
   CONTACT PAGE – FINAL LAYOUT (MAP + INFO / FORM)
   ================================================== */

.contact-switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "map address"
        "form form";
    background: var(--bg-dark);
}

/* ===============================
   MAP
   =============================== */

.contact-switcher .map-cover {
    grid-area: map;
    min-height: 420px;
}

.contact-switcher .map-cover iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===============================
   ADDRESS (INFO)
   =============================== */

.contact-switcher .address {
    grid-area: address;
    padding: 80px 60px;
    background: linear-gradient(145deg, #1a1d22, #121418);
    color: var(--text-light);
}

.contact-switcher .address-inner {
    max-width: 520px;
    margin: 0 auto;
}

/* ===============================
   FORM – FULL WIDTH BELOW
   =============================== */

.contact-switcher .form {
    grid-area: form;
    padding: 90px 20px;
    background: #0f1012;
}

.contact-switcher .form-inner {
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================
   TITLES
   =============================== */

.contact-switcher .title h2,
.contact-switcher .title h3,
.contact-switcher .title h4 {
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
}

.contact-switcher .title h2::after,
.contact-switcher .title h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin-top: 10px;
}

/* ===============================
   TEXT
   =============================== */

.contact-switcher .text p {
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 35px;
}

/* ===============================
   ADDRESS DETAILS
   =============================== */

.contact-switcher address {
    font-style: normal;
    margin-top: 25px;
}

.contact-switcher address .row {
    margin-bottom: 14px;
}

.contact-switcher address b {
    color: var(--gold-primary);
    font-weight: 700;
}

.contact-switcher address a {
    color: var(--gold-primary);
    text-decoration: none;
}

.contact-switcher address a:hover {
    text-decoration: underline;
}

/* ===============================
   FORM CONTROLS
   =============================== */

.contact-switcher .form-field {
    margin-bottom: 22px;
}

.contact-switcher label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-switcher .require {
    color: var(--gold-primary);
}

.contact-switcher .form-control {
    background: #0b0c0e;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 15px;
    border-radius: 4px;
}

.contact-switcher .form-control:focus {
    border-color: var(--gold-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}

/* زر الإرسال */
.contact-switcher input[type="submit"] {
    background: linear-gradient(180deg, #f0c75e, #d4af37);
    border: none;
    color: #000;
    font-weight: 800;
    padding: 14px 45px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-switcher input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.45);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
    .contact-switcher {
        grid-template-columns: 1fr;
        grid-template-areas:
            "map"
            "address"
            "form";
    }

    .contact-switcher .address,
    .contact-switcher .form {
        padding: 45px 20px;
    }

    .contact-switcher .map-cover {
        min-height: 300px;
    }
}
/* ==================================================
   404 PAGE – ZAHRA LOURA STYLE
   ================================================== */

.error-404-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1d22 0%, #0f1012 70%);
    padding: 60px 20px;
}

.error-404-content {
    max-width: 650px;
}

.error-code {
    font-size: 9rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #f0c75e, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.error-text {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

.error-btn {
    display: inline-block;
    padding: 14px 50px;
    font-weight: 800;
    background: linear-gradient(180deg, #f0c75e, #d4af37);
    color: #000;
    border-radius: 4px;
    transition: 0.3s ease;
    text-decoration: none;
}

.error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.45);
}

/* Responsive */
@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }

    .error-title {
        font-size: 1.6rem;
    }

    .error-text {
        font-size: 1rem;
    }
}
