/*==================================================
    الفعالية المبدعة لإدارة وتنظيم الفعاليات
==================================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

/*=========================
        RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Cairo',sans-serif;
    background:#0b0b0b;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.8;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*=========================
        COLORS
=========================*/

:root{

    --gold:#d4af37;

    --dark:#0b0b0b;

    --black:#111111;

    --white:#ffffff;

    --gray:#bdbdbd;

    --card:#1a1a1a;

}

/*=========================
        HEADER
=========================*/

header{

    position:fixed;

    top:0;

    right:0;

    width:100%;

    z-index:9999;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:65px;

}

nav ul{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    font-size:17px;

    font-weight:700;

    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

.quote-btn{

    background:var(--gold);

    color:black;

    padding:12px 28px;

    border-radius:40px;

    font-weight:800;

    transition:.3s;

}

.quote-btn:hover{

    transform:translateY(-4px);

}

/*=========================
        HERO
=========================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.hero video{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.hero-content{

    position:relative;

    z-index:2;

    min-height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px 40px;

}

.hero h1{

    font-size:68px;

    font-weight:900;

    margin-bottom:20px;

    color:white;

}

.hero p{

    max-width:850px;

    font-size:22px;

    color:#eee;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

.gold-btn{

    background:var(--gold);

    color:black;

    padding:16px 38px;

    border-radius:50px;

    font-weight:800;

    transition:.3s;

}

.gold-btn:hover{

    transform:translateY(-5px);

}

.white-btn{

    border:2px solid white;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    transition:.3s;

}

.white-btn:hover{

    background:white;

    color:black;

}

.whatsapp-btn{

    background:#25D366;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    font-weight:800;

}

.whatsapp-btn:hover{

    opacity:.9;

}

/*=========================
        SECTION TITLE
=========================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--gold);

    font-weight:700;

    font-size:18px;

}

.section-title h2{

    font-size:42px;

    margin-top:10px;

}/*=========================
        ABOUT
=========================*/

.about{
    padding:120px 0;
    background:#111;
}

.about .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.about-content span{
    color:var(--gold);
    font-weight:700;
    font-size:18px;
}

.about-content h2{
    font-size:42px;
    margin:15px 0 25px;
}

.about-content p{
    color:#d8d8d8;
    margin-bottom:18px;
    font-size:18px;
    line-height:2;
}

/*=========================
        SERVICES
=========================*/

.services{
    padding:120px 0;
    background:#0b0b0b;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#181818;
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid #2a2a2a;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:var(--gold);
    box-shadow:0 20px 45px rgba(212,175,55,.18);
    background:#202020;
}

.service-card i{
    font-size:55px;
    color:var(--gold);
    margin-bottom:25px;
}

.service-card h3{
    font-size:25px;
    margin-bottom:18px;
}

.service-card p{
    color:#cfcfcf;
    line-height:1.9;
}

/*=========================
        GALLERY
=========================*/

.gallery{
    padding:120px 0;
    background:#111;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/*=========================
        LIGHTBOX
=========================*/

#lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
}

#close{
    position:absolute;
    top:30px;
    right:40px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    transition:.3s;
}

#close:hover{
    color:var(--gold);
}/*=========================
        WHY US
=========================*/

.why-us{
    padding:120px 0;
    background:#0b0b0b;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#181818;
    border:1px solid #2c2c2c;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 20px 40px rgba(212,175,55,.15);
}

.why-card i{
    font-size:55px;
    color:var(--gold);
    margin-bottom:20px;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#d2d2d2;
    line-height:1.9;
}


/*=========================
        STATISTICS
=========================*/

.stats{
    padding:100px 0;
    background:linear-gradient(135deg,#d4af37,#b68c17);
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    background:#fff;
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    color:#111;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h2{
    font-size:48px;
    font-weight:900;
    margin-bottom:15px;
}

.stat-box p{
    font-size:20px;
    font-weight:700;
}


/*=========================
      REQUEST QUOTE
=========================*/

.quote-section{
    padding:120px 0;
    background:#111;
}

.quote-section form{
    max-width:950px;
    margin:auto;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:25px;
}

.quote-section input,
.quote-section select,
.quote-section textarea{

    width:100%;
    padding:18px 20px;

    background:#1b1b1b;

    border:1px solid #2d2d2d;

    color:white;

    border-radius:12px;

    font-family:Cairo,sans-serif;

    font-size:16px;

}

.quote-section input:focus,
.quote-section select:focus,
.quote-section textarea:focus{

    outline:none;

    border-color:var(--gold);

}

.quote-section textarea{

    resize:vertical;

    margin-bottom:25px;

}

.quote-section button{

    width:100%;

    background:var(--gold);

    color:black;

    border:none;

    padding:18px;

    font-size:20px;

    font-weight:800;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;

}

.quote-section button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(212,175,55,.25);

}/*=========================
        CONTACT
=========================*/

