/* ────────────────────────────────────────────────────────────
تعریف فونت‌های لوکال از پوشه assets/fonts/
اولویت با فرمت فشرده‌ی woff2 (حجم کمتر = بارگذاری سریع‌تر = سئوی بهتر)
و ttf به‌عنوان جایگزین برای مرورگرهای قدیمی‌تر
──────────────────────────────────────────────────────────── */
@font-face {
font-family: 'Vazir';
src: url('assets/fonts/Vazirmatn-Regular.woff2') format('woff2'),
     url('assets/fonts/Vazir-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Vazir';
src: url('assets/fonts/Vazirmatn-Bold.woff2') format('woff2'),
     url('assets/fonts/Vazir-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Vazir';
src: url('assets/fonts/Vazir-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Vazir';
src: url('assets/fonts/Vazirmatn-Medium.woff2') format('woff2'),
     url('assets/fonts/Vazir-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}
/* ────────────────────────────────────────────────────────────
تنظیمات کلی و متغیرهای رنگی (آبی نفتی + طلایی)
──────────────────────────────────────────────────────────── */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.skip-link {
position: absolute;
top: -100px;
right: 10px;
z-index: 10001;
background: var(--primary);
color: #0a1628;
padding: 12px 22px;
border-radius: 0 0 10px 10px;
font-weight: bold;
text-decoration: none;
transition: top 0.3s ease;
}
.skip-link:focus {
top: 0;
}
/* ────────────────────────────────────────────────────────────
انیمیشن ظاهر شدن هنگام اسکرول
──────────────────────────────────────────────────────────── */
.reveal-on-scroll {
opacity: 0;
transform: translateY(45px);
transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
opacity: 1;
transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
.reveal-on-scroll {
opacity: 1;
transform: none;
transition: none;
}
}
:root {
--primary: #f39c12;
--primary-dark: #d68910;
--primary-light: #f5b041;
--secondary: #3498db;
--accent: #e74c3c;
--light: #ffffff;
--light-secondary: #ecf0f1;
--dark: #0a1628;
--darker: #050d18;
--navy: #1a2744;
--navy-light: #2c3e50;
--gradient: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
--gradient-gold: linear-gradient(45deg, #f39c12, #f1c40f, #f39c12);
--gradient-navy: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
--bale-gradient: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
/* متغیرهای حالت نمایش (تاریک/روشن) — پیش‌فرض: تاریک */
--section-bg-a: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
--section-bg-b: linear-gradient(135deg, #1a2744 0%, #0a1628 100%);
--header-bg: rgba(10, 22, 40, 0.98);
--card-bg: rgba(255, 255, 255, 0.05);
--input-bg: rgba(255, 255, 255, 0.1);
--input-bg-focus: rgba(255, 255, 255, 0.15);
--input-border: rgba(255, 255, 255, 0.2);
--modal-panel-bg: linear-gradient(135deg, #1a2744 0%, #0a1628 100%);
--datepicker-bg: #1a2744;
--datepicker-text: #ecf0f1;
--datepicker-day-bg: rgba(255, 255, 255, 0.08);
--booking-scrim: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(26, 39, 68, 0.9));
--booking-panel-bg: rgba(255, 255, 255, 0.08);
}
/* ────────────────────────────────────────────────────────────
حالت روشن — با فعال شدن data-theme="light" روی <html>
فقط متغیرهای بالا بازتعریف می‌شوند؛ بقیه استایل‌ها بدون تغییر
از همین متغیرها استفاده می‌کنند
──────────────────────────────────────────────────────────── */
html[data-theme="light"] {
--light: #17213b;
--light-secondary: #4a5773;
--dark: #eef0f3;
--darker: #e1e5ea;
--section-bg-a: linear-gradient(135deg, #ffffff 0%, #e8ebf0 100%);
--section-bg-b: linear-gradient(135deg, #e8ebf0 0%, #ffffff 100%);
--header-bg: rgba(255, 255, 255, 0.97);
--card-bg: rgba(23, 33, 59, 0.09);
--input-bg: rgba(23, 33, 59, 0.05);
--input-bg-focus: rgba(23, 33, 59, 0.08);
--input-border: rgba(23, 33, 59, 0.15);
--modal-panel-bg: linear-gradient(135deg, #ffffff 0%, #e8ebf0 100%);
--datepicker-bg: #ffffff;
--datepicker-text: #17213b;
--datepicker-day-bg: rgba(23, 33, 59, 0.04);
--booking-scrim: linear-gradient(135deg, rgba(238, 240, 243, 0.93), rgba(225, 229, 234, 0.93));
--booking-panel-bg: rgba(255, 255, 255, 0.82);
}
html[data-theme="light"] body {
background: var(--dark);
}
html[data-theme="light"] .particle {
opacity: 0.16;
box-shadow: 0 0 10px rgba(243, 156, 18, 0.35), 0 0 18px rgba(243, 156, 18, 0.15);
}
html[data-theme="light"] .hero-bg {
filter: brightness(0.55) contrast(1.1);
}
html[data-theme="light"] .hero h1 {
text-shadow: 0 0 15px rgba(243, 156, 18, 0.25);
}
html[data-theme="light"] .section-title,
html[data-theme="light"] .about-content h2 {
color: #14141a;
text-shadow: none;
}
html[data-theme="light"] .logo-text-link {
text-shadow: none;
}
html[data-theme="light"] .form-group select,
html[data-theme="light"] .form-group input[type="date"],
html[data-theme="light"] .form-group input[type="time"],
html[data-theme="light"] .form-group input.persian-datepicker {
box-shadow: 0 2px 10px rgba(10, 22, 40, 0.08);
}
body {
font-family: 'Vazir', 'Tahoma', sans-serif;
background: var(--dark);
background-attachment: fixed;
color: var(--light);
overflow-x: hidden;
line-height: 1.6;
}
/* ────────────────────────────────────────────────────────────
اسکرول بار سفارشی
──────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: var(--darker);
}
::-webkit-scrollbar-thumb {
background: var(--gradient);
border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary-dark);
}
/* ────────────────────────────────────────────────────────────
هدر و نویگیشن
──────────────────────────────────────────────────────────── */
header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: var(--header-bg);
backdrop-filter: blur(15px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
border-bottom: 2px solid rgba(243, 156, 18, 0.5);
transition: all 0.3s ease;
}
header.scrolled {
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
nav {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: var(--primary);
display: flex;
align-items: center;
gap: 12px;
}
.logo-text-link {
color: var(--primary);
text-decoration: none;
font-size: 1.55rem;
font-weight: 800;
letter-spacing: 0.5px;
background: var(--gradient-gold);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 25px rgba(243, 156, 18, 0.35);
white-space: nowrap;
}
.logo-text-link span {
-webkit-text-fill-color: var(--primary);
color: var(--primary);
}
.logo-img-link {
display: flex;
align-items: center;
cursor: pointer;
transition: transform 0.3s ease;
}
.logo-img-link:hover {
transform: scale(1.06);
}
.logo-img {
height: 62px;
width: auto;
max-width: 220px;
object-fit: contain;
filter: drop-shadow(0 0 12px rgba(243, 156, 18, 0.5));
}
.logo-fallback-icon {
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 14px;
background: var(--gradient);
box-shadow: 0 6px 20px rgba(243, 156, 18, 0.45), inset 0 0 0 2px rgba(255, 255, 255, 0.25);
flex-shrink: 0;
animation: bounce 2s infinite;
}
.logo-fallback-icon .icon {
width: 30px;
height: 30px;
color: #0a1628;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
color: var(--light);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
padding: 5px 0;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
right: 0;
width: 0;
height: 2px;
background: var(--gradient);
transition: width 0.3s ease;
box-shadow: 0 0 10px rgba(243, 156, 18, 0.6);
}
.nav-links a:hover {
color: var(--primary);
text-shadow: 0 0 15px rgba(243, 156, 18, 0.8);
}
.nav-links a:hover::after {
width: 100%;
}
.nav-links a.active {
color: var(--primary);
}
.nav-links a.active::after {
width: 100%;
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--light);
font-size: 1.5rem;
cursor: pointer;
transition: color 0.3s ease;
}
.mobile-menu-btn:hover {
color: var(--primary);
}
.nav-actions {
display: flex;
align-items: center;
gap: 1rem;
}
.theme-toggle-btn {
width: 42px;
height: 42px;
border-radius: 50%;
border: 2px solid rgba(243, 156, 18, 0.35);
background: rgba(243, 156, 18, 0.08);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
cursor: pointer;
transition: all 0.3s ease;
flex-shrink: 0;
}
.theme-toggle-btn:hover {
border-color: var(--primary);
transform: scale(1.08) rotate(15deg);
box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}
.theme-toggle-btn .icon-moon-mode {
display: none;
}
html[data-theme="light"] .theme-toggle-btn .icon-sun-mode {
display: none;
}
html[data-theme="light"] .theme-toggle-btn .icon-moon-mode {
display: inline-block;
}
/* ────────────────────────────────────────────────────────────
بخش هیرو (اصلی)
──────────────────────────────────────────────────────────── */
.hero {
min-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
padding: 100px 20px;
background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('assets/images/hero-bg.jpg') center/cover;
filter: brightness(0.3) contrast(1.2);
z-index: 0;
animation: zoomSlow 20s infinite alternate;
}
@keyframes zoomSlow {
0% { transform: scale(1); }
100% { transform: scale(1.1); }
}
.hero-content {
max-width: 800px;
z-index: 1;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
background: var(--gradient-gold);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 1s ease, shine 3s linear infinite;
text-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
}
@keyframes shine {
to { background-position: 200% center; }
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
color: rgba(255, 255, 255, 0.85);
animation: fadeInUp 1s ease 0.3s both;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
animation: fadeInUp 1s ease 0.6s both;
}
.btn {
padding: 15px 35px;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
font-family: 'Vazir', 'Tahoma', sans-serif;
position: relative;
overflow: hidden;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.5s ease;
}
.btn:hover::before {
left: 100%;
}
.btn-whatsapp {
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
color: white;
box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5),
0 0 25px rgba(37, 211, 102, 0.3);
border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-whatsapp:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7),
0 0 35px rgba(37, 211, 102, 0.5);
}
.btn-bale {
background: var(--bale-gradient);
color: white;
box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5),
0 0 25px rgba(52, 152, 219, 0.3);
border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-bale:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 40px rgba(52, 152, 219, 0.7),
0 0 35px rgba(52, 152, 219, 0.5);
}
.btn-phone {
background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
color: white;
box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5),
0 0 25px rgba(231, 76, 60, 0.3);
border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-phone:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 40px rgba(231, 76, 60, 0.7),
0 0 35px rgba(231, 76, 60, 0.5);
}
/* ────────────────────────────────────────────────────────────
انیمیشن‌ها
──────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* ────────────────────────────────────────────────────────────
بخش خدمات
──────────────────────────────────────────────────────────── */
.services {
padding: 100px 20px;
background: var(--section-bg-a);
position: relative;
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary);
position: relative;
text-shadow: 0 0 25px rgba(243, 156, 18, 0.6);
}
.section-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: var(--gradient);
border-radius: 2px;
box-shadow: 0 0 20px rgba(243, 156, 18, 0.7);
}
.services-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background: var(--card-bg);
border-radius: 20px;
padding: 2rem;
text-align: center;
transition: all 0.4s ease;
border: 1px solid rgba(243, 156, 18, 0.2);
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient);
transform: scaleX(0);
transition: transform 0.4s ease;
}
.service-card:hover::before {
transform: scaleX(1);
}
.service-card:hover {
transform: translateY(-15px) scale(1.02);
background: rgba(243, 156, 18, 0.08);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
0 0 40px rgba(243, 156, 18, 0.3);
border-color: rgba(243, 156, 18, 0.5);
}
.service-image {
width: 100%;
height: 180px;
border-radius: 15px;
overflow: hidden;
margin-bottom: 1.5rem;
border: 2px solid rgba(243, 156, 18, 0.4);
}
.service-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
transform: scale(1.15) rotate(2deg);
}
.service-icon {
font-size: 3rem;
color: var(--primary);
margin-bottom: 1rem;
filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.7));
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--light);
}
.service-card p {
color: var(--light-secondary);
line-height: 1.8;
}
/* ────────────────────────────────────────────────────────────
بخش چرا ما
──────────────────────────────────────────────────────────── */
.why-us {
padding: 100px 20px;
background: var(--section-bg-b);
position: relative;
}
.why-us-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.why-card {
background: var(--card-bg);
border-radius: 20px;
padding: 2rem;
text-align: center;
transition: all 0.4s ease;
border: 1px solid rgba(243, 156, 18, 0.2);
position: relative;
overflow: hidden;
}
.why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient);
transform: scaleX(0);
transition: transform 0.4s ease;
}
.why-card:hover::before {
transform: scaleX(1);
}
.why-card:hover {
transform: translateY(-15px);
background: rgba(243, 156, 18, 0.08);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
0 0 40px rgba(243, 156, 18, 0.3);
border-color: rgba(243, 156, 18, 0.5);
}
.why-number {
font-size: 3rem;
font-weight: bold;
color: var(--primary);
opacity: 0.3;
margin-bottom: 1rem;
}
.why-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.7));
}
.why-card h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--light);
}
.why-card p {
color: var(--light-secondary);
font-size: 0.95rem;
}
/* ────────────────────────────────────────────────────────────
بخش گالری
──────────────────────────────────────────────────────────── */
.gallery {
padding: 100px 20px;
background: var(--section-bg-a);
position: relative;
}
.gallery-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.gallery-item {
position: relative;
border-radius: 20px;
overflow: hidden;
height: 250px;
cursor: pointer;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
border: 2px solid rgba(243, 156, 18, 0.3);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.gallery-item:hover img {
transform: scale(1.15);
}
.gallery-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
display: flex;
align-items: flex-end;
padding: 20px;
opacity: 0;
transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
opacity: 1;
}
.gallery-overlay h4 {
color: var(--light);
font-size: 1.2rem;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
/* ────────────────────────────────────────────────────────────
بخش نظرات مشتریان
──────────────────────────────────────────────────────────── */
.testimonials {
padding: 100px 20px;
background: var(--section-bg-b);
position: relative;
}
.testimonials-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.testimonial-card {
background: var(--card-bg);
border-radius: 20px;
padding: 2.5rem;
border: 1px solid rgba(243, 156, 18, 0.2);
backdrop-filter: blur(10px);
transition: all 0.4s ease;
position: relative;
}
.testimonial-card::before {
content: '"';
position: absolute;
top: 20px;
right: 30px;
font-size: 5rem;
color: var(--primary);
opacity: 0.15;
font-family: Georgia, serif;
line-height: 1;
}
.testimonial-card:hover {
transform: translateY(-15px);
background: rgba(243, 156, 18, 0.08);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
0 0 40px rgba(243, 156, 18, 0.3);
border-color: rgba(243, 156, 18, 0.5);
}
.testimonial-content {
color: var(--light-secondary);
font-style: italic;
margin-bottom: 1.5rem;
line-height: 1.8;
position: relative;
z-index: 1;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}
.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--primary);
box-shadow: 0 0 25px rgba(243, 156, 18, 0.5);
}
.author-info h4 {
color: var(--light);
font-size: 1.1rem;
margin-bottom: 5px;
}
.author-info .rating {
color: #f1c40f;
font-size: 0.9rem;
text-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
}
.author-info .location {
color: var(--light-secondary);
font-size: 0.85rem;
}
/* ────────────────────────────────────────────────────────────
بخش درباره ما
──────────────────────────────────────────────────────────── */
.about {
padding: 100px 20px;
background: var(--section-bg-a);
position: relative;
}
.about-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.about-image {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
0 0 40px rgba(243, 156, 18, 0.3);
border: 3px solid rgba(243, 156, 18, 0.4);
}
.about-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.about-image:hover img {
transform: scale(1.08);
}
.about-content h2 {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1.5rem;
text-shadow: 0 0 25px rgba(243, 156, 18, 0.6);
}
.about-content p {
color: var(--light-secondary);
line-height: 1.8;
margin-bottom: 1.5rem;
}
.about-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-top: 2rem;
}
.stat-item {
text-align: center;
padding: 1.5rem;
background: var(--card-bg);
border-radius: 15px;
border: 1px solid rgba(243, 156, 18, 0.2);
transition: all 0.3s ease;
}
.stat-item:hover {
background: rgba(243, 156, 18, 0.08);
transform: translateY(-5px);
border-color: rgba(243, 156, 18, 0.5);
box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}
.stat-number {
font-size: 2.5rem;
font-weight: bold;
color: var(--primary);
display: block;
text-shadow: 0 0 25px rgba(243, 156, 18, 0.7);
}
.stat-label {
color: var(--light-secondary);
font-size: 0.9rem;
}
/* ────────────────────────────────────────────────────────────
بخش سوالات متداول
──────────────────────────────────────────────────────────── */
.faq {
padding: 100px 20px;
background: var(--section-bg-b);
position: relative;
}
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background: var(--card-bg);
border-radius: 15px;
margin-bottom: 1rem;
border: 1px solid rgba(243, 156, 18, 0.2);
overflow: hidden;
transition: all 0.3s ease;
}
.faq-item:hover {
background: rgba(243, 156, 18, 0.08);
border-color: rgba(243, 156, 18, 0.4);
}
.faq-item.active {
border-color: rgba(243, 156, 18, 0.6);
box-shadow: 0 0 25px rgba(243, 156, 18, 0.3);
}
.faq-question {
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 500;
color: var(--light);
transition: all 0.3s ease;
}
.faq-question:hover {
color: var(--primary);
}
.faq-question i {
transition: transform 0.3s ease;
color: var(--primary);
filter: drop-shadow(0 0 8px rgba(243, 156, 18, 0.6));
}
.faq-item.active .faq-question i {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
max-height: 300px;
padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
color: var(--light-secondary);
line-height: 1.8;
}
/* ────────────────────────────────────────────────────────────
بخش فرم درخواست
──────────────────────────────────────────────────────────── */
.booking {
padding: 100px 20px;
background: url('assets/images/booking-bg.jpg') center/cover fixed;
position: relative;
}
.booking::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--booking-scrim);
}
.booking-form {
max-width: 600px;
margin: 0 auto;
background: var(--booking-panel-bg);
padding: 3rem;
border-radius: 20px;
backdrop-filter: blur(15px);
border: 2px solid rgba(243, 156, 18, 0.4);
position: relative;
z-index: 1;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
0 0 40px rgba(243, 156, 18, 0.3);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--light);
font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 15px;
border: 2px solid var(--input-border);
border-radius: 10px;
background: var(--input-bg);
color: var(--light);
font-family: 'Vazir', 'Tahoma', sans-serif;
font-size: 1rem;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
background: var(--input-bg-focus);
box-shadow: 0 0 25px rgba(243, 156, 18, 0.4);
}
/* ── استایل ویژه برای select - متن تیره ── */
.form-group select {
background: rgba(255, 255, 255, 0.95);
color: #1a1a1a;
cursor: pointer;
border-color: rgba(243, 156, 18, 0.6);
}
.form-group select option {
background: #ffffff;
color: #1a1a1a;
padding: 10px;
font-family: 'Vazir', 'Tahoma', sans-serif;
}
/* ── استایل input date ── */
.form-group input[type="date"] {
background: rgba(255, 255, 255, 0.95);
color: #1a1a1a;
cursor: pointer;
border-color: rgba(243, 156, 18, 0.6);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
cursor: pointer;
filter: invert(0.5);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--light-secondary);
}

