@font-face{
  font-family:'AzarMehr';
  src:url('../../fonts/azarmehr.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'AzarMehr';
  src:url('../../fonts/azarmehr-bold.woff2') format('woff2');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
    --primary:#6f3cff;
    --primary-light:#8e67ff;
    --gold:#d4af37;
    --gold:#d4a84f;
    --gold-light:#f8f1df;
    --dark:#1d1d1d;

    --text:#2d224c;
    --text-light:#756a95;

    --white:#ffffff;

    --bg:#f7f5ff;
    --bg2:#ffffff;

    --border:#ece7ff;

    --shadow:
    0 10px 40px rgba(111,60,255,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    direction:rtl;
    background:var(--bg);
    color:var(--text);
    font-family:'AzarMehr';
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* HEADER */

.site-header{
position:fixed;
top:0;
right:0;
width:100%;
z-index:9999;
padding:18px 0;
background:rgba(255,255,255,.88);
backdrop-filter:blur(20px);
border-bottom:1px solid rgba(111,60,255,.08);
transition:.3s;
}

.header-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
gap:30px;
}

.logo{
font-size:34px;
font-weight:800;
color:var(--primary);
flex-shrink:0;
}

.main-nav{
flex:1;
display:flex;
justify-content:center;
}

.main-nav ul{
display:flex;
align-items:center;
gap:36px;
list-style:none;
}

.main-nav li{
position:relative;
}

.main-nav a{
position:relative;
font-size:15px;
font-weight:600;
color:var(--text);
transition:.3s;
}

.main-nav a:hover{
color:var(--primary);
}

.main-nav a::after{
content:'';
position:absolute;
right:0;
bottom:-10px;
width:0;
height:2px;
border-radius:50px;
background:var(--gold);
transition:.3s;
}

.main-nav a:hover::after{
width:100%;
}

.header-actions{
display:flex;
align-items:center;
gap:14px;
}

.header-btn{
height:54px;
padding:0 28px;
border-radius:18px;
background:linear-gradient(
135deg,
var(--primary),
var(--primary-light)
);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
box-shadow:0 12px 30px rgba(111,60,255,.18);
transition:.3s;
}

.header-btn:hover{
transform:translateY(-3px);
}

/* MOBILE BUTTON */

.mobile-menu-btn{
display:none;
width:54px;
height:54px;
border:none;
background:#fff;
border-radius:18px;
cursor:pointer;
padding:0;
align-items:center;
justify-content:center;
flex-direction:column;
gap:5px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.mobile-menu-btn span{
width:22px;
height:2px;
background:#222;
border-radius:20px;
transition:.3s;
}

/* MOBILE MENU */

.mobile-menu-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.45);
opacity:0;
visibility:hidden;
z-index:9998;
transition:.3s;
}

.mobile-menu{
position:fixed;
top:0;
right:-340px;
width:320px;
height:100vh;
background:#fff;
z-index:9999;
padding:120px 30px 40px;
overflow:auto;
transition:.35s;
box-shadow:-10px 0 40px rgba(0,0,0,.08);
}

.mobile-menu ul{
list-style:none;
display:flex;
flex-direction:column;
gap:6px;
}

.mobile-menu li{
width:100%;
}

.mobile-menu a{
display:flex;
align-items:center;
height:54px;
padding:0 18px;
border-radius:16px;
font-weight:600;
background:#faf8ff;
}

.mobile-menu-btn-primary{
margin-top:20px;
height:56px !important;
background:linear-gradient(
135deg,
var(--primary),
var(--primary-light)
) !important;
color:#fff !important;
justify-content:center;
}

.mobile-menu.active{
right:0;
}

.mobile-menu-overlay.active{
opacity:1;
visibility:visible;
}

/* HAMBURGER ACTIVE */

.mobile-menu-btn.active span:nth-child(1){
transform:translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2){
opacity:0;
}

.mobile-menu-btn.active span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}

/* TABLET */

@media(max-width:1100px){

.main-nav ul{
gap:22px;
}

}

/* MOBILE */

@media(max-width:768px){

.site-header{
padding:14px 0;
}

.logo{
font-size:28px;
}

.main-nav{
display:none;
}

.header-btn{
display:none;
}

.mobile-menu-btn{
display:flex;
}

.mobile-menu{
width:290px;
right:-310px;
}

}

/* HERO */

.hero-section{
position:relative;
padding:140px 0 80px;
background-image:url('../images/bg-talar.webp');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
overflow:hidden;
}


.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.hero-section .container{
position:relative;
z-index:2;
}

.hero-layout{
display:grid;
grid-template-columns:1.6fr 420px;
gap:40px;
align-items:center;
}

.hero-content{
color:#fff;
}

.hero-content h1{
font-size:72px;
line-height:1.4;
margin:15px 0 25px;
color:#fff;
}

.hero-content h1 span{
color:#ffcc4d;
}

.hero-content p{
font-size:20px;
line-height:2.3;
max-width:850px;
color:#fff;
}

.hero-badge{
display:inline-flex;
padding:10px 18px;
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
border-radius:50px;
color:#fff;
}

