﻿        :root {
            --primary: #f58220;
            --primary-dark: #689F38;
            --gold: #C9A227;
            --bg: #F7F9F4;
            --card: #FFFFFF;
            --text: #1F2937;
            --muted: #6B7280;
            --border: #E5E7EB;
        }

    

        .container {
            width: min(1400px,95%);
            margin: auto;
        }
        .p-rg {
   
    line-height: 43px;
    text-align: center;
}
        /* ================= HERO ================= */

        .hero {
            margin: 20px  auto !important;
        }

        .hero-wrapper {
            position: relative;
            height: 75vh;
            min-height: 600px;
            border-radius: 25px;
            overflow: hidden;
        }

            .hero-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .hero-card {
            position: absolute;
            right: 50px;
            bottom: 50px;
            background: rgba(255,255,255,.95);
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 30px;    direction: rtl;
            max-width: 520px;
            box-shadow: 0 25px 70px rgba(0,0,0,.12);
        }

        .badge {
            display: inline-block;
            background: #E8F5E9;
            color: var(--primary-dark);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-card h1 {    font-weight: bold;
            font-size: 48px;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .hero-card p {
            color: var(--muted);
            margin-bottom: 20px;font-size: 17px;
    line-height: 32px;
        }

        .hero-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

            .hero-meta span {
                font-weight: 600;
            }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 16px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 15px;
            font-weight: 700;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

            .btn-primary:hover {
                background: var(--primary-dark);
            }

        /* ================= LAYOUT ================= */

        .main {
            padding: 60px 0;
        }

        .grid {
            display: grid;
            grid-template-columns: 2fr 420px;
            gap: 30px;direction: rtl;
        }

       .hero .card,.main   .card{
            background: var(--card);
            border-radius: 30px;
            padding: 30px;    font-size: 18px;
    line-height: 40px;
    direction: rtl;
            box-shadow: 0 10px 30px rgba(0,0,0,.05);
        }

        .section {
            margin-bottom: 30px;
        }

        .card.section h2, .section-title {
            font-size: 28px;font-weight: bold;
            margin-bottom: 20px;
        }

        /* ================= FEATURES ================= */

        .features {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 15px;
        }

        .feature {
            text-align: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 25px 15px;
        }

        .feature-icon {
            font-size: 34px;
            margin-bottom: 10px;
        }

        /* ================= GALLERY ================= */
        .gallery-scroll-container{
          width: 100%;
  overflow-x: auto; /* فعال کردن اسکرول افقی */
  overflow-y: hidden; /* جلوگیری از اسکرول عمودی ناخواسته */
  padding: 20px;
  -webkit-overflow-scrolling: touch; /* اسکرول نرم در موبایل */
        }

        .gallery {
           display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
    width: 100%;
        }

            .gallery a  {
               height: 250px;
    width: 100%;
    transition:.3s;
    border-radius: 24px;
    grid-column: span 3;
    grid-row: span 3;
    aspect-ratio: 1 / 1;
            }

                .gallery a:hover {
                    transform: scale(1.03); transition:.3s;
                }

                .gallery a:first-child  {
                     height: 515px;
    grid-column: span 6;
    grid-row: span 6;
    aspect-ratio: auto;
                }
                .gallery a img{
                         object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 26px;
                }

        /* ================= SLOT ================= */

        .slot-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 15px;
        }

        .slot {
            border: none;
            background: white;
            border: 2px solid #E5E7EB;
            border-radius: 20px;
            padding: 18px;
            cursor: pointer;
            font-family: inherit;
            transition: .3s;
            font-weight: 700;
        }

            .slot:hover {
                border-color: var(--primary);
            }

            .slot.active {
                background: var(--primary);
                color: white;
                border-color: var(--primary);
            }

        /* ================= REVIEW ================= */

        .review {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .review-stars {
            color: #F4B400;
        }

        /* ================= FORM ================= */

        .form-group {
            margin-bottom: 15px;
        }

        input,
        textarea {
            width: 100%;
            border: 1px solid #ddd;
            padding: 14px;
            border-radius: 15px;
            font-family: inherit;
        }

        textarea {
            resize: vertical;
        }

        /* ================= FAQ ================= */

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 18px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            font-weight: 700;
            background: white;
        }

        .faq-answer {
            display: none;
            padding: 0 20px 20px;
            color: var(--muted);
        }

        /* ================= BOOKING CARD ================= */

        .sticky {
            position: sticky;
            top: 20px;
        }

        .price {
            font-size: 34px;
            font-weight: 800;
            color: var(--primary-dark);
        }

            .price small {
                font-size: 15px;
                color: var(--muted);
            }

        .booking-info {
            margin: 20px 0;
        }

            .booking-info div {
                display: flex;
                justify-content: space-between;
                padding: 12px 0;
                border-bottom: 1px solid #eee;
            }

        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
        }

        .rating-stars {
            color: #F4B400;
        }



        /* ================= MOBILE ================= */

        @media(max-width:1100px) {

            .grid {
                grid-template-columns: 1fr;
            }

            .sticky {
                position: relative;
            }
        }

        @media(max-width:768px) {

            .hero-card {
                right: 20px;
                left: 20px;
                bottom: 20px;
                max-width: none;
            }

                .hero-card h1 {
                    font-size: 32px;
                }

            .features {
                grid-template-columns: repeat(2,1fr);
            }
            .gallery {
 
    grid-template-columns: repeat(1, 1fr);

}
            .gallery a , .gallery a:first-child {
            
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
            }

                .gallery a:first-child {
                    height: 250px;
                }

            .slot-grid {
                grid-template-columns: repeat(2,1fr);
                }
            }
          