.elementor-4578 .elementor-element.elementor-element-6bb67ed{--display:flex;}/* Start custom CSS for container, class: .elementor-element-6bb67ed */:root {
    --gold-color: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazir', 'Tahoma', sans-serif;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.header-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 30px;
    position: relative;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-img {
    height: 140px;
    width: auto;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.nav-right {
    display: flex;
    gap: 40px;
    position: absolute;
    right: 350px;
}

.nav-left {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 350px;
}

.nav-right a,
.nav-left a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-right a:hover,
.nav-left a:hover {
    color: var(--gold-color);
}

.phone-section {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1f2937;
}

.phone-icon {
    color: var(--gold-color);
    font-size: 18px;
}

.language-dropdown {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.language-btn {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    width: 45px;
    height: 30px;
    overflow: hidden;
}

.language-btn:hover {
    border-color: var(--gold-color);
}

.language-btn img {
    width: 20px;
    height: auto;
}

.hero-bg {
    width: 100vw;
    height: 100vh;
    background-image: url('https://fazilathotel2.com/wp-content/uploads/2025/08/sssss-scaled.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
    z-index: 100;
}

.reservation-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.reservation-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.reservation-form {
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.hotel-select-section,
.date-select-section {
    flex: 1;
    min-width: 200px;
}

.hotel-select-section label,
.date-select-section label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 8px;
}

.hotel-select-section select,
.date-select-section input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    background: white;
    transition: all 0.3s ease;
}

.hotel-select-section select:focus,
.date-select-section input:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 46px;
}

.search-button:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 80px 0;
    background: white;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.intro-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.4;
}

.intro-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    text-align: justify;
    margin-bottom: 30px;
}

.intro-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.intro-button:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-images img:hover {
    transform: scale(1.05);
}

.benefits-section {
    padding: 60px 0;
    background: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.rooms-section {
    padding: 80px 0;
    background: white;
}

.rooms-header {
    text-align: right;
    margin-bottom: 50px;
    position: relative;
}

.rooms-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.rooms-header p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.rooms-list-button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.rooms-list-button:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
    transform: translateY(-50%) translateY(-2px);
}

.rooms-static-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-static-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-static-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-static-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.room-static-content {
    padding: 25px;
}

.room-static-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.room-static-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-static-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.room-static-link:hover {
    gap: 12px;
}

.health-section {
    background-image: url('https://fazilathotel2.com/wp-content/uploads/2025/10/back.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    position: relative;
}

.health-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.health-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.health-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.health-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.health-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

.health-services {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.health-service {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px;
}

.health-service.active,
.health-service:hover {
    transform: translateY(-10px);
}

.health-service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: white;
    transition: all 0.3s;
}

.health-service.active .health-service-icon {
    background: var(--gold-color);
}

.health-service h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

.health-detail {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 30px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
    display: none;
}

.health-detail.active {
    display: block;
}

.health-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.health-detail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.health-detail h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.health-detail p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
    text-align: right;
}

.health-detail-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    color: #1f2937;
    text-decoration: none;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.health-detail-btn:hover {
    background: #f9fafb;
    border-color: var(--gold-color);
}

.health-detail-btn i {
    margin-left: 8px;
    color: var(--gold-color);
}

.restaurant-section {
    background: white;
    padding: 60px 0;
    position: relative;
}

.restaurant-header {
    text-align: center;
    margin-bottom: 40px;
}

.restaurant-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.restaurant-header p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.restaurant-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.restaurant-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.restaurant-slide.active {
    display: grid;
}

.restaurant-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.restaurant-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.restaurant-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.restaurant-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    text-align: justify;
}

.restaurant-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #1f2937;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.restaurant-btn:hover {
    background: #374151;
    transform: translateY(-2px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    right: -70px;
}

.carousel-next {
    left: -70px;
}

footer.footer-section {
    width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    max-width: 100vw !important;
    background: #111 url('https://fazilathotel2.com/wp-content/uploads/2025/09/Fot-scaled.png') no-repeat center top !important; 
    background-size: cover !important;
    color: #fff !important;
    position: relative !important;
    z-index: 1 !important;
    
    padding-top: 40px !important; 
    padding-bottom: 70px !important; 
}

footer.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55) !important; 
    z-index: 0 !important;
}

footer.footer-section .container {
    position: relative;
    z-index: 2;
    max-width: 98% !important; 
    margin: 0 auto;
    padding: 0 10px;
}


footer.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 0;
}

footer.footer-section .footer-content {
    position: relative;
    z-index: 2;
    max-width: 95%; 
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex !important; 
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important; 
    margin-bottom: 20px !important;
}

.footer-grid > div {
    flex: 1 1 200px !important; 
    max-width: 25%;
}