/* ── کانتینر دکمه‌های فرم ── */
.form-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 1rem;
}

.submit-btn {
flex: 1;
min-width: 200px;
padding: 15px;
background: var(--gradient);
color: white;
border: none;
border-radius: 10px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Vazir', 'Tahoma', sans-serif;
position: relative;
overflow: hidden;
box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.submit-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.5s ease;
}
.submit-btn:hover::before {
left: 100%;
}
.submit-btn:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(243, 156, 18, 0.7);
}

.submit-btn.btn-whatsapp-form {
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.submit-btn.btn-whatsapp-form:hover {
box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.submit-btn.btn-bale-form {
background: var(--bale-gradient);
box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5);
}
.submit-btn.btn-bale-form:hover {
box-shadow: 0 15px 40px rgba(52, 152, 219, 0.7);
}

/* ────────────────────────────────────────────────────────────
بخش تماس
──────────────────────────────────────────────────────────── */
.contact {
padding: 100px 20px;
background: var(--section-bg-a);
text-align: center;
}
.contact-cards {
max-width: 1000px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}
.contact-card {
background: var(--card-bg);
padding: 2rem;
border-radius: 20px;
transition: all 0.4s ease;
border: 1px solid rgba(243, 156, 18, 0.2);
position: relative;
overflow: hidden;
}
.contact-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient);
transform: scaleX(0);
transition: transform 0.4s ease;
}
.contact-card:hover::before {
transform: scaleX(1);
}
.contact-card:hover {
transform: scale(1.08);
background: rgba(243, 156, 18, 0.08);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
0 0 40px rgba(243, 156, 18, 0.3);
border-color: rgba(243, 156, 18, 0.5);
}
.contact-icon {
font-size: 3rem;
margin-bottom: 1rem;
filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.6));
}
.contact-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary);
}
.contact-card p {
color: var(--light-secondary);
font-size: 1.2rem;
}
.contact-card a {
color: var(--light);
text-decoration: none;
transition: all 0.3s ease;
}
.contact-card a:hover {
color: var(--primary);
text-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
}
/* ────────────────────────────────────────────────────────────
فوتر
──────────────────────────────────────────────────────────── */
footer {
background: var(--darker);
padding: 2rem;
text-align: center;
border-top: 3px solid rgba(243, 156, 18, 0.5);
box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}
footer p {
color: var(--light-secondary);
}
.social-links {
margin-top: 1rem;
display: flex;
justify-content: center;
gap: 1.5rem;
}
.social-links a {
color: var(--light);
font-size: 1.5rem;
transition: all 0.3s ease;
width: 50px;
height: 50px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(255, 255, 255, 0.1);
}
.social-links a:hover {
color: var(--primary);
transform: translateY(-5px) scale(1.1);
border-color: rgba(243, 156, 18, 0.6);
box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4),
0 0 20px rgba(243, 156, 18, 0.5);
}
/* ────────────────────────────────────────────────────────────
ریسپانسیو
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
.logo-img {
height: 34px;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--header-bg);
flex-direction: column;
padding: 2rem;
gap: 1rem;
border-bottom: 2px solid rgba(243, 156, 18, 0.5);
}
.nav-links.active {
    display: flex;
}

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

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.1rem;
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
}

.btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.booking-form {
    padding: 2rem 1.5rem;
}

.form-actions {
    flex-direction: column;
}

.submit-btn {
    width: 100%;
}

.about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-stats {
    grid-template-columns: 1fr;
}

.testimonials-container {
    grid-template-columns: 1fr;
}

.contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.section-title {
    font-size: 2rem;
}
}
/* ────────────────────────────────────────────────────────────
افکت ذرات متحرک
──────────────────────────────────────────────────────────── */
.particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
}
.particle {
position: absolute;
width: 6px;
height: 6px;
background: var(--primary);
border-radius: 50%;
opacity: 0.5;
animation: float 15s infinite;
box-shadow: 0 0 20px rgba(243, 156, 18, 0.8),
0 0 40px rgba(243, 156, 18, 0.4);
}
@keyframes float {
0%, 100% {
transform: translateY(100vh) rotate(0deg);
opacity: 0;
}
10% {
opacity: 0.5;
}
90% {
opacity: 0.5;
}
100% {
transform: translateY(-100vh) rotate(720deg);
opacity: 0;
}
}
/* ────────────────────────────────────────────────────────────
دکمه تماس شناور
──────────────────────────────────────────────────────────── */
.floating-buttons {
position: fixed;
bottom: 30px;
left: 30px;
display: flex;
flex-direction: column;
gap: 15px;
z-index: 999;
}
.float-btn {
width: 65px;
height: 65px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: white;
text-decoration: none;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5),
0 0 25px rgba(243, 156, 18, 0.4);
transition: all 0.3s ease;
animation: pulse 2s infinite;
border: 3px solid rgba(255, 255, 255, 0.3);
}
.float-btn.whatsapp {
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.float-btn.bale {
background: var(--bale-gradient);
animation: pulse 2s infinite 0.5s;
}
.float-btn.phone {
background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}
.float-btn:hover {
transform: scale(1.15);
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6),
0 0 35px rgba(243, 156, 18, 0.6);
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7),
0 5px 25px rgba(0, 0, 0, 0.5);
}
70% {
box-shadow: 0 0 0 20px rgba(243, 156, 18, 0),
0 5px 25px rgba(0, 0, 0, 0.5);
}
100% {
box-shadow: 0 0 0 0 rgba(243, 156, 18, 0),
0 5px 25px rgba(0, 0, 0, 0.5);
}
}
.float-btn.phone {
animation: pulse 2s infinite 1s;
}
/* ────────────────────────────────────────────────────────────
لودینگ
──────────────────────────────────────────────────────────── */
.loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--section-bg-a);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.5s ease;
}
.loader.hidden {
opacity: 0;
pointer-events: none;
}
.loader-content {
text-align: center;
}
.splash-logo {
display: block;
width: min(42vw, 220px);
height: auto;
margin: 0 auto;
filter: drop-shadow(0 0 25px rgba(243, 156, 18, 0.5));
animation: splashPulse 1.4s ease-in-out infinite alternate;
transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes splashPulse {
from { filter: drop-shadow(0 0 18px rgba(243, 156, 18, 0.4)); }
to { filter: drop-shadow(0 0 38px rgba(243, 156, 18, 0.75)); }
}
.loader-text {
transition: opacity 0.3s ease;
}
.loader.moving .loader-text {
opacity: 0;
}
.loader-icon {
font-size: 5rem;
color: var(--primary);
animation: rotate 2s linear infinite;
filter: drop-shadow(0 0 25px rgba(243, 156, 18, 0.8));
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.loader-text {
margin-top: 1.5rem;
color: var(--light);
font-size: 1.3rem;
letter-spacing: 2px;
}
/* ────────────────────────────────────────────────────────────
استایل‌های تاریخ‌چین شمسی
──────────────────────────────────────────────────────────── */
/* پس‌زمینه اصلی تقویم */
.datepicker-plot-area {
font-family: 'Vazir', 'Tahoma', sans-serif !important;
background: var(--datepicker-bg) !important;
border: 2px solid rgba(243, 156, 18, 0.6) !important;
border-radius: 15px !important;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7) !important;
padding: 10px !important;
}
/* هدر بالای تقویم */
.datepicker-header {
background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%) !important;
border-radius: 12px 12px 0 0 !important;
padding: 15px !important;
margin: -10px -10px 10px -10px !important;
}
/* نام ماه در هدر */
.datepicker-month-box {
color: #ffffff !important;
font-weight: bold !important;
font-size: 1.1rem !important;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}
/* جعبه‌ی سال با دکمه‌های تغییر سال */
.datepicker-year-box {
display: flex !important;
align-items: center !important;
gap: 4px !important;
}
.datepicker-year-value {
color: #ffffff !important;
font-weight: bold !important;
font-size: 1.1rem !important;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
min-width: 34px;
text-align: center;
}
.datepicker-year-btn {
width: 22px !important;
height: 22px !important;
border: none !important;
background: rgba(255, 255, 255, 0.2) !important;
color: #ffffff !important;
border-radius: 6px !important;
font-size: 0.85rem !important;
line-height: 1 !important;
cursor: pointer !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
transition: all 0.3s ease !important;
}
.datepicker-year-btn:hover {
color: #1a2744 !important;
background: #ffffff !important;
transform: scale(1.15) !important;
}
/* دکمه‌های ناوبری (ماه قبل/بعد) */
.datepicker-navigator {
color: #ffffff !important;
font-weight: bold !important;
background: rgba(255, 255, 255, 0.2) !important;
border-radius: 8px !important;
transition: all 0.3s ease !important;
}
.datepicker-navigator:hover {
color: #1a2744 !important;
background: #ffffff !important;
transform: scale(1.1) !important;
}
/* نام روزهای هفته (شنبه، یکشنبه و...) */
.datepicker-day-name {
color: #f39c12 !important;
font-weight: bold !important;
font-size: 0.95rem !important;
background: rgba(243, 156, 18, 0.1) !important;
border-radius: 8px !important;
padding: 8px 0 !important;
}
/* روزهای عادی ماه */
.datepicker-day {
color: var(--datepicker-text) !important;
background: var(--datepicker-day-bg) !important;
border-radius: 10px !important;
transition: all 0.3s ease !important;
font-weight: 500 !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.datepicker-day:hover {
background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%) !important;
color: #ffffff !important;
transform: scale(1.15) !important;
box-shadow: 0 5px 20px rgba(243, 156, 18, 0.5) !important;
border-color: transparent !important;
}
/* روز انتخاب‌شده */
.datepicker-day.selected {
background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%) !important;
color: #ffffff !important;
box-shadow: 0 0 25px rgba(243, 156, 18, 0.8) !important;
font-weight: bold !important;
border: 2px solid #ffffff !important;
}
/* روز امروز */
.datepicker-day.today {
border: 2px solid #f39c12 !important;
box-shadow: 0 0 15px rgba(243, 156, 18, 0.4) !important;
}
.datepicker-day.today:hover {
background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%) !important;
color: #ffffff !important;
}
/* روزهای غیرفعال (گذشته) */
.datepicker-day.disabled {
color: #5a6b7c !important;
background: rgba(0, 0, 0, 0.3) !important;
cursor: not-allowed !important;
border-color: rgba(0, 0, 0, 0.2) !important;
}
.datepicker-day.disabled:hover {
background: rgba(0, 0, 0, 0.3) !important;
color: #5a6b7c !important;
transform: none !important;
box-shadow: none !important;
}
/* دکمه امروز */
.datepicker-today-btn {
color: #f39c12 !important;
font-weight: bold !important;
transition: all 0.3s ease !important;
}
.datepicker-today-btn:hover {
color: #f1c40f !important;
text-shadow: 0 0 15px rgba(243, 156, 18, 0.6) !important;
}
/* دکمه بستن */
.datepicker-close-btn {
color: var(--datepicker-text) !important;
transition: all 0.3s ease !important;
}
.datepicker-close-btn:hover {
color: #e74c3c !important;
}
/* استایل input تاریخ */
.form-group input.persian-datepicker {
background: rgba(255, 255, 255, 0.95) !important;
color: #1a1a1a !important;
cursor: pointer !important;
border-color: rgba(243, 156, 18, 0.6) !important;
text-align: left !important;
direction: ltr !important;
font-weight: 500 !important;
font-size: 1rem !important;
}
.form-group input.persian-datepicker:focus {
outline: none !important;
border-color: var(--primary) !important;
box-shadow: 0 0 25px rgba(243, 156, 18, 0.4) !important;
}
.form-group input.persian-datepicker::placeholder {
color: #95a5a6 !important;
text-align: right !important;
direction: rtl !important;
}
/* آیکون تقویم */
.form-group input.persian-datepicker::-webkit-calendar-picker-indicator {
cursor: pointer !important;
filter: invert(0.5) !important;
opacity: 0.7 !important;
transition: opacity 0.3s ease !important;
}
.form-group input.persian-datepicker::-webkit-calendar-picker-indicator:hover {
opacity: 1 !important;
}
/* ────────────────────────────────────────────────────────────
استایل فیلد ساعت سفر
──────────────────────────────────────────────────────────── */
.form-group input[type="time"] {
background: rgba(255, 255, 255, 0.95) !important;
color: #1a1a1a !important;
cursor: pointer !important;
border-color: rgba(243, 156, 18, 0.6) !important;
text-align: left !important;
direction: ltr !important;
font-family: 'Vazir', 'Tahoma', sans-serif !important;
font-size: 1rem !important;
}
.form-group input[type="time"]:focus {
outline: none !important;
border-color: var(--primary) !important;
box-shadow: 0 0 25px rgba(243, 156, 18, 0.4) !important;
}
/* استایل آیکون ساعت */
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
cursor: pointer !important;
filter: invert(0.5) !important;
opacity: 0.7 !important;
transition: opacity 0.3s ease !important;
}
.form-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
opacity: 1 !important;
}
/* برای فایرفاکس */
.form-group input[type="time"]::-moz-focus-inner {
border: 0 !important;
}
/* لیبل ساعت */
.form-group label[for="time"] {
display: flex;
align-items: center;
gap: 8px;
}
.form-group label[for="time"]::before {
content: '\23F0';
color: var(--primary);
font-size: 1.1rem;
filter: drop-shadow(0 0 8px rgba(243, 156, 18, 0.5));
}

