/* ========================== */
/* پایه و فونت                */
/* ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* ========================== */
/* کانتینر                     */
/* ========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================== */
/* هدر                         */
/* ========================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(0, 119, 204, 0.85);
    transition: all 0.4s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background: linear-gradient(90deg, #0077cc, #00bfff);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ffcc00;
}

.btn-cta {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #ff6600, #ff9900);
    transition: all 0.4s ease-in-out;
}

.btn-cta:hover {
    background: linear-gradient(45deg, #ff9933, #ff6600);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========================== */
/* همبرگر                       */
/* ========================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    #navMenu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 70%;
        background: #0077cc;
        border-radius: 12px 0 0 12px;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }

    #navMenu.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hamburger {
        display: flex;
    }
}

/* ========================== */
/* هرو (Hero)                   */
/* ========================== */
.hero {
    position: relative;
    background: url(Images/gettyimages-1055101448-612x612.jpg) center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
}

.hero h2 {
    font-size: 46px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-hero {
    font-size: 18px;
    padding: 14px 28px;
}

.btn-hero:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================== */
/* کارت‌ها                       */
/* ========================== */
.features, .services, .testimonials {
    padding: 80px 20px;
    text-align: center;
}

.features h3, .services h3, .testimonials h3 {
    font-size: 36px;
    margin-bottom: 50px;
}

.cards, .service-cards, .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card, .service-card, .testimonial-card {
    background: #fff;
    padding: 25px;
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
}

.card.show, .service-card.show, .testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff6600;
}

/* ========================== */
/* رزرو (Booking)               */
/* ========================== */
.booking {
    padding: 100px 20px;
    background: #f5f5f5;
    text-align: center;
}

.booking h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.booking form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
}

.booking input, .booking select, .booking button {
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.booking input:focus, .booking select:focus {
    outline: none;
    border-color: #0077cc;
    box-shadow: 0 0 15px rgba(0, 119, 204, 0.3);
    transform: scale(1.02);
}

.booking button {
    background: linear-gradient(45deg, #0077cc, #00bfff);
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.booking button:hover {
    background: linear-gradient(45deg, #00bfff, #0077cc);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.success-msg {
    margin-top: 20px;
    color: green;
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.success-msg.show {
    opacity: 1;
}

/* ========================== */
/* تماس (Contact)               */
/* ========================== */
.contact {
    padding: 80px 20px;
    text-align: center;
}

.contact .social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #0077cc;
    font-weight: 600;
    transition: 0.3s;
}


.contact .social-links a:hover {
    color: #00bfff;
}

/* ========================== */
/* فوتر (Footer)               */
/* ========================== */
footer {
    background: linear-gradient(45deg, #00bfff, #0077cc);
    color: #fff;
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
}
select{
    background-color: white;
}