/* ============================================
   Page-Specific Styles
   ============================================ */

/* About Content */
.about-section {
    background: linear-gradient(to bottom, var(--light) 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

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

.about-image-wrapper:hover .image-frame {
    transform: translate(15px, 15px);
}

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

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.image-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.3;
}

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

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin: 2rem 0 2.5rem 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-weight: bold;
}

/* Tours Section */
.tours {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd0 50%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}

.tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q25 25 50 50 T100 50" stroke="%23D4AF37" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3.5rem;
    position: relative;
}

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

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

.tour-card:hover::before {
    opacity: 1;
}

.tour-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-slow);
    position: relative;
}

.tour-card:hover img {
    transform: scale(1.15);
}

.tour-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.tour-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.tour-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
}

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

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.92), rgba(44, 24, 16, 0.92)), 
                url('../img/layaps-1.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}



.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta h2::before {
    content: '✦';
    display: block;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Bhutan Page - National Dress */
.national-dress {
    background: var(--white);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.national-dress h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.dress-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.dress-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.dress-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

/* Info Table */
.info-table {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin: 4rem 0;
}

.info-table h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

th {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}

td {
    font-size: 1.05rem;
}

tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Getting to Bhutan - Specific Sections */
.intro-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem 3rem;
    text-align: center;
}

.intro-section h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.intro-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.flights-section {
    background: var(--white);
    padding: 4rem 3rem;
    margin: 3rem 0;
}

.flights-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.flights-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.flights-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.duration-box {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd0 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.duration-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.duration-box p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.info-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.info-card img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.info-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

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

.info-card li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.full-width-card {
    grid-column: 1 / -1;
}

/* Contact Page */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-slow);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.contact-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

.contact-card p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
}

.contact-card a {
    color: var(--accent);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary);
}

.map-section {
    background: var(--white);
    padding: 4rem 3rem;
    margin-top: 4rem;
    text-align: center;
}

.map-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* About Page - Specific Styles */
.story-section {
    text-align: center;
    margin-bottom: 5rem;
}

.story-logo {
    width: 200px;
    margin: 0 auto 2rem;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
}

.values-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd0 100%);
    padding: 5rem 3rem;
    margin: 4rem -3rem;
}

.values-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.values-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.values-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-slow);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.cta-link {
    text-align: center;
    margin-top: 4rem;
}

.cta-link a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-link a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
    background: var(--accent-dark);
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .about-content,
    .dress-content,
    .flights-content,
    .info-grid,
    .values-content {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        padding: 1rem;
    }

    .image-frame {
        transform: translate(10px, 10px);
    }

    .about-image {
        height: 400px;
    }

    .tour-cards {
        grid-template-columns: 1fr;
    }

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

    .map-container {
        height: 300px;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .floating-ornament {
        display: none;
    }

    section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .tour-content {
        padding: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}