/* ────────────────────────────────────────────────────────────
استایل مودال پیام سفارشی
──────────────────────────────────────────────────────────── */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Vazir', 'Tahoma', sans-serif;
}
.custom-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 13, 24, 0.85);
    backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    background: var(--section-bg-b);
    border: 2px solid rgba(243, 156, 18, 0.6);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(243, 156, 18, 0.3);
    z-index: 1;
    animation: modalSlideIn 0.4s ease;
}
.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
    animation: iconPulse 1.5s infinite;
}
.modal-icon.success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.modal-icon.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
}
.modal-icon.info {
    background: var(--bale-gradient);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5);
}
#modalTitle {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}
#modalMessage {
    color: var(--light-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.modal-close-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazir', 'Tahoma', sans-serif;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}
.modal-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.6);
}
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ────────────────────────────────────────────────────────────
ریسپانسیو مودال پیام (موبایل)
──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .custom-modal {
        padding: 10px;
        align-items: flex-end; /* نمایش از پایین در موبایل */
    }
    
    .modal-content {
        padding: 1.5rem 1.2rem;
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0; /* گردی فقط در بالا */
        animation: modalSlideUp 0.4s ease; /* انیمیشن صعودی */
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    #modalTitle {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    #modalMessage {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        word-wrap: break-word;
    }
    
    .modal-close-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 220px;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(100%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* جلوگیری از اسکرول بدن هنگام باز بودن مودال در موبایل */
body.modal-open {
    overflow: hidden;
    touch-action: none;
}
/* ────────────────────────────────────────────────────────────
آیکون‌های SVG محلی (جایگزین Font Awesome)
اندازه/رنگ آیکون‌ها از همان قوانین قبلی (font-size / color) روی
عنصر والد به ارث می‌رسد چون واحد اندازه "em" و رنگ "currentColor" است
──────────────────────────────────────────────────────────── */
svg.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
تاریخ‌چین شمسی سفارشی (بدون کتابخانه خارجی)
از همان کلاس‌های قبلی .datepicker-* استفاده می‌کند تا استایل‌های
موجود در بالای فایل عیناً روی آن اعمال شوند
──────────────────────────────────────────────────────────── */
.date-field {
    position: relative;
}
.datepicker-plot-area {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    max-width: 90vw;
    z-index: 500;
    display: none;
    direction: rtl;
}
.datepicker-plot-area.open {
    display: block;
    animation: fadeInDatepicker 0.2s ease;
}
@keyframes fadeInDatepicker {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.datepicker-navigator {
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.datepicker-month-box {
    flex: 1;
    text-align: center;
}
.datepicker-year-box {
    flex: 1;
    justify-content: center;
}
.datepicker-day-names,
.datepicker-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-top: 8px;
}
.datepicker-day {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
}
.datepicker-day.empty {
    visibility: hidden;
    cursor: default;
}
.datepicker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
}
.datepicker-today-btn,
.datepicker-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Vazir', 'Tahoma', sans-serif;
    font-size: 0.9rem;
}

