/* 页面通用样式 */

/* 页面标题区域 */
.page-header {
    position: relative;
    height: 300px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 80, 22, 0.6), rgba(45, 80, 22, 0.8));
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 页面内容区域 */
.page-content {
    padding: 100px 0 80px;
    background: var(--gradient-green-soft);
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}


.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.content-section:first-child {
    margin-top: 0;
}

.content-section.reverse {
    direction: rtl;
}

.content-section.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    position: relative;
}

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.content-image:hover::before {
    opacity: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 特性网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 服务详情 */
.service-detail {
    margin-bottom: 100px;
}

.service-detail:first-child {
    margin-top: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-content > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    position: relative;
}

.service-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.service-detail-image:hover::before {
    opacity: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-text h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* 活动详情 */
.activity-detail {
    margin-bottom: 80px;
}

.activity-detail:first-child {
    margin-top: 0;
}

.activity-detail-content {
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.activity-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    position: relative;
}

.activity-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.activity-detail-image:hover::before {
    opacity: 1;
}

.activity-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.activity-detail-content h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.activity-detail-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.activity-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* 其他活动 */
.other-activities {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--primary-color);
}

.other-activities h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
}

.activities-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.mini-activity {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
    overflow: hidden;
}

.mini-activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(34, 197, 94, 0.3);
}

.mini-activity-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mini-activity h3,
.mini-activity p {
    padding: 15px 20px;
}

.mini-activity h3 {
    margin: 0;
    padding-top: 20px;
}

.mini-activity p {
    margin: 0;
    padding-bottom: 20px;
}

.mini-activity i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mini-activity h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mini-activity p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 餐饮服务 */
.dining-section {
    margin-bottom: 80px;
}

.dining-section:first-child {
    margin-top: 0;
}

.dining-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dining-section.reverse .dining-content {
    direction: rtl;
}

.dining-section.reverse .dining-content > * {
    direction: ltr;
}

.dining-text h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.dining-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.dining-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
}

.dining-feature-item {
    text-align: center;
}

.dining-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dining-feature-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dining-feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.dining-list {
    list-style: none;
}

.dining-list li {
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.dining-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.dining-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    position: relative;
}

.dining-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.dining-image:hover::before {
    opacity: 1;
}

.dining-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 菜单部分 */
.menu-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--primary-color);
}

.menu-section h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(34, 197, 94, 0.3);
}

.menu-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.menu-content {
    padding: 20px;
}

.menu-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.menu-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 预约部分 */
.booking-section {
    margin-top: 60px;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.25) 50%, rgba(34, 197, 94, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    text-align: center;
    color: var(--text-dark);
    border: 2px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.booking-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.05) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(22, 163, 74, 0.05) 100%);
    pointer-events: none;
}

.booking-content {
    position: relative;
    z-index: 1;
}

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(34, 197, 94, 0.2);
}

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 500;
}

.booking-content .btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-weight: 600;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.booking-content .btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(34, 197, 94, 0.5);
}

/* 联系页面 */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    margin-top: 0;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(34, 197, 94, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(34, 197, 94, 0.3) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.65) 100%);
    box-shadow: 
        0 16px 48px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(34, 197, 94, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.info-item:hover::before {
    opacity: 1;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(74, 222, 128, 0.25) 0%, 
        rgba(34, 197, 94, 0.35) 50%,
        rgba(22, 163, 74, 0.25) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 
        0 8px 32px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%,
        rgba(34, 197, 94, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.info-item:hover .info-icon {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, 
        rgba(74, 222, 128, 0.35) 0%, 
        rgba(34, 197, 94, 0.45) 50%,
        rgba(22, 163, 74, 0.35) 100%);
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(34, 197, 94, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.info-item:hover .info-icon::before {
    opacity: 1;
}

.info-item:hover .info-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(34, 197, 94, 0.3));
}

.info-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.info-content h3 {
    font-size: 1.3rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.info-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 8px;
    line-height: 1.6;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.info-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.info-value a:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.info-value a:hover::after {
    width: 100%;
}

/* 表单样式 */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    display: block;
}

/* 地图部分 */
.map-section {
    margin-top: 60px;
}

.map-section h2 {
    font-size: 2.5rem;
    background: var(--gradient-green-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
    overflow: hidden;
}

.map-iframe-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.map-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-mobile-actions {
    text-align: center;
    margin-top: 15px;
}

.map-desktop-hint {
    margin-top: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-content {
        padding: 80px 0 60px;
        margin-top: 70px;
    }

    .content-section,
    .service-detail-content,
    .dining-content {
        grid-template-columns: 1fr;
    }

    .content-section.reverse,
    .service-detail.reverse .service-detail-content,
    .dining-section.reverse .dining-content {
        direction: ltr;
    }

    .content-image,
    .service-detail-image,
    .dining-image {
        order: -1;
    }

    .features-grid,
    .activities-mini-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .dining-features {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .activity-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 60px 0 40px;
    }

    .content-text h2,
    .service-detail-text h2,
    .activity-detail-content h2,
    .dining-text h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .booking-section {
        padding: 50px 30px;
    }

    .booking-content h2 {
        font-size: 2rem;
    }

    .booking-content p {
        font-size: 1rem;
    }
}