.hero-search-box{
background:#fff;
padding:25px;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.hero-search-text h3{
font-size:24px;
margin:0 0 10px;
}

.hero-search-text p{
font-size:15px;
line-height:2;
color:#666;
margin:0 0 20px;
}

.hero-search{
display:flex;
gap:10px;
margin-bottom:12px;
}

.hero-search input{
flex:1;
height:55px;
border:1px solid #e5e5e5;
border-radius:14px;
padding:0 15px;
}

.hero-search button{
width:120px;
border:none;
background:#6f43ff;
color:#fff;
border-radius:14px;
font-weight:700;
cursor:pointer;
}

.advanced-search-btn{
display:flex;
align-items:center;
justify-content:center;
height:58px;
background:#6f43ff;
color:#fff;
border-radius:16px;
font-size:16px;
font-weight:700;
}

.home-categories{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;
}

.home-cat-card{
height:120px;
background:#fff;
border-radius:24px;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:700;
border:1px solid rgba(255,255,255,.2);
transition:.2s;
}

.home-cat-card:hover{
transform:translateY(-3px);
}

@media(max-width:991px){

.hero-layout{
grid-template-columns:1fr;
}

.hero-content{
text-align:center;
}

.hero-content h1{
font-size:52px;
}

.hero-content p{
font-size:17px;
}

.home-categories{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero-section{
padding:110px 0 60px;
}

.hero-content h1{
font-size:36px;
}

.hero-content p{
font-size:15px;
line-height:2.1;
}

.home-categories{
gap:12px;
}

.home-cat-card{
height:90px;
font-size:15px;
border-radius:18px;
}

.hero-search{
flex-direction:column;
}

.hero-search button{
width:100%;
height:52px;
}

}



/* FOOTER */

.site-footer{
position:relative;
margin-top:120px;
padding:90px 0 30px;
background:#fff;
border-top:1px solid rgba(111,60,255,.08);
overflow:hidden;
}

.site-footer::before{
content:'';
position:absolute;
top:-200px;
left:-200px;
width:500px;
height:500px;
border-radius:50%;
background:rgba(111,60,255,.04);
}

.footer-top{
position:relative;
z-index:2;
display:grid;
grid-template-columns:2fr 1fr 1fr 1.2fr;
gap:50px;
padding-bottom:50px;
border-bottom:1px solid rgba(111,60,255,.08);
}

.footer-logo{
display:inline-block;
font-size:40px;
font-weight:800;
color:var(--primary);
margin-bottom:20px;
}

.footer-about p{
font-size:15px;
line-height:2.4;
color:var(--text-light);
max-width:520px;
margin-bottom:30px;
}

.footer-stats{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.footer-stat{
min-width:90px;
padding:14px;
background:#faf8ff;
border:1px solid rgba(111,60,255,.08);
border-radius:18px;
text-align:center;
}

.footer-stat strong{
display:block;
font-size:22px;
color:var(--primary);
margin-bottom:4px;
}

.footer-stat span{
font-size:12px;
color:var(--text-light);
}

.footer-col h4{
font-size:18px;
font-weight:700;
margin-bottom:22px;
color:var(--text);
}

.footer-col ul{
list-style:none;
}

.footer-col li{
margin-bottom:14px;
color:var(--text-light);
}

.footer-col a{
color:var(--text-light);
transition:.3s;
}

.footer-col a:hover{
color:var(--primary);
padding-right:5px;
}

.footer-social{
display:flex;
gap:10px;
margin-top:20px;
flex-wrap:wrap;
}

.footer-social a{
height:42px;
padding:0 18px;
display:flex;
align-items:center;
justify-content:center;
background:#f7f5ff;
border-radius:14px;
font-size:13px;
font-weight:700;
color:var(--primary);
}

.footer-bottom{
display:flex;
align-items:center;
justify-content:space-between;
padding-top:30px;
gap:20px;
}

.footer-bottom p{
font-size:14px;
color:var(--text-light);
}

.footer-bottom-links{
display:flex;
gap:20px;
}

.footer-bottom-links a{
font-size:14px;
color:var(--text-light);
transition:.3s;
}

.footer-bottom-links a:hover{
color:var(--primary);
}

/* TABLET */

@media(max-width:1100px){

.footer-top{
grid-template-columns:1fr 1fr;
gap:40px;
}

}

/* MOBILE */

@media(max-width:768px){

.site-footer{
margin-top:80px;
padding:70px 0 25px;
}

.footer-top{
grid-template-columns:1fr;
gap:35px;
padding-bottom:35px;
}

.footer-logo{
font-size:34px;
}

.footer-about p{
font-size:14px;
line-height:2.3;
}

.footer-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}

.footer-stat{
padding:12px;
border-radius:14px;
}

.footer-stat strong{
font-size:18px;
}

.footer-col h4{
font-size:17px;
margin-bottom:16px;
}

.footer-col li{
margin-bottom:12px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-bottom-links{
justify-content:center;
flex-wrap:wrap;
}

}
/*
front-page
*/
.section-head{
display:flex;
justify-content:space-between;
align-items:end;
margin-bottom:40px;
padding-bottom:20px;
border-bottom:1px solid #eee;
}

.section-badge{
display:inline-flex;
align-items:center;
height:38px;
padding:0 18px;
background:var(--gold-light);
color:var(--gold);
border-radius:50px;
font-size:13px;
font-weight:700;
margin-bottom:12px;
}

.section-head h2{
font-size:38px;
font-weight:800;
color:var(--dark);
margin:0;
}

.vip-section{
    padding:120px 0 20px;
}

.latest-section{
    padding:120px 0;
}

@media(max-width:768px){

    .section-head h2{
        font-size:32px;
        line-height:1.5;
    }

    .vip-section,
.latest-section{
padding:90px 0;
position:relative;
}

.vip-section{
background:linear-gradient(180deg,#fffdf8 0%,#ffffff 100%);
}

.latest-section{
background:#f8f8f8;
}

}

/* single-hall*/

.single-hero{
    padding:180px 0 120px;
}

.single-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.single-location{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 18px;
    border-radius:999px;
    background:rgba(111,60,255,.08);
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}

.single-hero-content h1{
    font-size:50px;
    line-height:1.4;
    margin-bottom:18px;
}

.single-hero-content p{
    font-size:18px;
    line-height:2.2;
    color:var(--text-light);
    margin-bottom:36px;
}

.single-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.single-meta-item{
    height:52px;
    padding:0 24px;
    border-radius:16px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow);
}

.single-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.single-call-btn,
.single-instagram-btn{
    height:58px;
    padding:0 32px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.single-call-btn{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
}

.single-instagram-btn{
    background:#fff;
    color:var(--text);
    border:1px solid var(--border);
}

.single-hero-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:34px;
    box-shadow:var(--shadow);
}

.single-gallery{
    padding:40px 0 120px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:24px;
}

.single-content-section{
    padding-bottom:120px;
}

.single-content-grid{
    display:grid;
    grid-template-columns:1fr 380px;
    gap:40px;
}

.single-box{
    background:#fff;
    border-radius:34px;
    padding:40px;
    margin-bottom:40px;
    box-shadow:var(--shadow);
}

.single-box p{
    line-height:2.3;
    color:var(--text-light);
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-item{
    height:58px;
    padding:0 20px;
    border-radius:18px;
    background:#f7f5ff;
    display:flex;
    align-items:center;
    color:var(--text);
}

.sidebar-box{
    position:sticky;
    top:120px;
    background:#fff;
    border-radius:34px;
    padding:40px;
    box-shadow:var(--shadow);
}

.sidebar-box h3{
    font-size:28px;
    margin-bottom:30px;
}

.sidebar-box ul{
    list-style:none;
}

.sidebar-box li{
    margin-bottom:20px;
    line-height:2;
    color:var(--text-light);
}

.sidebar-map-btn{
    height:58px;
    border-radius:18px;
    margin-top:30px;
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}


@media(max-width:768px){

    .single-content-grid{
        display:flex;
        flex-direction:column;
    }

    .single-sidebar{
        order:-1;
        margin-bottom:30px;
    }

}

@media(max-width:1100px){

    .single-hero-grid,
    .single-content-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .single-hero{
        padding:140px 0 80px;
    }

    .single-hero-content h1{
        font-size:34px;
        line-height:1.5;
    }

    .single-hero-image img{
        height:420px;
    }

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

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

    .single-box,
    .sidebar-box{
        padding:28px;
        border-radius:24px;
    }

}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.gallery-item{
    border-radius:22px;
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.feature-item{
    min-height:70px;
    padding:20px;
    border-radius:22px;
    background:#faf7ff;
    border:1px solid rgba(111,60,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    line-height:2;
    font-size:15px;
    color:var(--text);
    transition:.35s;
}

.feature-item:hover{
    transform:translateY(-4px);
    background:#fff;
    box-shadow:var(--shadow);
}

.hall-video-section{
    padding:0 0 120px;
}

.video-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.video-box{
    border-radius:34px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--shadow);
}

.video-box iframe{
    width:100%;
    height:420px;
}

.consultation-section{
    padding-bottom:120px;
}

.consultation-box{
    position:relative;
    overflow:hidden;
    border-radius:40px;
    padding:70px;
    background:linear-gradient(
        135deg,
        var(--primary),
        #8e67ff
    );
    color:#fff;
}

.consultation-box::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-200px;
    left:-120px;
}

.consultation-content{
    position:relative;
    z-index:2;
    margin-bottom:40px;
}

.consultation-content span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    margin-bottom:22px;
}

.consultation-content h2{
    font-size:52px;
    margin-bottom:24px;
}

.consultation-content p{
    font-size:18px;
    opacity:.9;
}

.consultation-form{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr 220px;
    gap:18px;
}

.consultation-form input{
    height:68px;
    border:none;
    outline:none;
    border-radius:20px;
    padding:0 24px;
    font-family:'AzarMehr';
    font-size:15px;
}

.consultation-form button{
    border:none;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        var(--gold),
        #f4e2a3
    );
    color:#000;
    font-family:'AzarMehr';
    font-weight:700;
    cursor:pointer;
}

.maps-section{
    padding-bottom:120px;
}

.maps-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.map-box{
    background:#fff;
    border-radius:34px;
    padding:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:var(--shadow);
    transition:.35s;
}

.map-box:hover{
    transform:translateY(-6px);
}

.map-box h3{
    font-size:28px;
    margin-bottom:14px;
}

.map-box p{
    color:var(--text-light);
}

.map-box span{
    width:64px;
    height:64px;
    border-radius:20px;
    background:#f7f5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.comments-section{
    padding-bottom:120px;
}

.comments-wrapper{
    background:#fff;
    border-radius:34px;
    padding:50px;
    box-shadow:var(--shadow);
}

.related-halls-section{
    padding-bottom:140px;
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .gallery-item img{
        height:140px;
        border-radius:18px;
    }

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

    .video-grid,
    .maps-grid,
    .consultation-form{
        grid-template-columns:1fr;
    }

    .video-box iframe{
        height:240px;
    }

    .consultation-box{
        padding:36px 24px;
        border-radius:28px;
    }

    .consultation-content h2{
        font-size:34px;
        line-height:1.5;
    }

    .consultation-content p{
        font-size:15px;
        line-height:2;
    }

    .consultation-form input,
    .consultation-form button{
        height:58px;
        border-radius:16px;
    }

    .map-box{
        padding:28px;
        border-radius:24px;
    }

    .map-box h3{
        font-size:22px;
    }

    .comments-wrapper{
        padding:28px;
        border-radius:24px;
    }

}
.feature-category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-category-box{
    background:#fff;
    border-radius:24px;
    padding:24px;
    border:1px solid rgba(111,60,255,.08);
    box-shadow:0 10px 40px rgba(111,60,255,.05);
}

.feature-category-head{
    height:46px;
    padding:0 20px;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        rgba(111,60,255,.08),
        rgba(142,103,255,.08)
    );
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:18px;
}

.feature-items{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.feature-item{
    min-height:44px;
    padding:10px 18px;
    border-radius:14px;
    background:#faf7ff;
    border:1px solid rgba(111,60,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--text);
    font-size:14px;
    line-height:1.9;
    transition:.3s;
}

.feature-item:hover{
    transform:translateY(-4px);
    background:#fff;
    box-shadow:var(--shadow);
}

.sidebar-map-buttons{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:30px;
}

.sidebar-google-btn,
.sidebar-neshan-btn{
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    transition:.3s;
}

.sidebar-google-btn{
    background:#fff;
    border:1px solid rgba(111,60,255,.08);
    color:var(--text);
}

.sidebar-neshan-btn{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
}

.sidebar-google-btn:hover,
.sidebar-neshan-btn:hover{
    transform:translateY(-4px);
}

.consultation-floating{
    position:fixed;
    left:24px;
    bottom:24px;
    width:74px;
    height:74px;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    z-index:999;
    box-shadow:
    0 20px 50px rgba(111,60,255,.25);
}

.gallery-slider{
    display:flex;
    gap:16px;
    overflow:auto;
    padding-bottom:10px;
    scrollbar-width:none;
}

.gallery-slider::-webkit-scrollbar{
    display:none;
}

.gallery-slide{
    min-width:260px;
    height:180px;
    border-radius:22px;
    overflow:hidden;
    flex-shrink:0;
}

.gallery-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.gallery-slide:hover img{
    transform:scale(1.08);
}

.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:64px;
    height:64px;
    border:none;
    border-radius:20px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:700;
    z-index:20;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(14px);

    color:var(--primary);

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    transition:.35s;
}

.gallery-prev{
    right:20px;
}

.gallery-next{
    left:20px;
}

.gallery-arrow:hover{
    transform:translateY(-50%) scale(1.08);
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
    box-shadow:
    0 20px 50px rgba(111,60,255,.25);
}

.gallery-arrow:active{
    transform:translateY(-50%) scale(.95);
}

.gallery-wrapper{
    position:relative;
}

@media(max-width:768px){

    .gallery-arrow{
        width:48px;
        height:48px;
        border-radius:16px;
        font-size:20px;
    }

    .gallery-prev{
        right:10px;
    }

    .gallery-next{
        left:10px;
    }

}

@media(max-width:768px){

    .feature-category-box{
        padding:24px;
        border-radius:24px;
    }

    .feature-category-head{
        width:100%;
        justify-content:center;
        font-size:18px;
    }

    .feature-items{
        gap:12px;
    }

    .feature-item{
        width:100%;
        justify-content:flex-start;
        border-radius:14px;
    }

    .gallery-slide{
        min-width:200px;
        height:140px;
    }

    .consultation-floating{
        width:64px;
        height:64px;
        border-radius:20px;
        font-size:28px;
        left:16px;
        bottom:16px;
    }

}

/* =========================
   MOBILE GALLERY SLIDER
========================= */

.single-gallery{
    padding:40px 0 100px;
    overflow:hidden;
}

.gallery-slider{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
    scrollbar-width:none;
}

.gallery-slider::-webkit-scrollbar{
    display:none;
}

.gallery-slide{
    position:relative;
    min-width:320px;
    width:320px;
    height:220px;
    border-radius:26px;
    overflow:hidden;
    flex-shrink:0;
    scroll-snap-align:start;
    box-shadow:
    0 20px 40px rgba(111,60,255,.12);
}

.gallery-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-slide:hover img{
    transform:scale(1.08);
}

.gallery-slide::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent
    );
}

