/*=========================
  GLOBAL
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#050505;

    color:#ffffff;

    font-family:'Poppins',sans-serif;

    line-height:1.7;

}

.page{

    width:92%;

    max-width:1400px;

    margin:60px auto;

}

section{

    margin:90px 0;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}
/*=========================
  TYPOGRAPHY
=========================*/

h1{

    font-size:56px;

    color:#D4AF37;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

h2{

    font-size:38px;

    color:#D4AF37;

    text-align:center;

    margin-bottom:45px;

}

h3{

    font-size:26px;

    color:#D4AF37;

    margin-bottom:15px;

}

p{

    color:#d7d7d7;

    font-size:18px;

    line-height:1.9;

}

small{

    color:#9d9d9d;

}

a{

    color:#D4AF37;

    transition:.3s;

}

a:hover{

    color:#f3cf6b;

}
/*=========================
  HEADER
=========================*/

.header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

    margin-bottom:70px;

    border-bottom:1px solid rgba(212,175,55,.20);

}

.logo{
    height:180px;
    width:auto;
    display:block;
}

.nav{

    display:flex;

    gap:35px;

    align-items:center;

}

.nav a{

    color:#d8d8d8;

    font-size:16px;

    font-weight:500;

    letter-spacing:.5px;

    transition:.3s;

}

.nav a:hover{

    color:#D4AF37;

}

.header-btn{

    padding:12px 28px;

    border:2px solid #D4AF37;

    border-radius:10px;

    color:#D4AF37;

    transition:.3s;

}

.header-btn:hover{

    background:#D4AF37;

    color:#050505;

}

@media(max-width:900px){

.header{

    flex-direction:column;

    gap:25px;

}

.nav{

    flex-wrap:wrap;

    justify-content:center;

}

}
/*=========================
  HERO SECTION
=========================*/

.hero{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
       align-items:start;
    margin-top:20px;
    margin-bottom:90px;
}

.hero-content h1{

    margin-bottom:25px;

}

.hero-content p{

    max-width:650px;

    margin-bottom:35px;

}

.hero-image{

    position:relative;

}

.hero-image img,
.hero-image video{

    width:100%;
    max-width:500px;   /* غيّرها إلى 550 أو 650 حسب رغبتك */

    height:auto;

    border-radius:18px;

    border:2px solid rgba(212,175,55,.35);

    box-shadow:
        0 0 40px rgba(212,175,55,.12),
        0 20px 60px rgba(0,0,0,.45);

    transition:.4s;

}
.hero-image img:hover{

    transform:scale(1.02);

    box-shadow:
        0 0 60px rgba(212,175,55,.25),
        0 25px 70px rgba(0,0,0,.55);

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:35px;

    flex-wrap:wrap;

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:12px;

    font-size:17px;

    font-weight:700;

    transition:.3s;

}

.hero-btn.primary{

    background:#D4AF37;

    color:#050505;

    border:2px solid #D4AF37;

}

.hero-btn.primary:hover{

    background:#f0c84f;

    transform:translateY(-3px);

}

.hero-btn.secondary{

    border:2px solid #D4AF37;

    color:#D4AF37;

}

.hero-btn.secondary:hover{

    background:#D4AF37;

    color:#050505;

}

