/* ======== 全局基础样式 - 中国风 V1 ======== */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F7F3E8; /* 背景色: 宣纸白 */
    color: #3A3A3A; /* 主文字色: 墨色 */
    /* 字体: 优先使用Lora, 中文则回退到系统默认的宋体等衬线字体 */
    font-family: 'Lora', 'Songti SC', 'STSong', 'SimSun', serif; 
}


/* ======== 顶部导航栏样式 - 中国风 V1 ======== */

.main-header {
    /* 朱红色背景导航栏，微微透明 */
    padding: 0.8rem 5%; /* 稍微减少垂直padding以保持高度 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* 白色半透明分割线 */
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: rgba(167, 58, 54, 0.95); /* 朱红色背景，95%透明度 */
    backdrop-filter: blur(10px); /* 背景模糊效果 */
    transition: all 0.3s ease;
}

/* 滚动时的阴影效果 */
.main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* 更深的阴影适配深红色 */
    border-bottom-color: rgba(255, 255, 255, 0.3); /* 白色半透明边框 */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3A3A3A; /* Logo使用主文字色 */
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2.5rem; /* 稍微拉大链接间距，更显从容 */
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF; /* 白色文字适配深色背景 */
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F5E6D3; /* 鼠标悬停时，变为米色，与朱红色形成和谐搭配 */
}

/* 右侧“联系我们”按钮的特殊样式 */
.cta-button {
    text-decoration: none;
    color: #A73A36; /* 朱红色文字 */
    background-color: #FFFFFF; /* 白色背景，与朱红导航栏形成对比 */
    padding: 0.7rem 1.5rem;
    border-radius: 4px; /* 轻微的圆角，更显稳重 */
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF; /* 白色边框 */
}

.cta-button:hover {
    background-color: #8C2F2B; /* 鼠标悬停时，变为更深的红色 */
    color: #FFFFFF; /* 白色文字 */
    border-color: #8C2F2B; /* 深红色边框 */
}

/* 汉堡菜单按钮 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    color: #F5E6D3;
}

/* 移动端导航菜单 */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background-color: #A73A36;
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #F5E6D3;
}

.mobile-cta-button {
    margin: 1rem 1.5rem;
    display: block;
    text-align: center;
    background-color: #FFFFFF;
    color: #A73A36;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background-color: #F5E6D3;
}

/* 移动端下拉菜单样式 */
.mobile-dropdown {
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-section {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-section:last-child {
    border-bottom: none;
}

.mobile-dropdown-section h4 {
    color: #F5E6D3;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-dropdown-section .section-icon {
    width: 16px;
    height: 16px;
    fill: #F5E6D3;
}

.mobile-dropdown-section ul {
    list-style: none;
}

.mobile-dropdown-section li {
    margin: 0;
}

.mobile-dropdown-section a {
    display: block;
    padding: 0.5rem 2.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    border-bottom: none;
}

.mobile-dropdown-section a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #F5E6D3;
}

/* ======== 下拉菜单样式 ======== */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem + 1px); /* 100% + 导航栏padding + 边框 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #8B2635;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0;
    min-width: 900px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dropdown-section {
    text-align: left;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.dropdown-section:last-child {
    border-right: none;
}

.section-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1rem;
    stroke: #F5E6D3;
    fill: none;
    stroke-width: 1.5;
}

.dropdown-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #F5E6D3;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-section li {
    margin-bottom: 0.75rem;
}

.dropdown-section a {
    color: rgba(245, 230, 211, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.dropdown-section a:hover {
    color: #F5E6D3;
}

.dropdown-footer {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: #F5E6D3;
    text-decoration: none;
    border: 1px solid rgba(245, 230, 211, 0.4);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: rgba(245, 230, 211, 0.1);
    border-color: rgba(245, 230, 211, 0.6);
}

/* ======== 英雄区域样式 ======== */

.hero {
    height: 100vh; /* 全屏高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Hero轮播容器 */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 单个轮播图片 */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* 视差滚动效果 */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero遮罩层 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

/* Hero内容区域 */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    color: #F5E6D3;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.hero-button {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #A73A36;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: none;
}

.hero-button:hover {
    background-color: #8C2F2B;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero导航点 */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

/* Hero导航箭头 */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 2rem;
}

.hero-arrow-next {
    right: 2rem;
}

