/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Vazirmatn',sans-serif;
background:#f7f8fa;
color:#222;
direction:rtl;
overflow-x:hidden;
}

/* Container */

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* Top Bar */

.top-bar{
background:#081c34;
color:#fff;
padding:12px 0;
display:flex;
justify-content:space-between;
align-items:center;
padding-right:40px;
padding-left:40px;
font-size:14px;
}

.top-bar span{
display:flex;
align-items:center;
gap:8px;
}

/* Header */

header{
background:#0b2447;
position:sticky;
top:0;
z-index:999;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

/* Logo */

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo-icon{
width:70px;
height:70px;
border-radius:50%;
background:linear-gradient(135deg,#d4af37,#f5d36c);
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#0b2447;
}

.logo-text h1{
font-size:24px;
color:#fff;
}

.logo-text h2{
font-size:18px;
color:#d4af37;
}

.logo-text span{
font-size:12px;
color:#d6d6d6;
}

/* Nav */

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.active a{
color:#d4af37;
}

/* Contact Button */

.header-call a{
display:flex;
align-items:center;
gap:10px;
background:#d4af37;
padding:12px 20px;
border-radius:12px;
text-decoration:none;
color:#081c34;
font-weight:700;
transition:.3s;
}

.header-call a:hover{
transform:translateY(-3px);
}

.header-call strong{
display:block;
font-size:15px;
}

/* Hero */

.hero{
height:90vh;
position:relative;
overflow:hidden;
}

.hero-image{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:
linear-gradient(
to left,
rgba(11,36,71,.65),
rgba(11,36,71,.85)
);
display:flex;
align-items:center;
}

.hero-content{
width:100%;
}

.hero-text{
max-width:700px;
}

.hero-text h2{
font-size:70px;
line-height:1.2;
color:white;
margin-bottom:20px;
}

.hero-text h2 span{
display:block;
color:#d4af37;
}

.hero-text p{
font-size:24px;
line-height:2;
color:#fff;
margin-bottom:35px;
}

/* Hero Buttons */

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.hero-btn{
padding:15px 28px;
border-radius:12px;
text-decoration:none;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
transition:.3s;
}

.call-btn{
background:#d4af37;
color:#081c34;
}

.barnameh-btn{
background:white;
color:#0b2447;
}

.price-btn{
background:transparent;
border:2px solid white;
color:white;
}

.hero-btn:hover{
transform:translateY(-5px);
}

/* Section Title */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
color:#0b2447;
margin-bottom:15px;
}

.section-title p{
color:#666;
font-size:18px;
}

/* Services */

.services{
padding:100px 0;
background:white;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
text-align:center;
border-top:5px solid #d4af37;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:45px;
color:#d4af37;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
color:#0b2447;
}

.service-card p{
line-height:2;
color:#666;
}

/* Why Us */

.why-us{
padding:100px 0;
background:#f4f6f8;
}

.why-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.why-list h2{
font-size:42px;
margin-bottom:30px;
color:#0b2447;
}

.why-list ul{
list-style:none;
}

.why-list li{
padding:15px 0;
font-size:20px;
font-weight:500;
}

/* Statistics */

.statistics{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.stat-box{
background:white;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-box i{
font-size:35px;
color:#d4af37;
margin-bottom:15px;
}

.stat-box h3{
font-size:32px;
color:#0b2447;
}

/* Contact */

.contact-section{
padding:100px 0;
background:white;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-info h2{
font-size:42px;
margin-bottom:30px;
color:#0b2447;
}

.contact-info ul{
list-style:none;
}

.contact-info li{
padding:18px 0;
font-size:18px;
display:flex;
align-items:center;
gap:15px;
}

.contact-info i{
color:#d4af37;
font-size:22px;
}

.map-box iframe{
width:100%;
height:450px;
border:none;
border-radius:20px;
}

.map-btn{
display:inline-flex;
margin-top:20px;
padding:15px 25px;
background:#d4af37;
color:#081c34;
text-decoration:none;
border-radius:12px;
font-weight:700;
}

/* Floating Buttons */

.floating-buttons{
position:fixed;
left:25px;
bottom:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.float-btn{
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:22px;
color:white;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.phone{
background:#0b2447;
}

.whatsapp{
background:#25d366;
}

.top{
background:#d4af37;
color:#081c34;
}

/* Footer */

footer{
background:#081c34;
padding:40px 0;
color:white;
}

.footer-container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:25px;
}

.footer-features{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.footer-features span{
display:flex;
align-items:center;
gap:8px;
}

.footer-features i{
color:#d4af37;
}

/* انیمیشن نمایش */

.service-card,
.stat-box,
.contact-info,
.map-box {

    opacity: 0;

    transform: translateY(50px);

    transition: all .8s ease;

}


.show {

    opacity: 1;

    transform: translateY(0);

}