.footer-grid > div:nth-child(1) {
    text-align: right !important; 
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
    text-align: center !important;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

.footer-text,
.footer-text p {
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 8px 0;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.social-link {
    font-size: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eeeeee;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
}

.social-link.instagram:hover { 
    color: #E1306C; 
    transform: scale(1.1);
}

.social-link.facebook:hover { 
    color: #1877F2; 
    transform: scale(1.1);
}

.social-link.whatsapp:hover { 
    color: #25D366; 
    transform: scale(1.1);
}

.enamad-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.enamad-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.enamad-img:hover {
    transform: scale(1.1);
}

.footer-section {
            background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            color: white;
            padding: 60px 0 20px;
            position: relative;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-grid h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .footer-grid p,
        .footer-grid div {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 40px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-grid > div:nth-child(1) {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

        
        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            margin: 0;
        }
        
        .footer-bottom-menu {
            display: flex;
            gap: 35px;
            flex-wrap: wrap;
        }
        
        .footer-bottom-menu a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
            margin: 0 5px;
        }
        
        .footer-bottom-menu a:hover {
            color: var(--gold-color);
        }

.group {
    position: relative;
    display: inline-block;
    text-align: center;
}

.footer-author-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 8px;
}

.footer-author-popup .font-semibold {
    margin-bottom: 6px;
    font-weight: 600;
}

.group:hover .footer-author-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
    pointer-events: auto;
}

.footer-author-link {
    color: #4da3ff;
    text-decoration: underline;
    direction: ltr;
    transition: color 0.3s ease;
}

.footer-author-link:hover {
    color: #7ec1ff;
}

.section-label {
    color: #000;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}


@media (max-width: 992px) {
    .nav-right {
        right: 280px;
    }
    
    .nav-left {
        left: 280px;
    }
    
    .nav-right a, .nav-left a {
        font-size: 14px;
    }
    
    .logo-img {
        height: 120px;
    }
    
    .reservation-container {
        width: 85%;
    }
    
    .reservation-form {
        gap: 20px;
    }

    footer.footer-section {
        padding: 60px 0 30px; 
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-text, .footer-title {
        white-space: normal; 
    }

    .footer-social-icons {
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        height: 70px;
    }
    
    .logo-img {
        height: 80px;
        margin-top: 5px;
    }
    
    .nav-right, .nav-left {
        display: none;
    }
    
    .phone-section {
        left: 10px;
        font-size: 13px;
    }
    
    .language-dropdown {
        right: 10px;
    }
    
    .language-btn {
        width: 35px;
        height: 25px;
        padding: 6px;
    }
    
    .hero-bg {
        margin-top: 70px;
    }
    
    .reservation-container {
        width: 95%;
        bottom: 20px;
    }
    
    .reservation-box {
        padding: 15px 20px;
    }
    
    .reservation-form {
        flex-direction: column;
        gap: 16px;
    }
    
    .hotel-select-section,
    .date-select-section {
        min-width: 100%;
    }
    
    .search-button {
        width: 100%;
        padding: 14px 20px;
    }
    
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-text {
        order: 1;
        text-align: center;
    }
    
    .intro-images {
        order: 2;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .rooms-header {
        text-align: center;
    }
    
    .rooms-list-button {
        position: static;
        margin-top: 20px;
    }
    
    .rooms-static-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .health-section {
        background-attachment: scroll;
    }
    
    .health-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .restaurant-slide {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .carousel-nav {
        display: none;
    }

    footer.footer-section {
        padding: 50px 0 25px;
        background-attachment: scroll;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid > div {
        padding: 0;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 15px;
        white-space: normal;
    }

    .footer-text,
    .footer-text p {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 8px;
        white-space: normal;
    }

    .footer-social-icons {
        justify-content: center;
        gap: 10px;
    }

    .social-link {
        font-size: 22px;
        width: 38px;
        height: 38px;
    }

    .enamad-img {
        width: 34px;
        height: 34px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 30px;
    }

    .footer-author-popup {
        font-size: 11px;
        padding: 8px 12px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header-nav {
        height: 65px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .hero-bg {
        margin-top: 65px;
    }
    
    .phone-section {
        left: 5px;
        font-size: 12px;
    }
    
    .language-dropdown {
        right: 5px;
    }
    
    .reservation-container {
        width: 98%;
        bottom: 15px;
    }
    
    .reservation-box {
        padding: 12px 15px;
    }
    
    .search-button {
        font-size: 12px;
        padding: 12px 16px;
        height: auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .intro-text h2 {
        font-size: 22px;
    }
    
    .intro-text h3 {
        font-size: 16px;
    }
    
    .health-content h2 {
        font-size: 20px;
    }
    
    .health-content h3 {
        font-size: 16px;
    }
    
    .health-services {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .restaurant-header h2 {
        font-size: 20px;
    }
    
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    footer.footer-section {
        padding: 40px 0 20px;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-text,
    .footer-text p {
        font-size: 11px;
    }

    .social-link {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }

    .footer-social-icons {
        gap: 8px;
    }
}/* End custom CSS */