.hero-arrow svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ======== 体验活动推荐区样式 ======== */

.experiences-section {
    padding: 4rem 5%; /* 给整个区域足够的上下和左右内边距 */
}

.section-title {
    text-align: center; /* 区域大标题居中 */
    font-size: 2.5rem;
    margin-bottom: 3rem; /* 和下面的卡片网格拉开距离 */
    font-weight: 700;
}

.experiences-grid {
    display: flex; /* 开启Flexbox布局 */
    justify-content: center; /* 在容器内水平居中卡片 */
    flex-wrap: wrap; /* 允许卡片换行，这对于移动端至关重要 */
    gap: 2rem; /* 设置卡片之间的统一间距 */
}

.experience-card {
    background-color: #FFFFFF; /* 卡片用纯白背景，与宣纸白背景形成对比 */
    border: 1px solid #DCD1B9; /* 沿用我们的风格分割线颜色 */
    border-radius: 8px; /* 给卡片一个更明显的圆角 */
    overflow: hidden; /* 确保图片等子元素不会超出圆角范围 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 加一个非常细微的阴影，让卡片浮起来 */
    transition: all 0.3s ease;
    
    /* --- 核心布局：实现一行四卡 --- */
    /* flex: 0 1 calc(25% - 1.5rem); 是一种精确的计算方式 */
    /* 这里我们用更简单的方式，直接设定一个宽度，配合flex-wrap也能实现效果 */
    width: 280px; 
}

.experience-card:hover {
    transform: translateY(-5px); /* 鼠标悬停时，卡片轻微上浮 */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* 阴影变深，增加立体感 */
}

.card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* 卡片里的图片样式 */
.experience-card img {
    width: 100%; /* 图片宽度撑满卡片 */
    height: 180px; /* 给一个固定的高度 */
    object-fit: cover; /* 确保图片被裁剪而不是被拉伸，保持比例 */
    display: block; /* 消除图片下方的微小间隙 */
}

/* 卡片文字内容的容器 */
.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #3A3A3A;
}

.card-content p {
    font-size: 0.9rem;
    color: #666666; /* 用稍浅的灰色显示描述文字 */
    margin-bottom: 1.5rem;
}

/* 卡片底部的价格和链接区域 */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F0EAE0; /* 在卡片内加一条淡淡的分割线 */
    padding-top: 1rem;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: bold;
    color: #3A3A3A;
}

.card-link {
    text-decoration: none;
    color: #A73A36; /* 使用我们的主题色“朱红” */
    font-weight: bold;
    font-size: 0.9rem;
}

.card-link:hover {
    text-decoration: underline; /* 鼠标悬停时加下划线，明确告知用户可点击 */
}

/* ======== Personal Travel Concierge 区块样式 ======== */

.concierge-section {
    display: flex;
    align-items: stretch; /* 让子元素等高 */
    background-color: #FFFFFF;
    flex-wrap: wrap; /* 在小屏幕上允许换行 */
    min-height: 550px; /* 设置最小高度 */
}

/* 左侧图片栏 */
.concierge-image {
    flex: 1;
    min-width: 300px; /* 设置一个最小宽度，防止被过度挤压 */
    overflow: hidden; /* 确保图片不会溢出容器 */
    position: relative;
}

.concierge-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧文字内容栏 */
.concierge-content {
    flex: 1;
    min-width: 300px;
    padding: 4rem;
}

/* 左对齐的区域标题 */
.section-title-left {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.concierge-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666666;
}

/* “幽灵按钮” 样式 */
.btn-ghost {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid #A73A36;
    color: #A73A36;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background-color: #A73A36;
    color: #FFFFFF;
}

/* 服务网格样式 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(167, 58, 54, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(167, 58, 54, 0.1);
}

.service-item:hover {
    background-color: rgba(167, 58, 54, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-item span {
    color: #3A3A3A;
    font-weight: 500;
    font-size: 0.95rem;
}

/* 旅行管家CTA按钮区域 */
.concierge-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #A73A36;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #8C2F2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary-outline {
    background-color: transparent;
    color: #A73A36;
    padding: 0.75rem 1.5rem;
    border: 2px solid #A73A36;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-outline:hover {
    background-color: #A73A36;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* ======== 品牌优势区样式 ======== */

.advantages-section {
    padding: 4rem 5%;
}

