/*==========================
        RESET
===========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Vazirmatn',sans-serif;
scroll-behavior:smooth;
}

body{

background:#0f0f10;

color:#fff;

line-height:1.8;

overflow-x:hidden;

}

a{

text-decoration:none;

color:inherit;

}

img{

max-width:100%;

display:block;

}

section{

padding:70px 20px;

}

/*==========================
        HEADER
===========================*/

header{

position:fixed;

top:0;

right:0;

width:100%;

height:75px;

background:rgba(20,20,20,.92);

backdrop-filter:blur(12px);

display:flex;

justify-content:space-between;

align-items:center;

padding:0 25px;

z-index:999;

border-bottom:1px solid rgba(255,215,0,.2);

}

.logo img{

width:60px;

height:60px;

object-fit:contain;

}

header h2{

font-size:23px;

color:#FFD700;

font-weight:700;

}

#menuBtn{

width:50px;

height:50px;

border:none;

background:#FFD700;

color:#111;

font-size:22px;

border-radius:12px;

cursor:pointer;

transition:.3s;

}

#menuBtn:hover{

transform:rotate(90deg);

}

/*==========================
      SIDEBAR
===========================*/

#sidebar{

position:fixed;

top:0;

right:-310px;

width:300px;

height:100vh;

background:#171717;

transition:.4s;

z-index:1001;

padding:20px;

box-shadow:-8px 0 25px rgba(0,0,0,.5);

overflow-y:auto;

}

#sidebar.active{

right:0;

}

.sidebar-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.sidebar-logo img{

width:70px;
border: 3px solid rgb(255, 242, 0);
border-radius: 150px;
box-shadow: 0 0 20px rgba(212, 175, 55, .45), 0 10px 25px rgba(0, 0, 0, .18);
}

#closeMenu{

background:none;

border:none;

color:#fff;

font-size:30px;

cursor:pointer;

}

#sidebar ul{

list-style:none;

}

#sidebar li{

margin-bottom:18px;

}

#sidebar a{

display:flex;

align-items:center;

gap:12px;

padding:15px;

border-radius:12px;

background:#202020;

transition:.3s;

font-size:17px;

}

#sidebar a:hover{

background:#FFD700;

color:#111;

transform:translateX(-6px);

}

#overlay{

position:fixed;

top:0;

right:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

display:none;

z-index:998;

}

#overlay.active{

display:block;

}

/*==========================
         HERO
===========================*/

.hero{

margin-top:75px;

min-height:520px;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

background:

linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),

url("images/gold-bg.jpg");

background-size:cover;

background-position:center;

}

.hero-content{

max-width:700px;

}

.hero h1{

font-size:50px;

color:#FFD700;

margin-bottom:20px;

}

.hero p{

font-size:20px;

margin-bottom:35px;

color:#ddd;

}

.hero a{

display:inline-block;

padding:16px 40px;

background:#FFD700;

color:#111;

border-radius:50px;

font-weight:bold;

transition:.35s;

}

.hero a:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(255,215,0,.35);

}

/*==========================
      CONTACT
===========================*/

.contact h2{

text-align:center;

font-size:34px;

margin-bottom:45px;

color:#FFD700;

}

.cards{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:#181818;

padding:35px;

border-radius:20px;

text-align:center;

border:1px solid rgba(255,215,0,.15);

transition:.35s;

}

.card:hover{

transform:translateY(-12px);

box-shadow:0 20px 45px rgba(255,215,0,.18);

}

.card i{

font-size:48px;

color:#FFD700;

margin-bottom:20px;

}

.card h3{

margin-bottom:18px;

font-size:22px;

}

.card a{

display:inline-block;

margin-top:10px;

color:#FFD700;

font-size:20px;

font-weight:bold;

}

.card a:hover{

text-decoration:underline;

}

/*==========================
      WORKTIME
===========================*/

.worktime{

background:#151515;

}

.worktime h2{

text-align:center;

color:#FFD700;

font-size:34px;

margin-bottom:40px;

}

.time-box{

max-width:700px;

margin:18px auto;

background:#202020;

padding:20px 30px;

display:flex;

justify-content:space-between;

border-radius:15px;

border-right:5px solid #FFD700;

font-size:18px;

transition:.3s;

}

.time-box:hover{

transform:scale(1.02);

}
/* ===========================
   فرم ارسال تیکت
=========================== */