/* =========================
   LOCATION BADGES
========================= */

.location-breadcrumb{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.location-badge{
    height:42px;
    padding:0 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(111,60,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--text);
    font-size:14px;
    box-shadow:
    0 10px 25px rgba(111,60,255,.05);
}

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

@media(max-width:768px){

    .single-gallery{
        padding:20px 0 70px;
    }

    .gallery-slider{
        gap:14px;
        margin-left:-20px;
        margin-right:-20px;
        padding-right:20px;
        padding-left:20px;
    }

    .gallery-slide{
        min-width:240px;
        width:240px;
        height:170px;
        border-radius:22px;
    }

    .location-breadcrumb{
        gap:10px;
        margin-bottom:20px;
    }

    .location-badge{
        height:38px;
        padding:0 14px;
        font-size:12px;
        border-radius:14px;
    }

}

.archive-hero{
    position:relative;
    padding:180px 0 120px;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,
    rgba(111,60,255,.12),
    transparent 30%),

    linear-gradient(
        to bottom,
        #faf8ff,
        #f4efff
    );
}

.archive-hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(111,60,255,.08);
    top:-250px;
    left:-250px;
    filter:blur(80px);
}

.archive-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.archive-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 20px;
    border-radius:999px;
    background:rgba(111,60,255,.08);
    color:var(--primary);
    margin-bottom:24px;
    font-size:14px;
    font-weight:700;
}

.archive-hero h1{
    font-size:72px;
    line-height:1.3;
    margin-bottom:26px;
    color:var(--text);
}

.archive-hero p{
    font-size:18px;
    line-height:2.3;
    color:var(--text-light);
}

.archive-locations{
    padding:100px 0 20px;
}

.locations-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.location-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:34px;
    background:#fff;
    border:1px solid rgba(111,60,255,.08);
    transition:.35s;
    box-shadow:
    0 20px 50px rgba(111,60,255,.05);
}

.location-card:hover{
    transform:translateY(-8px);
}

.location-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(111,60,255,.06);
    top:-80px;
    left:-80px;
}

.location-card-content{
    position:relative;
    z-index:2;
}

.location-card h3{
    font-size:24px;
    margin-bottom:16px;
    color:var(--text);
}

.location-card span{
    color:var(--primary);
    font-weight:700;
}

.archive-halls-section{
    padding:100px 0 140px;
}