/* ────────────────────────────────────────────────────────────
لایت‌باکس نمایش لوگو (باز شدن تصویر لوگو در همان صفحه)
──────────────────────────────────────────────────────────── */
.logo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 13, 24, 0.9);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    cursor: pointer;
    animation: modalFadeIn 0.25s ease;
    padding: 40px;
}
.logo-lightbox.active {
    display: flex;
}
.logo-lightbox-img {
    max-width: min(90vw, 500px);
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(243, 156, 18, 0.3);
    cursor: default;
    animation: modalSlideIn 0.35s ease;
}
.logo-lightbox-close {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(243, 156, 18, 0.6);
    background: rgba(10, 22, 40, 0.7);
    color: var(--light);
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.logo-lightbox-close:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: rotate(90deg);
}
@media (max-width: 480px) {
    .logo-lightbox-close {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .logo-lightbox-img {
        padding: 16px;
    }
}

/* ────────────────────────────────────────────────────────────
هیروی صفحات داخلی (کوتاه‌تر از هیروی صفحه اصلی) + بردکرامب
──────────────────────────────────────────────────────────── */
.page-hero {
min-height: 46vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
padding: 140px 20px 70px;
background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
}
.page-hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
filter: brightness(0.32) contrast(1.15);
z-index: 0;
animation: zoomSlow 20s infinite alternate;
}
.page-hero.bg-services .page-hero-bg { background-image: url('assets/images/hero-services.jpg'); }
.page-hero.bg-why-us .page-hero-bg { background-image: url('assets/images/hero-why-us.jpg'); }
.page-hero.bg-testimonials .page-hero-bg { background-image: url('assets/images/hero-testimonials.jpg'); }
.page-hero.bg-about .page-hero-bg { background-image: url('assets/images/hero-about.jpg'); }
.page-hero.bg-faq .page-hero-bg { background-image: url('assets/images/hero-faq.jpg'); }
.page-hero.bg-booking .page-hero-bg { background-image: url('assets/images/hero-booking.jpg'); }
.page-hero.bg-contact .page-hero-bg { background-image: url('assets/images/hero-contact.jpg'); }
.page-hero-content {
max-width: 800px;
position: relative;
z-index: 1;
}
.breadcrumb {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 1.2rem;
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.75);
}
.breadcrumb a {
color: var(--primary);
text-decoration: none;
}
.breadcrumb a:hover {
text-decoration: underline;
}
.page-hero h1 {
font-size: 2.6rem;
margin-bottom: 1rem;
color: #ffffff;
text-shadow: 0 0 25px rgba(243, 156, 18, 0.5);
animation: fadeInUp 1s ease;
}
.page-hero p {
font-size: 1.15rem;
color: rgba(255, 255, 255, 0.9);
line-height: 1.9;
animation: fadeInUp 1s ease 0.2s both;
}
@media (max-width: 768px) {
.page-hero {
min-height: 36vh;
padding: 120px 20px 50px;
}
.page-hero h1 {
font-size: 1.9rem;
}
}