.advantages-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.advantage-item {
    flex-basis: 300px;
    text-align: center;
    padding: 1.5rem;
}

.advantage-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #A73A36; /* 图标颜色使用我们的主题色“朱红” */
}

.advantage-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #3A3A3A;
}

.advantage-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

/* ======== 联系我们区域样式 ======== */

.contact-section {
    padding: 4rem 5%;
    background-color: #FFFFFF;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3A3A3A;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666666;
    line-height: 1.6;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #3A3A3A;
}

.contact-item strong {
    color: #A73A36;
    margin-right: 0.5rem;
}

.contact-link {
    color: #3A3A3A;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #A73A36;
    border-bottom-color: #A73A36;
}

/* ======== Experiences Page 专用样式 (使用exp-前缀避免冲突) ======== */

/* Page Header */
.exp-page-header {
    background: linear-gradient(135deg, #A73A36 0%, #8C2F2B 100%);
    color: white;
    padding: 4rem 5% 3rem;
    text-align: center;
}

.exp-page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.exp-page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters Section */
.exp-filters-section {
    background: linear-gradient(135deg, #F8F8F8 0%, #F5E6D3 100%);
    padding: 2rem 5%;
    border-bottom: 2px solid #DCD1B9;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(167, 58, 54, 0.1);
}

.exp-filters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.exp-search-bar {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.exp-search-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1.25rem;
    border: 2px solid #DCD1B9;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.exp-search-input:focus {
    outline: none;
    border-color: #A73A36;
    box-shadow: 0 0 0 3px rgba(167, 58, 54, 0.1);
    transform: translateY(-1px);
}

.exp-search-input::placeholder {
    color: #999;
    font-style: italic;
}

.exp-search-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #A73A36 0%, #8C2F2B 100%);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(167, 58, 54, 0.3);
}

.exp-search-btn:hover {
    background: linear-gradient(135deg, #8C2F2B 0%, #A73A36 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(167, 58, 54, 0.4);
}

.exp-filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.exp-filter-select, .exp-sort-select {
    padding: 0.875rem 1.25rem;
    border: 2px solid #DCD1B9;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    font-size: 0.95rem;
    font-weight: 500;
    color: #3A3A3A;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 140px;
}

.exp-filter-select:focus, .exp-sort-select:focus {
    outline: none;
    border-color: #A73A36;
    box-shadow: 0 0 0 3px rgba(167, 58, 54, 0.1);
    transform: translateY(-1px);
}

.exp-filter-select:hover, .exp-sort-select:hover {
    border-color: #A73A36;
    background: linear-gradient(135deg, #F8F8F8 0%, #F5E6D3 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Results Section */
.exp-results-section {
    background-color: #F8F8F8;
    padding: 1.5rem 5%;
}

.exp-results-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.exp-results-count {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.exp-sort-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Experiences Listing */
.exp-listing {
    padding: 3rem 5%;
    background-color: #F7F3E8;
}

.exp-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Loading and Load More */
.exp-loading-indicator {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.exp-load-more-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.exp-load-more-btn {
    background: linear-gradient(135deg, #A73A36 0%, #8C2F2B 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 58, 54, 0.3);
    position: relative;
    overflow: hidden;
}

.exp-load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.exp-load-more-btn:hover {
    background: linear-gradient(135deg, #8C2F2B 0%, #A73A36 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 58, 54, 0.4);
}

.exp-load-more-btn:hover::before {
    left: 100%;
}

.exp-load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(167, 58, 54, 0.3);
}

.exp-load-more-btn:disabled {
    background: linear-gradient(135deg, #CCC 0%, #AAA 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.exp-load-more-btn:disabled::before {
    display: none;
}

/* 导航栏响应式设计 */
@media (max-width: 768px) {
    .main-header {
        padding: 0.8rem 3%;
    }

    .nav-links {
        display: none;
    }

    .cta-button {
        display: none;
    }

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

    .mobile-nav-overlay.active {
        display: block;
    }
}

/* 筛选按钮响应式设计 */
@media (max-width: 768px) {
    .exp-filters-section {
        padding: 1.5rem 3%;
    }

    .exp-filters-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .exp-search-bar {
        min-width: auto;
        width: 100%;
    }

    .exp-filter-controls {
        justify-content: center;
        gap: 0.75rem;
    }

    .exp-filter-select, .exp-sort-select {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .exp-load-more-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .exp-filter-controls {
        flex-direction: column;
        width: 100%;
    }

    .exp-filter-select, .exp-sort-select {
        width: 100%;
        min-width: auto;
    }
}

/* ======== Experience Detail Page 样式 ======== */

/* Breadcrumb */
.breadcrumb {
    background-color: #F8F8F8;
    padding: 1rem 5%;
    border-bottom: 1px solid #E5E5E5;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #A73A36;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Experience Detail */
.experience-detail {
    min-height: 400px;
    background-color: #F7F3E8;
}

.loading-detail {
    text-align: center;
    padding: 4rem;
    color: #666;
}

/* Related Experiences */
.related-experiences {
    background-color: #FFFFFF;
    padding: 3rem 5%;
}

.related-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #3A3A3A;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* ======== Experience Detail Page Styles ======== */

/* Back Link */
.back-link-container {
    padding: 1rem 5%;
    background-color: #F7F3E8;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #A73A36;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #8C2F2B;
}

.back-link svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Detail Hero Section */
.detail-hero {
    background-color: #FFFFFF;
    padding: 2rem 5%;
}

.detail-hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.gallery-btn {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.thumbnail-gallery img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
    opacity: 1;
}

/* Hero Info Section */
.hero-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-header h1 {
    font-size: 2rem;
    color: #3A3A3A;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.experience-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rating-info,
.location-info,
.participants-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1rem;
}

.star.filled {
    color: #FFD700;
}

.star.half {
    color: #FFD700;
}

.rating-info svg,
.location-info svg,
.participants-info svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.supplier-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background-color: #F7F3E8;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #A73A36;
}

.price-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #A73A36;
}

.price-unit {
    font-size: 0.9rem;
    color: #666;
    margin-left: 0.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    background-color: #A73A36;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #8C2F2B;
}

.secondary-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-secondary {
    flex: 1;
    background-color: transparent;
    color: #A73A36;
    border: 2px solid #A73A36;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #A73A36;
    color: white;
}

.btn-secondary svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Detail Content Layout */
.detail-content {
    background-color: #FFFFFF;
    padding: 3rem 5%;
}

.content-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Navigation */
.content-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-item:hover,
.nav-item.active {
    background-color: #A73A36;
    color: white;
}

/* Main Content Sections */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-section {
    scroll-margin-top: 120px;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #3A3A3A;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #A73A36;
}

/* Overview Section */
.overview-content {
    line-height: 1.7;
}

.description-preview p {
    margin-bottom: 1rem;
    color: #555;
}

.expand-btn {
    background: none;
    border: none;
    color: #A73A36;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.95rem;
}

.description-full {
    margin-top: 1rem;
}

.description-full.hidden {
    display: none;
}

.description-full h3 {
    color: #3A3A3A;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.description-full ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.description-full li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
}

.location-details h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.location-details p,
.location-details li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.location-details ul {
    margin-left: 1.5rem;
}

.meeting-point,
.how-to-get-there,
.experience-locations {
    margin-bottom: 2rem;
}

/* Guide Section */
.guide-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background-color: #F7F3E8;
    padding: 2rem;
    border-radius: 12px;
}

.guide-avatar {
    text-align: center;
}

.guide-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.guide-info-btn {
    background-color: #A73A36;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.guide-info h3 {
    color: #3A3A3A;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.guide-title {
    color: #A73A36;
    font-weight: bold;
    margin-bottom: 1rem;
}

.guide-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #666;
}

.stat svg {
    fill: #A73A36;
    stroke: none;
}

.guide-description {
    color: #555;
    line-height: 1.6;
}

/* What's Included Section */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #F7F3E8;
    border-radius: 8px;
}

.included-item svg {
    stroke: #A73A36;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.included-item span {
    color: #555;
    font-size: 0.95rem;
}

/* Additional Info Section */
.additional-info-content {
    background-color: #F7F3E8;
    padding: 2rem;
    border-radius: 12px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-item h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-item ul {
    margin-left: 1.5rem;
}

.info-item li,
.info-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rating-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background-color: #F7F3E8;
    padding: 2rem;
    border-radius: 12px;
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: #A73A36;
    margin-bottom: 0.5rem;
}

.rating-details .stars {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-item {
    display: grid;
    grid-template-columns: 120px 1fr 50px;
    gap: 1rem;
    align-items: center;
}

.rating-label {
    font-size: 0.9rem;
    color: #555;
}

.rating-bar {
    height: 8px;
    background-color: #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background-color: #A73A36;
    transition: width 0.3s ease;
}

.rating-value {
    font-weight: bold;
    color: #3A3A3A;
    text-align: right;
}

/* Review Filters */
.review-filters {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    background-color: #F7F3E8;
    border-radius: 8px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #555;
}

/* Individual Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    background-color: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    color: #3A3A3A;
    margin-bottom: 0.25rem;
}

.reviewer-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

.review-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
}

.helpful-btn {
    background: none;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    border-color: #A73A36;
    color: #A73A36;
}

.helpful-btn svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.load-more-reviews {
    align-self: center;
    background-color: transparent;
    color: #A73A36;
    border: 2px solid #A73A36;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.load-more-reviews:hover {
    background-color: #A73A36;
    color: white;
}

/* Customer Photos Section */
.customer-photos-section {
    background-color: #F7F3E8;
    padding: 3rem 5%;
}

.photos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.photos-container h2 {
    font-size: 1.8rem;
    color: #3A3A3A;
    margin-bottom: 2rem;
    text-align: center;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    color: white;
}

.photo-author {
    font-size: 0.9rem;
}

.view-all-photos {
    display: block;
    margin: 0 auto;
    background-color: #A73A36;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.view-all-photos:hover {
    background-color: #8C2F2B;
}

/* FAQ Section */
.faq-section {
    background-color: #FFFFFF;
    padding: 3rem 5%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 1.8rem;
    color: #3A3A3A;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #F7F3E8;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: #3A3A3A;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F0E6D2;
}

.faq-icon {
    stroke: #A73A36;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background-color: white;
    border-top: 1px solid #eee;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Chat Support */
.chat-support {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #A73A36;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    background-color: #8C2F2B;
    transform: scale(1.1);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-window.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.chat-header {
    background-color: #A73A36;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-content {
    padding: 1rem;
}

.chat-message {
    margin-bottom: 1rem;
}

.bot-message p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-btn.whatsapp {
    background-color: #A73A36;
    color: white;
}

.contact-btn.whatsapp:hover {
    background-color: #8C2F2B;
}

.contact-btn.email {
    background-color: #A73A36;
    color: white;
}

.contact-btn.email:hover {
    background-color: #8C2F2B;
}

.contact-btn svg {
    fill: currentColor;
}

/* Responsive Design for Detail Page */
@media (max-width: 768px) {
    .detail-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .content-sidebar {
        position: static;
    }

    .sidebar-nav ul {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .nav-item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .guide-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rating-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .review-filters {
        flex-direction: column;
        gap: 1rem;
    }

    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .chat-window {
        width: 280px;
    }
}

/* ======== About Page Styles ======== */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* About Sections */
.about-section {
    padding: 4rem 5%;
}

.about-section:nth-child(even) {
    background-color: #F7F3E8;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.2rem;
    color: #3A3A3A;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #A73A36;
}

/* Story Content */
.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

/* Mission Section */
.mission-section {
    background-color: #FFFFFF;
}

.mission-content h3 {
    font-size: 1.6rem;
    color: #A73A36;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.mission-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.mission-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.offer-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #A73A36;
}

.offer-item h3 {
    color: #A73A36;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.offer-item ul {
    padding-left: 1.5rem;
}

.offer-item li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.75rem;
}

/* Why Choose LocalPal Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.why-item h3 {
    color: #A73A36;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.why-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #A73A36, #8C2F2B);
    color: white;
    text-align: center;
    padding: 4rem 5%;
}

.about-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.about-cta-section h2::after {
    background-color: white;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-primary {
    background-color: white;
    color: #A73A36;
}

.about-cta-buttons .btn-primary:hover {
    background-color: #F5E6D3;
    color: #8C2F2B;
}

.about-cta-buttons .btn-secondary-outline {
    border-color: white;
    color: white;
}

.about-cta-buttons .btn-secondary-outline:hover {
    background-color: white;
    color: #A73A36;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

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

    .about-section {
        padding: 3rem 3%;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about-cta-buttons .btn-primary,
    .about-cta-buttons .btn-secondary-outline {
        width: 100%;
        max-width: 300px;
    }
}