.empty-box{
    background:#fff;
    border-radius:34px;
    padding:80px;
    text-align:center;
    box-shadow:var(--shadow);
}

.empty-box h3{
    font-size:30px;
    color:var(--text);
}

@media(max-width:1100px){

    .locations-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .archive-hero{
        padding:140px 0 80px;
    }

    .archive-hero h1{
        font-size:42px;
        line-height:1.5;
    }

    .archive-hero p{
        font-size:16px;
    }

    .locations-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .location-card{
        padding:28px;
        border-radius:24px;
    }

    .location-card h3{
        font-size:22px;
    }

    .archive-locations{
        padding:70px 0 10px;
    }

    .archive-halls-section{
        padding:70px 0 100px;
    }

}


/* =========================
   LOCATION BADGES
========================= */

.location-breadcrumb{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.location-badge{
    height:42px;
    padding:0 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(111,60,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--text);
    font-size:14px;
    box-shadow:
    0 10px 25px rgba(111,60,255,.05);
}

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

@media(max-width:768px){

    .single-gallery{
        padding:20px 0 70px;
    }

    .gallery-slider{
        gap:14px;
        margin-left:-20px;
        margin-right:-20px;
        padding-right:20px;
        padding-left:20px;
    }

    .gallery-slide{
        min-width:240px;
        width:240px;
        height:170px;
        border-radius:22px;
    }

    .location-breadcrumb{
        gap:10px;
        margin-bottom:20px;
    }

    .location-badge{
        height:38px;
        padding:0 14px;
        font-size:12px;
        border-radius:14px;
    }

}

.archive-hero{
    position:relative;
    padding:180px 0 120px;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,
    rgba(111,60,255,.12),
    transparent 30%),

    linear-gradient(
        to bottom,
        #faf8ff,
        #f4efff
    );
}

.archive-hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(111,60,255,.08);
    top:-250px;
    left:-250px;
    filter:blur(80px);
}

.archive-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.archive-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 20px;
    border-radius:999px;
    background:rgba(111,60,255,.08);
    color:var(--primary);
    margin-bottom:24px;
    font-size:14px;
    font-weight:700;
}

.archive-hero h1{
    font-size:72px;
    line-height:1.3;
    margin-bottom:26px;
    color:var(--text);
}

.archive-hero p{
    font-size:18px;
    line-height:2.3;
    color:var(--text-light);
}

.archive-locations{
    padding:100px 0 20px;
}

.locations-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.location-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:34px;
    background:#fff;
    border:1px solid rgba(111,60,255,.08);
    transition:.35s;
    box-shadow:
    0 20px 50px rgba(111,60,255,.05);
}

.location-card:hover{
    transform:translateY(-8px);
}

.location-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(111,60,255,.06);
    top:-80px;
    left:-80px;
}

.location-card-content{
    position:relative;
    z-index:2;
}

.location-card h3{
    font-size:24px;
    margin-bottom:16px;
    color:var(--text);
}

.location-card span{
    color:var(--primary);
    font-weight:700;
}

.archive-halls-section{
    padding:100px 0 140px;
}

.empty-box{
    background:#fff;
    border-radius:34px;
    padding:80px;
    text-align:center;
    box-shadow:var(--shadow);
}

.empty-box h3{
    font-size:30px;
    color:var(--text);
}

@media(max-width:1100px){

    .locations-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .archive-hero{
        padding:140px 0 80px;
    }

    .archive-hero h1{
        font-size:42px;
        line-height:1.5;
    }

    .archive-hero p{
        font-size:16px;
    }

    .locations-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .location-card{
        padding:28px;
        border-radius:24px;
    }

    .location-card h3{
        font-size:22px;
    }

    .archive-locations{
        padding:70px 0 10px;
    }

    .archive-halls-section{
        padding:70px 0 100px;
    }

}


/* =========================
   TAXONOMY LOCATION
========================= */

.archive-hero{
    position:relative;
    overflow:hidden;
    padding:170px 0 90px;
    background:
    radial-gradient(circle at top right,
    rgba(111,60,255,.10),
    transparent 30%),

    linear-gradient(
        to bottom,
        #faf8ff,
        #f6f1ff
    );
}

.archive-hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(111,60,255,.06);
    top:-300px;
    left:-300px;
    filter:blur(80px);
}

.archive-hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:900px;
}

.archive-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 20px;
    border-radius:999px;
    background:rgba(111,60,255,.08);
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.archive-hero h1{
    font-size:68px;
    line-height:1.4;
    margin-bottom:28px;
    color:var(--text);
    word-break:break-word;
}

.archive-hero p{
    font-size:18px;
    line-height:2.4;
    color:var(--text-light);
}

/* =========================
   LOCATIONS GRID
========================= */

.archive-locations{
    padding:90px 0 20px;
}

.locations-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

.location-card{
    position:relative;
    overflow:hidden;
    min-height:180px;
    border-radius:30px;
    background:#fff;
    border:1px solid rgba(111,60,255,.08);
    transition:.35s;
    box-shadow:
    0 20px 50px rgba(111,60,255,.05);
}

.location-card:hover{
    transform:translateY(-8px);
}

.location-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(111,60,255,.05);
    top:-80px;
    left:-80px;
}

.location-card-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    padding:34px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.location-card h3{
    font-size:24px;
    line-height:1.8;
    color:var(--text);
}

.location-card span{
    color:var(--primary);
    font-weight:700;
    font-size:14px;
}

/* =========================
   HALLS
========================= */

.archive-halls-section{
    padding:90px 0;
}

/* =========================
   EMPTY
========================= */

.empty-box{
    background:#fff;
    border-radius:34px;
    padding:70px 40px;
    text-align:center;
    box-shadow:var(--shadow);
}

.empty-box h3{
    font-size:28px;
    line-height:1.8;
}

/* =========================
   SEO CONTENT
========================= */

.seo-content-section{
    padding:0 0 120px;
}

.seo-content-box{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:40px;
    padding:60px;
    border:1px solid rgba(111,60,255,.06);
    box-shadow:
    0 20px 60px rgba(111,60,255,.05);
}

.seo-content-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(111,60,255,.05);
    top:-220px;
    left:-220px;
}

.seo-content-inner{
    position:relative;
    z-index:2;
}

.seo-content-inner p{
    font-size:17px;
    line-height:2.5;
    color:var(--text-light);
    margin-bottom:24px;
}

.seo-content-inner h2,
.seo-content-inner h3{
    line-height:1.8;
    margin-bottom:22px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .archive-hero h1{
        font-size:52px;
    }

    .locations-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

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

@media(max-width:768px){

    .archive-hero{
        padding:130px 0 70px;
    }

    .archive-hero-content{
        max-width:100%;
    }

    .archive-badge{
        height:38px;
        padding:0 14px;
        font-size:12px;
        margin-bottom:18px;
    }

    .archive-hero h1{
        font-size:34px;
        line-height:1.7;
        margin-bottom:18px;
    }

    .archive-hero p{
        font-size:15px;
        line-height:2.3;
    }

    .archive-locations{
        padding:60px 0 10px;
    }

    .locations-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .location-card{
        min-height:unset;
        border-radius:22px;
    }

    .location-card-content{
        padding:24px;
        gap:18px;
    }

    .location-card h3{
        font-size:20px;
        line-height:1.9;
    }

    .archive-halls-section{
        padding:60px 0;
    }

    .empty-box{
        padding:40px 24px;
        border-radius:24px;
    }

    .empty-box h3{
        font-size:22px;
    }

    .seo-content-section{
        padding:0 0 80px;
    }

    .seo-content-box{
        padding:30px 22px;
        border-radius:24px;
    }

    .seo-content-inner p{
        font-size:15px;
        line-height:2.4;
    }

}
/* =========================
   SINGLE HALL RESPONSIVE FIX
========================= */

.single-content-section{
    overflow:hidden;
}

.single-content-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:32px;
    align-items:start;
}