/* ────────────────────────────────────────────────────────────
بخش متن + تصویر (استفاده در صفحات داخلی زیر هیرو)
──────────────────────────────────────────────────────────── */
.content-section {
padding: 100px 20px;
}
.content-lead {
max-width: 820px;
margin: 0 auto 4rem;
text-align: center;
font-size: 1.15rem;
line-height: 2.1;
color: var(--light-secondary);
}
.content-row {
max-width: 1100px;
margin: 0 auto 5rem;
display: flex;
align-items: center;
gap: 3.5rem;
}
.content-row:last-child {
margin-bottom: 0;
}
.content-row.reverse {
flex-direction: row-reverse;
}
.content-row .content-image {
flex: 1 1 45%;
min-width: 0;
}
.content-row .content-image img {
width: 100%;
height: 340px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
border: 2px solid rgba(243, 156, 18, 0.25);
}
.content-row .content-text {
flex: 1 1 55%;
min-width: 0;
}
.content-row .content-text h2,
.content-row .content-text h3 {
color: var(--primary);
font-size: 1.7rem;
margin-bottom: 1rem;
}
html[data-theme="light"] .content-row .content-text h2,
html[data-theme="light"] .content-row .content-text h3 {
color: #14141a;
}
.content-row .content-text p {
color: var(--light-secondary);
line-height: 2;
font-size: 1.05rem;
}
@media (max-width: 860px) {
.content-row,
.content-row.reverse {
flex-direction: column;
gap: 1.5rem;
}
.content-row .content-image img {
height: 240px;
}
}