@media(max-width:992px){

.hero{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-content p{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

}
/*=========================
  FEATURES
=========================*/

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin:80px 0;

}

.feature-card{

    background:linear-gradient(180deg,#111111,#080808);

    border:1px solid rgba(212,175,55,.20);

    border-radius:18px;

    padding:35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:#D4AF37;

    transform:scaleX(0);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 45px rgba(212,175,55,.15);

}

.feature-card:hover::before{

    transform:scaleX(1);

}

.feature-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    color:#D4AF37;

    border:2px solid rgba(212,175,55,.35);

    border-radius:16px;

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

    color:#D4AF37;

}

.feature-card p{

    color:#cfcfcf;

    font-size:16px;

    line-height:1.8;

}
/*=========================
  SCREENSHOTS
=========================*/

.screenshots{

    margin:100px 0;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.shot{

    transition:.35s;

}

.shot:hover{

    transform:translateY(-8px);

}

.shot img{

    width:100%;

    aspect-ratio:9/16;

    object-fit:cover;

    border-radius:16px;

    border:2px solid rgba(212,175,55,.45);

    background:#0a0a0a;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    transition:.35s;

}

.shot:hover img{

    border-color:#D4AF37;

    box-shadow:
        0 0 30px rgba(212,175,55,.30),
        0 15px 40px rgba(0,0,0,.45);

}

.shot-title{

    margin-top:12px;

    text-align:center;

    color:#9f9f9f;

    font-size:15px;

    font-weight:500;

}

@media(max-width:1200px){

.gallery-grid{

    grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:992px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.gallery-grid{

    grid-template-columns:1fr;

}

}
/*=========================
  BUY NOW
=========================*/

.buy-section{

    margin:120px 0;

    padding:70px 40px;

    text-align:center;

    background:linear-gradient(180deg,#111,#070707);

    border:1px solid rgba(212,175,55,.25);

    border-radius:24px;

}

.buy-section h2{

    margin-bottom:20px;

}

.buy-section p{

    max-width:750px;

    margin:0 auto 40px;

}

.buy-button{

    display:inline-block;

    background:#D4AF37;

    color:#050505;

    padding:20px 60px;

    border-radius:14px;

    font-size:22px;

    font-weight:700;

    letter-spacing:1px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(212,175,55,.30);

}

.buy-button:hover{

    background:#f0c64d;

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(212,175,55,.45);

}
/* =========================
   QUICK LINKS
========================= */

.quick-links{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin:40px 0;

}

.quick-box{

    position:relative;

    display:block;

    width:100%;

    aspect-ratio:16/10;

    overflow:hidden;

    background:#111111;

    border:2px solid #D4AF37;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.quick-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.35s;

}

.quick-box:hover{

    transform:translateY(-8px);

    border-color:#FFD76A;

    box-shadow:0 0 30px rgba(212,175,55,.35);

}

.quick-box:hover img{

    transform:scale(1.05);

}

/* Tablet */

@media(max-width:992px){

.quick-links{

    grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:600px){

.quick-links{

    grid-template-columns:1fr;

}

}
/*=========================
  BRAND GALLERY
=========================*/

/*=========================
  BRAND GALLERY
=========================*/

.brand-gallery{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

    width:100%;

    max-width:1300px;

    margin:0 auto;

}

.brand-card{

    width:360px;

    flex:0 0 360px;

    border:2px solid rgba(212,175,55,.35);

    border-radius:18px;

    overflow:hidden;

    background:#111;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.brand-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;

}

.brand-card:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;

    box-shadow:
        0 0 35px rgba(212,175,55,.35),
        0 15px 40px rgba(0,0,0,.45);

}

@media(max-width:1200px){

.brand-gallery{

    gap:20px;

}

.brand-card{

    width:300px;

    flex:0 0 300px;

}

}

@media(max-width:768px){

.brand-gallery{

    flex-direction:column;

}

.brand-card{

    width:100%;

    max-width:500px;

    flex:none;

}

}
.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.top-header .logo{
    width:200px !important;
    height:auto !important;
    max-width:200px !important;
    display:block;
}

.home-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border:1px solid #D4AF37;
    border-radius:40px;
    color:#D4AF37;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.home-btn:hover{
    background:#D4AF37;
    color:#111;
}
/*=========================
  PREMIUM FRAME
=========================*/

.brand-frame{

    max-width:1250px;
    margin:70px auto;
    padding:35px;

    background:linear-gradient(180deg,#111,#070707);

    border:1px solid rgba(212,175,55,.35);

    border-radius:26px;

    box-shadow:
        0 0 35px rgba(212,175,55,.12),
        inset 0 0 25px rgba(212,175,55,.05);

    transition:.4s;

}

.brand-frame:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;

    box-shadow:
        0 0 55px rgba(212,175,55,.22),
        inset 0 0 35px rgba(212,175,55,.08);

}
/* ==========================
   MORE BANNER
========================== */

.more-container{
    width:100%;
    display:flex;
    justify-content:flex-end;
    margin:60px 0;
}

.more-banner{
    width:420px;
    max-width:100%;
    display:block;
    border-radius:20px;
    border:2px solid rgba(212,175,55,.35);
    box-shadow:0 20px 50px rgba(0,0,0,.45);
    transition:.35s;
}

.more-banner:hover{
    transform:translateY(-5px);
    border-color:#D4AF37;
}
.brand-image{
    width:420px;
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;
}
.why-oufi-box{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:60px;
    align-items:center;
    margin:80px 0;
}

.why-left{
    width:480px;
}

.why-left img{
    width:100%;
    height:auto;
    display:block;
    border-radius:18px;
}

.why-right{
    width:100%;
}

.why-right h2{
    margin-top:0;
    margin-bottom:25px;
}

.why-right p{
    line-height:1.9;
    margin-bottom:30px;
}

.why-right ul{
    list-style:none;
    padding:0;
    margin:0;
}

.why-right li{
    margin-bottom:18px;
}
.hero-image video:hover{
    transform:scale(1.02);
    transition:.4s ease;
}

/* ========================= */
/* FAQ HERO */
/* ========================= */

.hero-faq{

    display:grid;

    grid-template-columns:1fr auto;

    align-items:center;

    justify-content:space-between;

    column-gap:40px;

    width:100%;

}

.hero-content{

    width:100%;

}

.hero-content h1{

    font-size:82px;

    line-height:1.05;

    margin-bottom:30px;

}

.hero-content p{

    max-width:620px;

}

.hero-image{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    width:100%;

    margin-left:auto;

}

.hero-image img{

    width:520px;

    height:auto;

    border-radius:24px;

    border:2px solid rgba(212,175,55,.35);

    box-shadow:
        0 20px 70px rgba(0,0,0,.55),
        0 0 40px rgba(212,175,55,.15);

}

/* Tablet */

@media(max-width:1200px){

.hero-faq{

    grid-template-columns:1fr;

    gap:50px;

}

.hero-content{

    text-align:center;

}

.hero-content p{

    margin:auto;

}

.hero-image{

    justify-content:center;

}

.hero-image img{

    width:420px;

}

}

/* Mobile */

@media(max-width:768px){

.hero-image img{

    width:280px;

}

}
.search-section{
    display:none;
}

.quick-box-image{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    margin-top:15px;
    display:block;
    transition:.4s;
}

.quick-box:hover .quick-box-image{
    transform:scale(1.03);
}

.faq-question{
    padding:10px 20px;
    min-height:44px;
    font-size:17px;
    border-radius:10px;
}
.faq-question{
    background:#D4AF37;
    color:#111;
    border:none;
    border-radius:12px;
}
.faq-answer{
    margin:12px 0 30px;
}
.faq-question{
    width:420px;
}

.official-warning{
    margin:70px auto;
    max-width:1000px;

    display:flex;
    align-items:center;
    gap:30px;

    padding:35px;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.18),
        rgba(212,175,55,.05)
    );

    border:2px solid #D4AF37;
    border-radius:22px;

    box-shadow:
        0 0 20px rgba(212,175,55,.45),
        0 0 60px rgba(212,175,55,.20),
        inset 0 0 25px rgba(212,175,55,.15);
}

.warning-icon{
    font-size:70px;
    color:#D4AF37;
    filter:drop-shadow(0 0 15px #D4AF37);
}

.warning-small{
    display:block;
    color:#D4AF37;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:10px;
    font-weight:700;
}

.warning-text h2{
    margin:0;
    color:#fff;
    font-size:42px;
    line-height:1.3;
    font-weight:800;
}

.warning-text span{
    color:#D4AF37;
    text-shadow:0 0 20px rgba(212,175,55,.9);
}
background: rgba(0,0,0,.58);
backdrop-filter: blur(10px);

/* ==========================
   CONTACT FORM BUTTON
========================== */

.submit-btn{
    display:inline-block;
    background:#D4AF37;
    color:#050505;
    border:2px solid #D4AF37;
    border-radius:14px;
    padding:18px 45px;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 15px 40px rgba(212,175,55,.30);
}

.submit-btn:hover{
    background:#f0c64d;
    border-color:#f0c64d;
    color:#050505;
    transform:translateY(-3px);
    box-shadow:0 20px 50px rgba(212,175,55,.45);
}
button.submit-btn{
    background:#D4AF37 !important;
    color:#111 !important;
    border:2px solid #D4AF37 !important;
    padding:18px 45px !important;
    border-radius:14px !important;
}

.contact-form .submit-btn{
    display:inline-block;
    width:auto;
    background:#D4AF37 !important;
    color:#111 !important;
    border:2px solid #D4AF37 !important;
    border-radius:12px;
    padding:16px 40px;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
    text-decoration:none;
}

.contact-form .submit-btn:hover{
    background:#F0C64D !important;
    border-color:#F0C64D !important;
}
.buy-btn,
.buy-btn:link,
.buy-btn:visited,
.buy-btn:hover,
.buy-btn:active,
.buy-btn:focus{
    color:#000 !important;
    text-decoration:none;
}
.buy-btn{
    color:#000 !important;
}

.buy-btn:hover,
.buy-btn:focus,
.buy-btn:active{
    color:#000 !important;
}

.buy-button,
.buy-button:link,
.buy-button:visited,
.buy-button:hover,
.buy-button:focus,
.buy-button:active{
    color:#050505 !important;
    text-decoration:none !important;
}

.buy-button:hover{
    background:#f0c64d !important;
    color:#050505 !important;
}

.buy-button:active{
    color:#050505 !important;
    background:#d4af37 !important;
}