.single-content{
    min-width:0;
}

.single-box{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.single-box *{
    max-width:100%;
}

.single-box img{
    max-width:100%;
    height:auto;
    border-radius:18px;
}

.single-box p,
.single-box li{
    word-wrap:break-word;
    overflow-wrap:break-word;
}

.feature-category-grid{
    width:100%;
}

.feature-category-box{
    width:100%;
    overflow:hidden;
}

.feature-items{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.feature-item{
    max-width:100%;
    word-break:break-word;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.video-box{
    width:100%;
    overflow:hidden;
}

.video-box iframe{
    width:100%;
    max-width:100%;
    border:none;
}

/* img*/

.archive-hero-has-image{
    position:relative;
}

.archive-hero-has-image::before{
    display:none;
}

.archive-hero-has-image .archive-hero-content{
    color:#fff;
}

.archive-hero-has-image h1{
    color:#fff;
}

.archive-hero-has-image p{
    color:rgba(255,255,255,.88);
}

.archive-hero-has-image .archive-count{
    color:#fff;
    margin:20px 0;
    font-weight:700;
}

.archive-count{
    margin:18px 0 24px;
    font-size:15px;
    font-weight:700;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .single-content-grid{
        grid-template-columns:1fr;
    }

    .single-sidebar{
        width:100%;
    }

}

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

@media(max-width:768px){

    .single-content-section{
        padding-bottom:70px;
    }

    .single-content-grid{
        gap:22px;
    }

    .single-box{
        padding:24px 18px;
        border-radius:22px;
        margin-bottom:22px;
    }

    .single-box .section-head{
        margin-bottom:24px;
    }

    .single-box .section-head h2{
        font-size:24px;
        line-height:1.8;
    }

    .single-box p{
        font-size:15px;
        line-height:2.4;
    }

    .feature-category-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .feature-category-box{
        padding:18px;
        border-radius:20px;
    }

    .feature-category-head{
        width:100%;
        height:auto;
        min-height:48px;
        padding:12px 16px;
        font-size:16px;
        line-height:1.8;
        text-align:center;
        border-radius:14px;
        margin-bottom:18px;
    }

    .feature-items{
        flex-direction:column;
        gap:10px;
    }

    .feature-item{
        width:100%;
        min-height:48px;
        padding:12px 14px;
        font-size:14px;
        line-height:2;
        border-radius:14px;
        justify-content:flex-start;
    }

    .video-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .video-box{
        border-radius:20px;
    }

    .video-box iframe{
        height:220px;
    }

    .sidebar-box{
        padding:24px 18px;
        border-radius:22px;
    }

    .sidebar-box h3{
        font-size:24px;
        margin-bottom:22px;
    }

    .sidebar-box li{
        font-size:14px;
        line-height:2.2;
    }

}



/* =========================
   CARD EXTRA
========================= */

.hall-discount{
    position:absolute;
    right:14px;
    top:14px;
    height:38px;
    padding:0 14px;
    border-radius:999px;
    background:linear-gradient(
        135deg,
        #ff4d6d,
        #ff758f
    );
    color:#fff;
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3;
    box-shadow:
    0 10px 25px rgba(255,77,109,.28);
}

.hall-meta{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:18px;
}

.hall-capacity{
    height:38px;
    padding:0 14px;
    border-radius:14px;
    background:#faf7ff;
    border:1px solid rgba(111,60,255,.06);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    font-size:12px;
    color:var(--text);
}

.hall-price{
    font-size:13px;
    color:var(--text-light);
    line-height:2;
}

.hall-card-footer{
    margin-top:auto;
}

@media(max-width:768px){

    .hall-discount{
        top:10px;
        right:10px;
        height:30px;
        padding:0 10px;
        font-size:10px;
    }

    .hall-meta{
        gap:8px;
        margin-bottom:14px;
    }

    .hall-capacity{
        height:32px;
        padding:0 10px;
        border-radius:10px;
        font-size:10px;
    }

}

.video-box iframe{
    width:100% !important;
    height:420px !important;
    border:none;
    border-radius:26px;
    overflow:hidden;
    display:block;
}

@media(max-width:768px){

    .video-box iframe{
        height:240px !important;
        border-radius:20px;
    }

}


.video-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.video-box{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    background:#000;
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.video-box iframe{
    width:100% !important;
    height:360px !important;
    border:none !important;
    display:block;
}

@media(max-width:768px){

    .video-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .video-box{
        border-radius:22px;
    }

    .video-box iframe{
        height:220px !important;
    }

}




.hall-menu-section{
    padding:30px 0 10px;
}
.menu-accordion{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.menu-accordion-item{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(111,60,255,.08);
}

.menu-accordion-head{
    width:100%;
    height:80px;
    padding:0 30px;
    background:#fff;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-family:inherit;
    font-size:20px;
    font-weight:700;
}

.accordion-icon{
    font-size:28px;
    transition:.3s;
}

.menu-accordion-body{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.menu-accordion-content{
    padding:0 30px 30px;
    line-height:2.3;
}

.menu-accordion-item.active .menu-accordion-body{
    max-height:1000px;
}

.menu-accordion-item.active .accordion-icon{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .menu-accordion-head{
        height:auto;
        min-height:70px;
        padding:20px;
        font-size:17px;
    }

    .menu-accordion-content{
        padding:0 20px 20px;
    }

}
/* =========================
   CONSULTATION SECTION
========================= */

.consultation-section{
    padding:20px 0 60px;
}

.consultation-box{
    position:relative;
    overflow:hidden;
    border-radius:40px;
    padding:50px;
    background:
    linear-gradient(
        135deg,
        var(--primary),
        #8f63ff
    );
    display:grid;
    grid-template-columns:1fr 480px;
    gap:40px;
    align-items:center;
}

.consultation-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-180px;
    left:-180px;
}

.consultation-content{
    position:relative;
    z-index:2;
}

.consultation-content span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 18px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    color:#fff;
    margin-bottom:22px;
    font-size:13px;
    font-weight:700;
}

.consultation-content h2{
    font-size:44px;
    line-height:1.5;
    margin-bottom:18px;
    color:#fff;
}

.consultation-content p{
    font-size:17px;
    line-height:2.3;
    color:rgba(255,255,255,.82);
}

.consultation-form{
    position:relative;
    z-index:2;
    padding:30px;
    border-radius:30px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    display:flex;
    flex-direction:column;
    gap:18px;
}

.consultation-form input{
    width:100%;
    height:60px;
    border:none;
    border-radius:18px;
    background:#fff;
    padding:0 20px;
    font-family:inherit;
    font-size:14px;
}

.consultation-form button{
    width:100%;
    height:60px;
    border:none;
    border-radius:18px;
    background:#fff;
    color:var(--primary);
    font-family:inherit;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}

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

@media(max-width:768px){

    .menu-accordion{
        gap:14px;
    }

    .menu-accordion-item{
        border-radius:22px;
    }

    .menu-accordion-head{
        min-height:70px;
        padding:18px;
    }

    .menu-accordion-head span{
        font-size:16px;
    }

    .menu-accordion-head strong{
        width:34px;
        height:34px;
        border-radius:12px;
        font-size:20px;
    }

    .menu-accordion-content{
        padding:0 18px 22px;
    }

    .menu-accordion-content p,
    .menu-accordion-content li{
        font-size:14px;
        line-height:2.3;
    }

    .consultation-section{
        padding:10px 0 40px;
    }

    .consultation-box{
        grid-template-columns:1fr;
        gap:28px;
        padding:28px 20px;
        border-radius:28px;
    }

    .consultation-content h2{
        font-size:28px;
        line-height:1.8;
    }

    .consultation-content p{
        font-size:14px;
        line-height:2.2;
    }

    .consultation-form{
        padding:18px;
        border-radius:22px;
    }

    .consultation-form input,
    .consultation-form button{
        height:52px;
        border-radius:14px;
        font-size:13px;
    }

}
.hero-search{
    display:flex;
    gap:14px;
    margin-top:30px;
    max-width:720px;
    margin-inline:auto;
}

.hero-search input{
    flex:1;
    height:64px;
    border:none;
    outline:none;
    border-radius:22px;
    padding:0 24px;
    background:#fff;
    font-family:inherit;
    font-size:15px;
    box-shadow:
    0 15px 40px rgba(111,60,255,.08);
}

.hero-search button{
    width:160px;
    height:64px;
    border:none;
    border-radius:22px;
    font-family:inherit;
    font-weight:700;
    cursor:pointer;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
}

.hero-search-results-section{
    padding:20px 0 50px;
}

.hall-search-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.no-results{
    padding:30px;
    border-radius:24px;
    background:#fff;
    text-align:center;
}

.sticky-contact-bar{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99999;
}

.sticky-call-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:260px;
    height:64px;
    padding:0 30px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
    font-size:16px;
    font-weight:700;
    box-shadow:
    0 15px 40px rgba(111,60,255,.25);
    transition:.3s;
}

.sticky-call-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

@media(max-width:768px){

    .sticky-contact-bar{
        right:12px;
        left:12px;
        bottom:12px;
    }

    .sticky-call-btn{
        width:100%;
        min-width:100%;
        height:58px;
        border-radius:16px;
        font-size:15px;
    }

}

@media(max-width:768px){

    .hero-search{
        flex-direction:column;
        gap:10px;
    }

    .hero-search input{
        height:56px;
        border-radius:18px;
    }

    .hero-search button{
        width:100%;
        height:56px;
        border-radius:18px;
    }

    .hall-search-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:14px;
    }

}

.search-page{
    padding:50px 0;
}

.search-head{
    text-align:center;
    margin-bottom:30px;
}

.advanced-search-form{
    display:grid;
    grid-template-columns:
    repeat(5,minmax(0,1fr));
    gap:15px;
    margin-bottom:35px;
}

.advanced-search-form input,
.advanced-search-form select{
    width:100%;
    height:58px;
    border:none;
    border-radius:18px;
    background:#fff;
    padding:0 16px;
    font-family:inherit;
}

.advanced-search-form button{
    height:58px;
    border:none;
    border-radius:18px;
    cursor:pointer;
    font-family:inherit;
}

.hall-search-grid{
    display:grid;
    grid-template-columns:
    repeat(4,minmax(0,1fr));
    gap:20px;
}

.no-results{
    background:#fff;
    padding:30px;
    border-radius:24px;
    text-align:center;
}

@media(max-width:768px){

    .advanced-search-form{
        grid-template-columns:1fr;
    }

    .hall-search-grid{
        grid-template-columns:
        repeat(2,minmax(0,1fr));
        gap:14px;
    }

}
.hero-layout{
display:grid;
grid-template-columns:1.5fr 420px;
gap:40px;
align-items:center;
}

.hero-search-box{
background:#fff;
padding:30px;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.home-categories{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:16px;
margin-top:40px;
}

.home-cat-card{
width:130px;
height:110px;
background:#fff;
border-radius:24px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:10px;
border:1px solid #e8e2ff;
}

.home-cat-card img{
width:48px;
height:48px;
object-fit:contain;
}

.home-cat-small{
height:56px;
padding:0 28px;
background:#fff;
border:1px solid #e8e2ff;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
}

@media(max-width:768px){

.hero-layout{
grid-template-columns:1fr;
}

.hero-search-box{
order:2;
}

.hero-content{
order:1;
}

.home-categories{
gap:10px;
}

.home-cat-card{
width:calc(50% - 5px);
height:95px;
}

.home-cat-small{
width:calc(50% - 5px);
padding:0;
}

}


/* HALL GRID */

:root{
--gold:#d4a84f;
--gold-light:#f8f1df;
--dark:#1d1d1d;
}

.vip-section,
.latest-section{
padding:90px 0;
position:relative;
}

.vip-section{
background:linear-gradient(180deg,#fffdf8 0%,#ffffff 100%);
}

.latest-section{
background:#f8f8f8;
}

.section-head{
display:flex;
justify-content:space-between;
align-items:end;
margin-bottom:40px;
padding-bottom:20px;
border-bottom:1px solid #eee;
}

.section-badge{
display:inline-flex;
align-items:center;
height:38px;
padding:0 18px;
background:var(--gold-light);
color:var(--gold);
border-radius:50px;
font-size:13px;
font-weight:700;
margin-bottom:12px;
}

.section-head h2{
font-size:38px;
font-weight:800;
color:var(--dark);
margin:0;
}

/* GRID */

.hall-grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:18px;
}

/* CARD */

.hall-card{
display:flex;
flex-direction:column;
height:100%;
background:#fff;
border-radius:24px;
overflow:hidden;
border:1px solid #f1f1f1;
box-shadow:0 10px 35px rgba(0,0,0,.06);
transition:.3s;
}

.hall-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.hall-card-thumb{
display:block;
height:210px;
position:relative;
overflow:hidden;
}

.hall-card-thumb img{
width:100%;
height:100%;
object-fit:cover;
transition:.45s;
}

.hall-card:hover .hall-card-thumb img{
transform:scale(1.08);
}

/* BADGES */

.hall-discount{
position:absolute;
top:10px;
right:10px;
height:32px;
padding:0 12px;
display:flex;
align-items:center;
justify-content:center;
border-radius:999px;
background:#ff4d6d;
color:#fff;
font-size:11px;
font-weight:700;
z-index:5;
box-shadow:0 8px 20px rgba(255,77,109,.3);
}

.hall-rating{
position:absolute;
top:10px;
left:10px;
height:32px;
padding:0 12px;
display:flex;
align-items:center;
justify-content:center;
border-radius:999px;
background:#fff;
color:#222;
font-size:11px;
font-weight:700;
z-index:5;
}

.hall-type-badge{
position:absolute;
left:10px;
bottom:10px;
height:28px;
padding:0 10px;
display:flex;
align-items:center;
justify-content:center;
border-radius:999px;
background:rgba(0,0,0,.65);
color:#fff;
font-size:10px;
backdrop-filter:blur(8px);
}

/* CONTENT */

.hall-card-content{
display:flex;
flex-direction:column;
flex:1;
padding:14px;
}

/* LOCATION */

.hall-location-row{
display:flex;
flex-wrap:wrap;
gap:6px;
margin-bottom:10px;
}

.hall-location-row span{
height:24px;
padding:0 10px;
display:flex;
align-items:center;
justify-content:center;
background:#f7f5ff;
border-radius:999px;
font-size:10px;
font-weight:600;
}

/* TITLE */

.hall-card-title{
font-size:19px;
line-height:1.9;
margin-bottom:10px;
min-height:58px;
}

.hall-card-title a{
color:#222;
}

/* FEATURES */

.hall-features{
display:flex;
flex-wrap:wrap;
gap:6px;
margin-bottom:12px;
}

.hall-feature{
height:26px;
padding:0 10px;
display:flex;
align-items:center;
justify-content:center;
background:#f5f5f5;
border-radius:999px;
font-size:10px;
font-weight:600;
color:#555;
}

/* META */

.hall-meta{
display:flex;
flex-wrap:wrap;
gap:6px;
padding:0;
margin-bottom:12px;
border:none;
}

.hall-capacity{
height:30px;
padding:0 10px;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
background:#faf7ff;
font-size:11px;
font-weight:600;
}

.hall-price{
height:30px;
padding:0 10px;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
background:#fff8e8;
font-size:11px;
font-weight:600;
}

/* BUTTONS */

.hall-card-actions{
display:grid;
grid-template-columns:1fr 65px;
gap:8px;
margin-top:auto;
}

.hall-more{
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:var(--gold);
color:#fff;
border-radius:12px;
font-size:12px;
font-weight:700;
}

.hall-call-btn{
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#f5f5f5;
border-radius:12px;
font-size:12px;
font-weight:700;
}

/* TABLET */

@media(max-width:1200px){

.hall-grid{
grid-template-columns:repeat(3,minmax(0,1fr));
}

}

@media(max-width:991px){

.hall-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}

}

/* MOBILE */

@media(max-width:768px){

.vip-section,
.latest-section{
padding:60px 0;
}

.section-head{
margin-bottom:25px;
}

.section-head h2{
font-size:26px;
}

.hall-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
gap:12px;
}

.hall-card{
border-radius:18px;
}

.hall-card-thumb{
height:135px;
}

.hall-discount{
top:8px;
right:8px;
height:22px;
padding:0 8px;
font-size:8px;
}

.hall-rating{
top:8px;
left:8px;
height:22px;
padding:0 8px;
font-size:8px;
}

.hall-type-badge{
left:8px;
bottom:8px;
height:20px;
padding:0 7px;
font-size:7px;
}

.hall-card-content{
padding:10px;
}

.hall-location-row{
gap:4px;
margin-bottom:6px;
}

.hall-location-row span{
height:18px;
padding:0 6px;
font-size:7px;
}

.hall-card-title{
font-size:12px;
line-height:1.8;
min-height:42px;
margin-bottom:6px;
}

.hall-features{
gap:4px;
margin-bottom:8px;
}

.hall-feature{
height:18px;
padding:0 6px;
font-size:7px;
}

.hall-meta{
gap:4px;
margin-bottom:8px;
}

.hall-capacity,
.hall-price{
height:22px;
padding:0 6px;
font-size:7px;
border-radius:8px;
}

.hall-card-actions{
grid-template-columns:1fr 42px;
gap:5px;
}

.hall-more,
.hall-call-btn{
height:30px;
font-size:8px;
border-radius:9px;
}

}

@media(max-width:420px){

.hall-card-thumb{
height:120px;
}

.hall-card-title{
font-size:11px;
min-height:38px;
}

}




.hall-share-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:24px;
}