.contact{
    padding:120px 0;
    background:#0b0b0b;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-card{
    background:#181818;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid #2c2c2c;
}

.contact-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
}

.contact-card i{
    font-size:50px;
    color:var(--gold);
    margin-bottom:20px;
}

.contact-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.contact-card p,
.contact-card a{
    color:#d9d9d9;
    font-size:18px;
    text-decoration:none;
}

.contact-card a:hover{
    color:var(--gold);
}

/*=========================
        FOOTER
=========================*/

footer{
    background:#080808;
    border-top:1px solid #222;
    padding:60px 20px;
    text-align:center;
}

.footer-content img{
    width:120px;
    margin:0 auto 20px;
}

.footer-content h3{
    color:var(--gold);
    font-size:28px;
    margin-bottom:20px;
}

.footer-content p{
    color:#cfcfcf;
    max-width:700px;
    margin:0 auto 30px;
    line-height:2;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:30px;
}

.footer-social a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1b1b1b;
    color:white;
    font-size:22px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--gold);
    color:black;
}

.copyright{
    color:#999;
    border-top:1px solid #222;
    padding-top:25px;
    font-size:15px;
}

/*=========================
      BACK TO TOP
=========================*/

#topBtn{

    position:fixed;

    bottom:25px;

    left:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:black;

    font-size:20px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.3s;

}

#topBtn:hover{

    transform:translateY(-5px);

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

header .container{

flex-direction:column;

height:auto;

padding:20px 0;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

gap:20px;

margin:20px 0;

}

.hero h1{

font-size:48px;

}

.hero p{

font-size:18px;

}

.about .container{

grid-template-columns:1fr;

}

.form-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero{
    min-height: 100vh;
    height: auto;
    padding: 180px 20px 100px;
}

.hero h1{
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.logo img{
    width: 75px;
    height: auto;
}

.hero-buttons{

flex-direction:column;

width:100%;

padding:0 20px;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.section-title h2{

font-size:32px;

}

.services-grid,
.gallery-grid,
.why-grid,
.contact-grid{

grid-template-columns:1fr;

}

.stat-box h2{

font-size:38px;

}

}/*=========================
      MOBILE MENU
=========================*/

.menu-toggle{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}

@media(max-width:992px){

.menu-toggle{
    display:block;
}

nav{
    position:absolute;
    top:90px;
    right:0;
    width:100%;
    background:#111;
    display:none;
    padding:20px 0;
}

nav.active{
    display:block;
}

nav ul{
    flex-direction:column;
    align-items:center;
}

.quote-btn{
    display:none;
}

}/*=========================
        PROCESS
=========================*/

.process{
    padding:120px 0;
    background:#111;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.process-card{
    position:relative;
    background:#181818;
    border:1px solid #2b2b2b;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.process-card .number{
    position:absolute;
    top:-18px;
    left:20px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--gold);
    color:#111;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-card i{
    font-size:52px;
    color:var(--gold);
    margin:20px 0;
}

.process-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.process-card p{
    color:#d0d0d0;
    line-height:1.9;
}/*=========================
        PRELOADER
=========================*/

#preloader{
    position:fixed;
    inset:0;
    background:#0b0b0b;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:opacity .7s ease;
}

#preloader img{
    width:170px;
    margin-bottom:35px;
}

.loader{

    width:65px;

    height:65px;

    border:5px solid rgba(255,255,255,.15);

    border-top:5px solid #d4af37;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}button,
.gold-btn,
.white-btn,
.quote-btn,
.whatsapp-btn{

    transition:.35s ease;

}

button:hover,
.gold-btn:hover,
.white-btn:hover,
.quote-btn:hover,
.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(212,175,55,.25);

}