.ticket-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.ticket-box h2{
    margin-bottom:25px;
    color:#c89b2c;
    text-align:center;
}

.ticket-box form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.ticket-box input,
.ticket-box select,
.ticket-box textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:12px;
    font-family:Vazirmatn;
    font-size:15px;
    outline:none;
    transition:.3s;
    resize:none;
}

.ticket-box input:focus,
.ticket-box textarea:focus,
.ticket-box select:focus{

    border-color:#d4af37;

    box-shadow:0 0 12px rgba(212,175,55,.3);

}

.ticket-box button{

    border:none;

    background:linear-gradient(135deg,#d4af37,#b8860b);

    color:#fff;

    padding:16px;

    border-radius:12px;

    cursor:pointer;

    font-size:16px;

    transition:.35s;

}

.ticket-box button:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(212,175,55,.35);

}


/* ===========================
   سوالات متداول
=========================== */

.faq{

    margin-top:70px;

}

.faq h2{

    text-align:center;

    margin-bottom:35px;

    color:#c89b2c;

}

.faq details{

    background:#fff;

    margin-bottom:18px;

    border-radius:15px;

    padding:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.faq details:hover{

    transform:translateY(-4px);

}

.faq summary{

    cursor:pointer;

    font-weight:bold;

    font-size:17px;

}

.faq p{

    margin-top:15px;

    line-height:2;

    color:#666;

}


/* ===========================
   Footer
=========================== */

footer{

    margin-top:80px;

    background:#111;

    color:#ddd;

    text-align:center;

    padding:30px;

}

footer h3{

    color:#d4af37;

    margin-bottom:12px;

}

footer p{

    line-height:2;

}

footer a{

    color:#d4af37;

    text-decoration:none;

}

footer a:hover{

    color:#fff;

}


/* ===========================
   اسکرول بار
=========================== */

::-webkit-scrollbar{

    width:9px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b8860b;

}


/* ===========================
   انیمیشن‌ها
=========================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero,
.contact-grid,
.ticket-box,
.contact-card,
.faq details{

    animation:fadeUp .8s ease;

}


/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.contact-grid{

grid-template-columns:1fr;

}

.sidebar{

width:260px;

right:-260px;

}

.sidebar.active{

right:0;

}

.hero h1{

font-size:34px;

}

}

@media(max-width:768px){

.hero{

padding:80px 20px;

}

.hero h1{

font-size:28px;

}

.hero p{

font-size:15px;

}

.ticket-box{

padding:22px;

}

.contact-card{

padding:22px;

}

.logo img{

height:55px;

}

}

@media(max-width:480px){

.hero h1{

font-size:24px;

}

.hero p{

font-size:14px;

}

.ticket-box input,
.ticket-box textarea,
.ticket-box select{

font-size:14px;

}

.ticket-box button{

font-size:15px;

}

.contact-card h3{

font-size:18px;

}

}
/*==========================
        LOGO
==========================*/

.logo{

display:flex;

align-items:center;

gap:18px;

text-decoration:none;

}

.logo img{

width:72px;

height:72px;

border-radius:50%;

background:#fff;

padding:6px;

border:3px solid #d4af37;

box-shadow:
0 0 20px rgba(212,175,55,.45),
0 10px 25px rgba(0,0,0,.18);

transition:.4s;

}

.logo img:hover{

transform:rotate(10deg) scale(1.08);

box-shadow:
0 0 35px rgba(212,175,55,.8);

}

.logo h2{

font-size:28px;

color:#fff;

font-weight:800;

letter-spacing:1px;

}

.logo span{

display:block;

font-size:13px;

margin-top:5px;

color:#d4af37;

font-weight:500;

}
/*=================================
        ADDRESS
=================================*/

.address{

margin:90px auto;

width:90%;

}

.address h2{

font-size:34px;

text-align:center;

margin-bottom:45px;

color:#c8a43d;

}

.address-card{

background:#fff;

border-radius:25px;

padding:45px;

text-align:center;

box-shadow:0 20px 45px rgba(0,0,0,.08);

border:2px solid rgba(212,175,55,.2);

transition:.4s;

}

.address-card:hover{

transform:translateY(-8px);

box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.address-card i{

font-size:60px;

color:#d4af37;

margin-bottom:25px;

}

.address-card p{

font-size:18px;

line-height:2.2;

color:#555;

}

.address-card a{

display:inline-block;

margin-top:30px;

padding:15px 40px;

background:linear-gradient(135deg,#d4af37,#a77c05);

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:bold;

transition:.35s;

}

.address-card a:hover{

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(212,175,55,.45);

}


/*=================================
            MAP
=================================*/

.map{

width:90%;

margin:90px auto;

}

.map h2{

text-align:center;

font-size:34px;

margin-bottom:35px;

color:#c8a43d;

}

.map-box{

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.15);

border:3px solid #d4af37;

}

.map-box iframe{

width:100%;

height:500px;

border:none;

display:block;

}

.map-link{

text-align:center;

margin-top:25px;

}

.map-link a{

display:inline-block;

padding:15px 35px;

background:#111;

color:#d4af37;

border-radius:40px;

text-decoration:none;

transition:.35s;

}

.map-link a:hover{

background:#d4af37;

color:#111;

}


/*=================================
          TICKET
=================================*/

.ticket{

width:90%;

margin:100px auto;

background:#fff;

padding:50px;

border-radius:30px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.ticket h2{

text-align:center;

font-size:34px;

color:#c8a43d;

margin-bottom:15px;

}

.ticket>p{

text-align:center;

margin-bottom:40px;

color:#777;

}

.ticket form{

display:flex;

flex-direction:column;

gap:20px;

}

.ticket .row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

}

.ticket input,
.ticket textarea{

padding:18px;

border-radius:15px;

border:1px solid #ddd;

font-size:15px;

font-family:Vazirmatn;

transition:.3s;

outline:none;

}

.ticket textarea{

resize:none;

}

.ticket input:focus,
.ticket textarea:focus{

border-color:#d4af37;

box-shadow:0 0 15px rgba(212,175,55,.25);

}

.ticket button{

padding:18px;

border:none;

border-radius:15px;

background:linear-gradient(135deg,#d4af37,#b8860b);

color:#fff;

font-size:18px;

cursor:pointer;

transition:.35s;

}

.ticket button:hover{

transform:translateY(-4px);

box-shadow:0 15px 30px rgba(212,175,55,.45);

}


/*=================================
            FAQ
=================================*/

.faq{

width:90%;

margin:90px auto;

}

.faq h2{

text-align:center;

font-size:34px;

color:#c8a43d;

margin-bottom:40px;

}

.faq-box{

background:#fff;

margin-bottom:18px;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-btn{

width:100%;

padding:22px;

background:#fff;

border:none;

display:flex;

justify-content:space-between;

align-items:center;

font-size:18px;

cursor:pointer;

font-family:Vazirmatn;

transition:.3s;

}

.faq-btn:hover{

background:#faf5e8;

}

.faq-btn i{

color:#d4af37;

transition:.35s;

}

.faq-answer{

display:none;

padding:0 25px 25px;

line-height:2.2;

color:#666;

}


/*=================================
        SOCIAL
=================================*/

.social{

margin:100px auto;

width:90%;

text-align:center;

}

.social h2{

font-size:34px;

color:#c8a43d;

margin-bottom:35px;

}

.social-icons{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

}

.social-icons a{

width:75px;

height:75px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#fff;

font-size:32px;

color:#d4af37;

text-decoration:none;

box-shadow:0 15px 30px rgba(0,0,0,.08);

transition:.35s;

}

.social-icons a:hover{

background:#d4af37;

color:#fff;

transform:translateY(-10px) rotate(10deg);

}


/*=================================
          FOOTER
=================================*/

footer{

margin-top:100px;

background:linear-gradient(135deg,#0f0f0f,#1d1d1d);

padding:70px 20px 35px;

text-align:center;

color:#ddd;

border-top:4px solid #d4af37;

position:relative;

overflow:hidden;

}

footer::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(212,175,55,.06);

border-radius:50%;

left:-120px;

top:-120px;

}

footer::after{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(212,175,55,.05);

border-radius:50%;

right:-120px;

bottom:-120px;

}

.footer-logo{

position:relative;

z-index:2;

margin-bottom:25px;

}

.footer-logo img{

width:110px;

height:110px;

border-radius:50%;

padding:7px;

background:#fff;

border:4px solid #d4af37;

box-shadow:0 0 35px rgba(212,175,55,.45);

transition:.4s;

}

.footer-logo img:hover{

transform:rotate(10deg) scale(1.08);

}

footer h3{

font-size:32px;

color:#d4af37;

margin-bottom:20px;

position:relative;

z-index:2;

}

footer p{

line-height:2.2;

position:relative;

z-index:2;

font-size:16px;

}

.footer-contact{

margin:30px 0;

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

position:relative;

z-index:2;

}

.footer-contact a{

padding:14px 28px;

background:#fff;

color:#111;

border-radius:40px;

text-decoration:none;

font-weight:bold;

transition:.35s;

}

.footer-contact a:hover{

background:#d4af37;

color:#fff;

transform:translateY(-5px);

}

footer>p:last-child{

margin-top:35px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.12);

color:#999;

}
/*====================================
        RESPONSIVE
====================================*/

/* لپ تاپ */
@media (max-width:1200px){

.cards{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

}

/* تبلت */
@media (max-width:992px){

header{
padding:0 15px;
}

.logo img{
width:60px;
height:60px;
}

header h2{
font-size:20px;
}

.hero{
padding:120px 20px 80px;
min-height:auto;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:17px;
}

.cards{
grid-template-columns:1fr 1fr;
gap:20px;
}

.time-box{
font-size:16px;
}

.ticket .row{
grid-template-columns:1fr;
}

.map-box iframe{
height:420px;
}

.address-card,
.ticket{
padding:35px 25px;
}

.footer-contact{
flex-direction:column;
gap:15px;
}

}

/* موبایل */
@media (max-width:768px){

header{
height:70px;
}

.logo img{
width:72px;
height:65px;
}

header h2{
font-size:18px;
}

#menuBtn{
width:45px;
height:45px;
font-size:18px;
}

.hero{
margin-top:70px;
padding:80px 15px;
}

.hero h1{
font-size:28px;
line-height:1.6;
}

.hero p{
font-size:15px;
}

.hero a{
padding:13px 30px;
font-size:15px;
}

.cards{
grid-template-columns:1fr;
}

.card{
padding:25px;
}

.card i{
font-size:40px;
}

.contact h2,
.worktime h2,
.address h2,
.map h2,
.ticket h2,
.faq h2,
.social h2{

font-size:28px;

}

.time-box{

flex-direction:column;

text-align:center;

gap:10px;

padding:18px;

}

.address-card{

padding:30px 20px;

}

.address-card i{

font-size:45px;

}

.address-card p{

font-size:16px;

}

.map-box iframe{

height:320px;

}

.ticket{

padding:25px 20px;

}

.ticket .row{

grid-template-columns:1fr;

}

.ticket input,
.ticket textarea{

padding:15px;

font-size:15px;

}

.ticket button{

font-size:16px;

padding:15px;

}

.faq-btn{

font-size:15px;

padding:18px;

}

.social-icons{

gap:15px;

}

.social-icons a{

width:60px;

height:60px;

font-size:25px;

}

.footer-logo img{

width:85px;

height:85px;

}

footer h3{

font-size:24px;

}

.footer-contact{

flex-direction:column;

align-items:center;

}

.footer-contact a{

width:100%;

max-width:260px;

text-align:center;

}

}

/* گوشی های کوچک */
@media (max-width:480px){

section{

padding:50px 15px;

}

.hero h1{

font-size:22px;

}

.hero p{

font-size:14px;

}

.hero a{

width:100%;

max-width:220px;

}

.contact h2,
.worktime h2,
.address h2,
.map h2,
.ticket h2,
.faq h2,
.social h2{

font-size:22px;

}

.card{

padding:20px;

}

.card h3{

font-size:18px;

}

.card a{

font-size:16px;

}

.address-card{

padding:20px 15px;

}

.address-card p{

font-size:15px;

}

.map-box iframe{

height:260px;

}

.ticket{

padding:20px 15px;

}

.ticket input,
.ticket textarea{

font-size:14px;

}

.faq-btn{

font-size:14px;

}

.social-icons a{

width:55px;

height:55px;

font-size:22px;

}

.footer-logo img{

width:75px;

height:75px;

}

footer h3{

font-size:20px;

}

footer p{

font-size:14px;

}

}

/* مانیتورهای بزرگ */
@media (min-width:1600px){

.hero h1{

font-size:64px;

}

.hero p{

font-size:24px;

}

section{

padding:90px 0;

}

.cards{

max-width:1450px;

}

}