.share-btn{
    height:54px;
    padding:0 22px;
    border:none;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    color:#fff;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.share-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

.share-whatsapp{
    background:#25D366;
}

.share-telegram{
    background:#229ED9;
}

.share-bale{
    background:#7B61FF;
}

.share-copy{
    background:linear-gradient(
        135deg,
        var(--gold),
        #f4e2a3
    );
    color:#000;
}

.share-copy:hover{
    color:#000;
}

@media(max-width:768px){

    .hall-share-buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .share-btn{
        width:100%;
        height:50px;
        font-size:13px;
    }

}

/* =========================
COMMENTS
========================= */

.hall-comments{
    width:100%;
}

.comments-title{
    font-size:32px;
    font-weight:800;
    margin-bottom:40px;
    color:var(--text);
}

.comment-list{
    list-style:none;
    padding:0;
    margin:0;
}

.comment-list li{
    list-style:none;
}

.comment-card{
    background:#fff;
    border:1px solid rgba(111,60,255,.08);
    border-radius:28px;
    padding:30px;
    margin-bottom:24px;
    box-shadow:0 15px 40px rgba(111,60,255,.05);
}

.comment-author{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.comment-author img{
    width:60px;
    height:60px;
    border-radius:50%;
}

.comment-author strong{
    font-size:18px;
    color:var(--text);
}

.comment-ratings{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:20px;
    padding:16px 20px;
    border-radius:18px;
    background:#faf7ff;
    border:1px solid rgba(111,60,255,.08);
    font-size:14px;
    color:var(--text);
    line-height:2;
}

.comment-text{
    color:var(--text-light);
    line-height:2.3;
    font-size:15px;
}

.comment-text p:last-child{
    margin-bottom:0;
}

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

.comment-respond{
    margin-top:60px;
    background:#fff;
    border-radius:34px;
    padding:40px;
    border:1px solid rgba(111,60,255,.08);
    box-shadow:var(--shadow);
}

.comment-form-title{
    font-size:28px;
    margin-bottom:30px;
    color:var(--text);
}

.rating-fields{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:24px;
}

.rating-row{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.rating-row label{
    font-size:14px;
    font-weight:700;
    color:var(--text);
}

.rating-row select{
    height:58px;
    border-radius:18px;
    border:1px solid rgba(111,60,255,.1);
    padding:0 18px;
    background:#fff;
    font-family:inherit;
    font-size:14px;
    outline:none;
}

.comment-form-comment{
    margin-bottom:20px;
}

.comment-form-comment textarea{
    width:100%;
    min-height:180px;
    border-radius:24px;
    border:1px solid rgba(111,60,255,.1);
    padding:20px;
    resize:vertical;
    outline:none;
    font-family:inherit;
    font-size:15px;
    line-height:2;
}

.comment-form-author,
.comment-form-email{
    margin-bottom:20px;
}

.comment-form-author input,
.comment-form-email input{
    width:100%;
    height:58px;
    border-radius:18px;
    border:1px solid rgba(111,60,255,.1);
    padding:0 18px;
    outline:none;
    font-family:inherit;
}

.form-submit{
    margin-top:20px;
}

.form-submit input{
    height:60px;
    padding:0 40px;
    border:none;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
    font-weight:700;
    font-family:inherit;
    cursor:pointer;
    transition:.3s;
}

.form-submit input:hover{
    transform:translateY(-3px);
}

.logged-in-as{
    margin-bottom:20px;
}

.comment-notes{
    display:none;
}

/* =========================
AVERAGE RATING
========================= */

.hall-rating-summary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    height:54px;
    padding:0 24px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #fff5cf,
        #ffeaa0
    );
    color:#000;
    font-weight:800;
    margin-bottom:24px;
    box-shadow:0 15px 35px rgba(255,200,0,.15);
}

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

@media(max-width:768px){

    .comments-title{
        font-size:24px;
        margin-bottom:24px;
    }

    .comment-card{
        padding:22px;
        border-radius:22px;
    }

    .comment-author img{
        width:50px;
        height:50px;
    }

    .comment-author strong{
        font-size:16px;
    }

    .comment-ratings{
        flex-direction:column;
        gap:8px;
        padding:14px;
    }

    .comment-respond{
        padding:24px;
        border-radius:24px;
    }

    .comment-form-title{
        font-size:22px;
    }

    .rating-fields{
        grid-template-columns:1fr;
    }

    .comment-form-comment textarea{
        min-height:140px;
        border-radius:18px;
    }

}

.consultation-form textarea,
.comment-form textarea{
    width:100%;
    min-height:140px;
    padding:18px 20px;
    border:1px solid rgba(111,60,255,.12);
    border-radius:18px;
    background:#fff;
    font-family:inherit;
    font-size:14px;
    line-height:2;
    color:var(--text);
    resize:vertical;
    outline:none;
    transition:.3s;
}

.consultation-form textarea:focus,
.comment-form textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(111,60,255,.08);
}




