/* Sichuan Destinations Page Styles */

.sichuan-destinations-page {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

.sd-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

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

.sd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.sd-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.sd-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.sd-hero-tag::before,
.sd-hero-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.sd-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .sd-hero-title {
        font-size: 42px;
    }
    .sd-hero {
        height: 50vh;
    }
}

.sd-hero-desc {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
    color:#ffffff;
}

.sd-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #3575B9;
    color: white!important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(53, 117, 185, 0.4);
}

.sd-hero-cta:hover {
    background: #2a5a8f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(53, 117, 185, 0.5);
    text-decoration: none;
    color: white!important;
}

.sd-section {
    padding: 80px 0;
}

.sd-section-alt {
    background: #f8f9fa;
}

.sd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sd-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sd-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3575B9;
    margin-bottom: 12px;
}

.sd-section-tag::before,
.sd-section-tag::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #3575B9;
}

.sd-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.sd-section-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sd-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .sd-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sd-top-grid {
        grid-template-columns: 1fr;
    }
}

.sd-top-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sd-top-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sd-top-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sd-top-card:hover img {
    transform: scale(1.05);
}

.sd-top-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.sd-top-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
}

.sd-top-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sd-top-card-subtitle {
    font-size: 13px;
    opacity: 0.85;
}

.sd-top-card-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #3575B9;
}

.sd-classic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .sd-classic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sd-classic-grid {
        grid-template-columns: 1fr;
    }
}

.sd-classic-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sd-classic-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.sd-classic-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sd-classic-card-body {
    padding: 20px;
}

.sd-classic-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.sd-classic-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.sd-classic-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #3575B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.sd-classic-card-link:hover {
    gap: 10px;
}

.sd-wild-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .sd-wild-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sd-wild-grid {
        grid-template-columns: 1fr;
    }
}

.sd-wild-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.sd-wild-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sd-wild-card:hover img {
    transform: scale(1.08);
}

.sd-wild-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sd-wild-card:hover .sd-wild-card-overlay {
    opacity: 1;
}

.sd-wild-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.sd-wild-card:hover .sd-wild-card-content {
    transform: translateY(0);
    opacity: 1;
}

.sd-wild-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sd-wild-card-tag {
    font-size: 12px;
    opacity: 0.85;
}

.sd-wild-card-static {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.sd-wild-card-static .sd-wild-card-title {
    opacity: 1;
    transform: none;
}

.sd-design-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
    padding: 100px 0;
}

.sd-design-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .sd-design-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.sd-design-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sd-design-left p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
    color:#ffffff;
}

.sd-design-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sd-design-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-design-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sd-design-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.sd-design-feature span {
    font-size: 14px;
}

.sd-design-right {
    background: white;
    border-radius: 20px;
    padding: 40px;
    color: #333;
}

.sd-design-right h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.sd-form-group {
    margin-bottom: 20px;
}

.sd-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.sd-form-group input,
.sd-form-group select,
.sd-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.sd-form-group input:focus,
.sd-form-group select:focus,
.sd-form-group textarea:focus {
    outline: none;
    border-color: #3575B9;
}

.sd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sd-btn-primary {
    width: 100%;
    padding: 16px 32px;
    background: #3575B9;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sd-btn-primary:hover {
    background: #2a5a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 117, 185, 0.3);
}

.sd-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin-top: 40px;
    transition: gap 0.2s ease;
}

.sd-more-link:hover {
    gap: 12px;
    text-decoration: none;
}

.sd-view-all-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #3575B9;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(53, 117, 185, 0.3);
}

.sd-view-all-btn:hover {
    background: #2a5a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(53, 117, 185, 0.4);
    text-decoration: none;
}

.sd-text-center {
    text-align: center;
}