/* ────────────────────────────────────────────────────────────
بخش‌های خلاصه (تیزر) در صفحه اصلی که به صفحات مجزا لینک می‌دهند
──────────────────────────────────────────────────────────── */
.teaser-section {
padding: 90px 20px;
}
.teaser-lead {
max-width: 760px;
margin: 0 auto 2.5rem;
text-align: center;
font-size: 1.1rem;
line-height: 2;
color: var(--light-secondary);
}
.teaser-grid {
max-width: 1100px;
margin: 0 auto 2.5rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
}
.teaser-item {
background: var(--card-bg);
border: 1px solid rgba(243, 156, 18, 0.2);
border-radius: 16px;
padding: 1.8rem 1.2rem;
text-align: center;
transition: all 0.3s ease;
}
.teaser-item:hover {
transform: translateY(-6px);
border-color: rgba(243, 156, 18, 0.5);
}
.teaser-item .icon {
width: 2.2rem;
height: 2.2rem;
color: var(--primary);
margin-bottom: 0.8rem;
}
.teaser-item h3 {
font-size: 1.05rem;
margin-bottom: 0.4rem;
color: var(--light);
}
.teaser-item p {
font-size: 0.9rem;
color: var(--light-secondary);
line-height: 1.8;
}
.teaser-more {
text-align: center;
}
.btn-outline {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 32px;
border: 2px solid var(--primary);
color: var(--primary);
border-radius: 50px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}
.btn-outline:hover {
background: var(--primary);
color: #0a1628;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}
.cta-band {
background: var(--gradient);
padding: 70px 20px;
text-align: center;
}
.cta-band h2 {
font-size: 2.2rem;
color: #0a1628;
margin-bottom: 0.8rem;
}
.cta-band p {
color: #1a2744;
font-size: 1.1rem;
margin-bottom: 1.8rem;
}
.cta-band .btn-outline {
border-color: #0a1628;
color: #0a1628;
}
.cta-band .btn-outline:hover {
background: #0a1628;
color: var(--primary);
}

/* ────────────────────────────────────────────────────────────
ستاره‌های امتیازدهی تعاملی (فرم ثبت نظر مشتریان)
──────────────────────────────────────────────────────────── */
.star-rating {
display: flex;
justify-content: center;
gap: 6px;
margin: 0.5rem 0 0.2rem;
}
.star-btn {
background: none;
border: none;
cursor: pointer;
padding: 4px;
color: rgba(150, 150, 150, 0.4);
transition: transform 0.2s ease, color 0.2s ease;
}
.star-btn .icon {
width: 2.1rem;
height: 2.1rem;
}
.star-btn:hover {
transform: scale(1.15);
}
.star-btn.active,
.star-btn.hovered {
color: var(--primary);
filter: drop-shadow(0 0 8px rgba(243, 156, 18, 0.6));
}
.review-form .form-group label {
display: block;
text-align: center;
}