.hall-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.hall-meta-badge{
    display:flex;
    align-items:center;
    gap:6px;
    min-height:36px;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:500;
}

.hall-meta-label{
    opacity:.75;
}

.hall-meta-badge strong{
    font-weight:700;
}

.hall-rating-badge{
    background:#fff4d8;
    color:#c68a00;
}

.hall-level-badge{
    background:#f4ecff;
    color:#6f3cff;
}

.hall-capacity-badge{
    background:#f4f6f8;
    color:#444;
}


/* =========================
   FAQ
========================= */

.faq-section{
    padding:0 0 120px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border-radius:28px;
    padding:28px 32px;
    border:1px solid rgba(111,60,255,.08);
    box-shadow:
    0 15px 40px rgba(111,60,255,.05);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-3px);
}

.faq-question{
    position:relative;
    padding-right:36px;
    font-size:18px;
    font-weight:800;
    line-height:2;
    color:var(--text);
}

.faq-question::before{
    content:'+';
    position:absolute;
    right:0;
    top:0;
    color:var(--primary);
    font-size:24px;
    font-weight:900;
}

.faq-answer{
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid rgba(0,0,0,.06);
    font-size:15px;
    line-height:2.4;
    color:var(--text-light);
}

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

@media(max-width:768px){

    .faq-section{
        padding:0 0 80px;
    }

    .faq-item{
        border-radius:22px;
        padding:22px 20px;
    }

    .faq-question{
        font-size:15px;
        line-height:2.1;
        padding-right:30px;
    }

    .faq-question::before{
        font-size:20px;
    }

    .faq-answer{
        font-size:14px;
        line-height:2.3;
    }

}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* =========================================================
   SINGLE BOX - متن خواناتر + مشاهده بیشتر (به‌جای اسکرول)
