/* ============================================
   Bhutan Page - Premium Design
   ============================================ */

/* Enhanced Page Header */
.page-header {
    margin-top: 85px;
    min-height: 70vh;
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/flower_bhutan.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(44, 24, 16, 0.4) 100%);
    animation: pulse 8s ease-in-out infinite;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.header-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    color: white;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Bhutan Intro Section */
.bhutan-intro {
    padding: 6rem 3rem;
    background: linear-gradient(to bottom, #ffffff 0%, var(--light) 100%);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 0 auto 2rem;
}

.decorative-line-center {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 1.5rem auto 2rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* Stats Cards */
.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Heritage Section */
.heritage-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd0 50%, #f5f0e8 100%);
}

.heritage-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.heritage-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-slow);
}

.heritage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.heritage-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(44, 24, 16, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.heritage-card:hover .card-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* National Dress Section */
.national-dress-section {
    padding: 7rem 3rem;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.dress-showcase {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.dress-image-section {
    position: relative;
    padding: 2rem;
}

.dress-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary);
    border-radius: 20px;
    transform: translate(25px, 25px);
    z-index: 0;
    transition: var(--transition);
}

.dress-image-section:hover .dress-frame {
    transform: translate(20px, 20px);
}

.dress-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: var(--transition-slow);
}

.dress-image-section:hover .dress-main-image {
    transform: scale(1.02);
}

.dress-badge {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    z-index: 2;
}

.dress-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.dress-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.dress-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dress-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.dress-type-card:hover {
    border-color: var(--secondary);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.type-icon {
    font-size: 2.5rem;
}

.type-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary);
}

.dress-type-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list-small {
    list-style: none;
    padding: 0;
}

.feature-list-small li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text);
}

.feature-list-small li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.8rem;
}

.dress-significance {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(196, 30, 58, 0.1));
    border-radius: 15px;
}

.significance-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.significance-text h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.significance-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

/* Facts Section */
.facts-section {
    padding: 7rem 3rem;
    background: linear-gradient(to bottom, var(--light) 0%, white 100%);
}

.facts-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fact-card:hover::before {
    transform: scaleX(1);
}

.fact-card:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.fact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.fact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

/* Bhutan CTA */
.bhutan-cta {
    padding: 8rem 3rem;
    background: linear-gradient(rgba(44, 24, 16, 0.92), rgba(139, 69, 19, 0.92)), 
                url('https://gakhyiltoursandtravel.com/wp-content/uploads/2023/12/Trekking.jpg') center/cover fixed;
    text-align: center;
    position: relative;
}

.bhutan-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 968px) {
    .intro-stats,
    .heritage-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .dress-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dress-image-section {
        padding: 1rem;
    }

    .dress-frame {
        transform: translate(15px, 15px);
    }

    .dress-main-image {
        height: 500px;
    }

    .page-header {
        min-height: 60vh;
    }
}

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

    .stat-card,
    .fact-card {
        padding: 2rem 1.5rem;
    }

    .dress-significance {
        flex-direction: column;
        text-align: center;
    }
}