========================================================= */

.single-box-content{
    color:var(--text);
    font-size:16px;
    line-height:2.1;
}

.single-box-content p{
    margin-bottom:18px;
    color:var(--text-light);
}

.single-box-content h1,
.single-box-content h2,
.single-box-content h3,
.single-box-content h4{
    color:var(--text);
    line-height:1.7;
    margin:24px 0 14px;
}

.single-box-content ul,
.single-box-content ol{
    padding-inline-start:22px;
    margin-bottom:18px;
    color:var(--text-light);
}

.single-box-content li{
    margin-bottom:8px;
    line-height:2;
}

.single-box-content a{
    color:var(--primary);
    text-decoration:underline;
}

.single-box-content.is-collapsible,
.feature-category-grid.is-collapsible{
    position:relative;
    overflow:hidden;
    max-height:1000px;
    transition:max-height .45s ease;
}

.single-box-content.is-collapsible.is-collapsed,
.feature-category-grid.is-collapsible.is-collapsed{
    max-height:420px;
}

.single-box-content.is-collapsible.is-collapsed::after,
.feature-category-grid.is-collapsible.is-collapsed::after{
    content:'';
    position:absolute;
    right:0;
    left:0;
    bottom:0;
    height:110px;
    background:linear-gradient(
        to top,
        #fff,
        rgba(255,255,255,0)
    );
    pointer-events:none;
}

.read-more-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:52px;
    margin-top:18px;
    border:1px solid rgba(111,60,255,.18);
    border-radius:16px;
    background:#faf7ff;
    color:var(--primary);
    font-family:inherit;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.read-more-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* =========================================================
   دکمه‌های قبلاً بدون استایل
========================================================= */

.sidebar-contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:58px;
    border:none;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
    font-family:inherit;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.sidebar-contact-btn:hover{
    transform:translateY(-3px);
}

.hall-map-box{
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.hall-map-box iframe{
    width:100%;
    min-height:360px;
    border:none;
    display:block;
}

.consultation-result.success-message{
    margin-top:14px;
    padding:14px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.9);
    border:1px solid rgba(22,163,74,.25);
    color:#16a34a;
    font-weight:700;
    text-align:center;
}

.consultation-result.error-message{
    margin-top:14px;
    padding:14px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.9);
    border:1px solid rgba(220,38,38,.25);
    color:#dc2626;
    font-weight:700;
    text-align:center;
}

/* =========================================================
   مودال تماس با مدیر تالار / درخواست مشاوره سریع
========================================================= */

.talaristan-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:100000;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(20,10,40,.55);
    backdrop-filter:blur(4px);
}

.talaristan-modal.active{
    display:flex;
}

body.talaristan-modal-open{
    overflow:hidden;
}

.talaristan-modal-box{
    position:relative;
    width:100%;
    max-width:520px;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.talaristan-modal-close{
    position:absolute;
    top:18px;
    left:18px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#f7f5ff;
    color:var(--text);
    font-size:16px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s;
}

.talaristan-modal-close:hover{
    background:var(--primary);
    color:#fff;
}

.talaristan-modal-head{
    margin-bottom:24px;
}

.talaristan-modal-head span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 16px;
    border-radius:999px;
    background:#f7f5ff;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.talaristan-modal-head h3{
    font-size:24px;
    line-height:1.6;
    margin-bottom:10px;
    color:var(--text);
}

.talaristan-modal-head p{
    color:var(--text-light);
    font-size:14px;
    line-height:2;
}

.talaristan-modal-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.consultation-form select{
    width:100%;
    height:60px;
    border:none;
    border-radius:18px;
    background:#fff;
    padding:0 20px;
    font-family:inherit;
    font-size:14px;
    color:var(--text);
    cursor:pointer;
}

@media(max-width:768px){

    .consultation-form select{
        height:52px;
        border-radius:14px;
        font-size:13px;
    }

}

.talaristan-modal-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

/* =========================================================
   باکس‌های «چرا تالارستان» - لندینگ‌های ثبت تالار
========================================================= */

.why-us-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.why-us-card{
    background:#fff;
    border-radius:28px;
    padding:32px 28px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.3s;
}

.why-us-card:hover{
    transform:translateY(-6px);
}

.why-us-icon{
    width:64px;
    height:64px;
    margin:0 auto 20px;
    border-radius:20px;
    background:#f7f5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.why-us-card h3{
    font-size:19px;
    margin-bottom:10px;
    color:var(--text);
}

.why-us-card p{
    font-size:14px;
    line-height:2;
    color:var(--text-light);
}

@media(max-width:1100px){

    .why-us-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .why-us-grid{
        grid-template-columns:1fr;
    }

    .why-us-card{
        padding:26px 22px;
    }

}

.talaristan-modal-form input,
.talaristan-modal-form textarea{
    width:100%;
    height:56px;
    border:1px solid var(--border);
    outline:none;
    border-radius:16px;
    padding:0 20px;
    font-family:inherit;
    font-size:14px;
    background:#faf9ff;
    color:var(--text);
    transition:.25s;
}

.talaristan-modal-form textarea{
    height:auto;
    min-height:100px;
    padding:14px 20px;
    resize:vertical;
}

.talaristan-modal-form input:focus,
.talaristan-modal-form textarea:focus{
    border-color:var(--primary);
    background:#fff;
    box-shadow:0 0 0 4px rgba(111,60,255,.08);
}

.talaristan-modal-form button[type="submit"]{
    height:58px;
    border:none;
    border-radius:16px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
    font-family:inherit;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.talaristan-modal-form button[type="submit"]:hover{
    transform:translateY(-2px);
}

.talaristan-modal-form button[type="submit"]:disabled{
    opacity:.7;
    cursor:default;
    transform:none;
}

@media(max-width:768px){

    .talaristan-modal-box{
        padding:28px 22px;
        border-radius:24px;
    }

    .talaristan-modal-head h3{
        font-size:20px;
    }

}