/* ==========================================================================
   HOTEL DARSHAN - ABOUT PAGE MASTER STYLESHEET
   ========================================================================== */

/* 1. About Hero */
.darshan-about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #16120E;
    color: #FFFDF8;
    overflow: hidden;
    padding: 8rem 2rem 6rem 2rem;
}

.about-hero-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.1);
    will-change: transform;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(35,27,21,0.35) 0%, rgba(18,14,10,0.65) 100%);
    z-index: 2;
}

.about-hero-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1.35rem;
    background: rgba(247, 243, 236, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(228, 219, 207, 0.25);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold-accent, #C79A3B);
}

.badge-text {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    color: #F7F3EC;
}

.about-hero-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.06;
    margin: 0 0 1.5rem 0;
    color: #FFFDF8;
}

.hero-line { display: block; }
.hero-line.italic-gold { font-style: italic; color: var(--color-gold-accent, #C79A3B); }

.about-hero-desc {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.8;
    color: rgba(247, 243, 236, 0.88);
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: var(--color-gold-accent, #C79A3B);
    color: #FFFFFF;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s ease;
}

.hero-btn-primary svg { width: 16px; height: 16px; stroke: #FFFFFF; transition: transform 0.4s ease; }
.hero-btn-primary:hover { background: #FFFDF8; color: #342A22; }
.hero-btn-primary:hover svg { stroke: #C79A3B; transform: translateX(4px); }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 2.5rem;
    background: rgba(247, 243, 236, 0.08);
    color: #F7F3EC;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid rgba(228, 219, 207, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.hero-btn-secondary:hover { background: rgba(247, 243, 236, 0.2); color: #FFFFFF; }

.about-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0.8;
}

.scroll-text { font-family: var(--font-body, 'Manrope', sans-serif); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; color: #E4DBCF; }
.scroll-mouse { width: 20px; height: 32px; border: 1.5px solid rgba(228, 219, 207, 0.4); border-radius: 20px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 3px; height: 6px; background-color: #C79A3B; border-radius: 2px; animation: scrollAnim 1.8s infinite ease; }

@keyframes scrollAnim { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }

/* 2. Our Story */
.darshan-story-section { padding: 9rem 0; background: var(--color-bg-primary, #F7F3EC); color: var(--color-text-primary, #342A22); }
.story-container { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.story-grid { display: flex; align-items: center; gap: 5rem; }
.story-visual-col { position: relative; flex: 0 0 45%; max-width: 45%; }
.story-img-frame { position: relative; width: 100%; padding-bottom: 120%; border-radius: 30px; overflow: hidden; border: 1px solid #E4DBCF; box-shadow: 0 20px 50px rgba(55,45,35,0.12); }
.story-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.story-img-frame:hover .story-img { transform: scale(1.05); }
.story-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(52,42,34,0.3) 100%); }

.story-glass-card {
    position: absolute; bottom: -2rem; right: -2rem; padding: 1.75rem 2rem;
    background: rgba(255, 253, 248, 0.92); backdrop-filter: blur(20px);
    border: 1px solid #E4DBCF; border-radius: 20px; box-shadow: 0 20px 45px rgba(55,45,35,0.14);
}
.glass-stars { color: #C79A3B; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.3rem; }
.glass-title { font-family: var(--font-heading, 'Cormorant Garamond', serif); font-size: 1.35rem; font-weight: 500; margin: 0; color: #342A22; }
.glass-sub { font-family: var(--font-body, 'Manrope', sans-serif); font-size: 0.775rem; color: #6B625A; margin: 0; }

.story-content-col { flex: 0 0 55%; max-width: 55%; }
.story-badge { display: inline-flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.story-badge .badge-line { width: 30px; height: 1.5px; background: #C79A3B; }
.story-badge .badge-text { font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; color: #C79A3B; }
.story-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.12; margin: 0 0 1.75rem 0; }
.story-line { display: block; }
.story-line.italic-gold { font-style: italic; color: #C79A3B; }
.story-text { font-family: 'Manrope', sans-serif; font-size: 1.05rem; line-height: 1.85; color: #6B625A; margin-bottom: 1.5rem; }

.story-highlights { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #E4DBCF; }
.highlight-box { display: flex; flex-direction: column; }
.hl-number { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: #C79A3B; line-height: 1; }
.hl-label { font-family: 'Manrope', sans-serif; font-size: 0.8rem; color: #6B625A; margin-top: 0.25rem; }

/* 3. Values & Mission/Vision */
.darshan-values-section { padding: 8rem 0; background: #F1EBE1; color: #342A22; }
.values-container { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; margin-bottom: 6rem; }
.mv-card { padding: 3rem 2.5rem; background: #FFFDF8; border: 1px solid #E4DBCF; border-radius: 28px; box-shadow: 0 10px 30px rgba(55,45,35,0.05); }
.mv-card.accent-card { background: #342A22; color: #FFFDF8; border-color: #342A22; }
.mv-tag { font-family: 'Manrope', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; color: #C79A3B; }
.mv-title { font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; font-weight: 400; margin: 0.85rem 0; }
.mv-desc { font-family: 'Manrope', sans-serif; font-size: 0.95rem; line-height: 1.75; color: #6B625A; margin: 0; }
.mv-card.accent-card .mv-desc { color: rgba(247,243,236,0.85); }

.values-header { text-align: center; max-width: 800px; margin: 0 auto 4rem auto; }
.values-badge { display: inline-flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.values-title { font-family: 'Cormorant Garamond', serif; font-size: 3.25rem; font-weight: 300; margin: 0; }
.v-line { display: block; }
.v-line.italic-gold { font-style: italic; color: #C79A3B; }

.values-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.value-card { padding: 2.25rem 2rem; background: #FFFDF8; border: 1px solid #E4DBCF; border-radius: 24px; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(55,45,35,0.1); border-color: #C79A3B; }
.val-icon-box { width: 44px; height: 44px; border-radius: 50%; background: #F7F3EC; border: 1px solid #E4DBCF; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.val-svg { width: 20px; height: 20px; stroke: #C79A3B; }
.val-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; margin: 0 0 0.5rem 0; }
.val-desc { font-family: 'Manrope', sans-serif; font-size: 0.875rem; line-height: 1.65; color: #6B625A; margin: 0; }

/* 4. Why Us Stats */
.darshan-whyus-section { padding: 7rem 0; background: #342A22; color: #FFFDF8; text-align: center; }
.whyus-container { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.whyus-badge { font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; color: #C79A3B; }
.whyus-title { font-family: 'Cormorant Garamond', serif; font-size: 3.25rem; font-weight: 300; margin: 0.85rem 0 4rem 0; }
.whyus-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.whyus-stat-card { padding: 2rem; background: rgba(255,253,248,0.04); border: 1px solid rgba(228,219,207,0.12); border-radius: 20px; }
.stat-num-wrap { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 400; color: #C79A3B; line-height: 1; }
.stat-title { font-family: 'Manrope', sans-serif; font-size: 1.1rem; font-weight: 600; margin: 0.75rem 0 0.35rem 0; }
.stat-sub { font-family: 'Manrope', sans-serif; font-size: 0.8rem; color: rgba(247,243,236,0.65); margin: 0; }

/* 5. Journey Timeline */
.darshan-journey-section { padding: 8rem 0; background: #F7F3EC; }
.journey-container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.journey-header { text-align: center; margin-bottom: 5rem; }
.journey-badge { display: inline-flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.journey-title { font-family: 'Cormorant Garamond', serif; font-size: 3.25rem; font-weight: 300; margin: 0; }

.vertical-timeline { position: relative; padding: 2rem 0; }
.timeline-spine { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #E4DBCF; transform: translateX(-50%); }
.timeline-node { position: relative; width: 50%; padding: 0 3rem; margin-bottom: 3rem; box-sizing: border-box; }
.timeline-node.node-left { left: 0; text-align: right; }
.timeline-node.node-right { left: 50%; text-align: left; }
.node-marker { position: absolute; top: 1.5rem; width: 14px; height: 14px; border-radius: 50%; background: #C79A3B; border: 3px solid #FFFDF8; box-shadow: 0 0 0 2px #C79A3B; }
.node-left .node-marker { right: -9px; }
.node-right .node-marker { left: -9px; }

.node-card { padding: 2rem; background: #FFFDF8; border: 1px solid #E4DBCF; border-radius: 20px; box-shadow: 0 10px 30px rgba(55,45,35,0.05); }
.node-year { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; color: #C79A3B; display: block; }
.node-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; margin: 0.5rem 0; }
.node-desc { font-family: 'Manrope', sans-serif; font-size: 0.875rem; line-height: 1.65; color: #6B625A; margin: 0; }

/* 6. Team, Awards, Gallery, FAQ & CTA */
.darshan-team-section, .darshan-awards-section, .darshan-gallery-prev-section, .darshan-faq-section { padding: 8rem 0; background: #F7F3EC; }
.team-container, .awards-container, .gprev-container, .faq-container, .acta-container { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.team-header, .awards-header, .faq-header { text-align: center; max-width: 800px; margin: 0 auto 4rem auto; }
.team-badge, .awards-badge, .gprev-badge, .faq-badge, .acta-badge { font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; color: #C79A3B; }
.team-title, .awards-title, .gprev-title, .faq-title { font-family: 'Cormorant Garamond', serif; font-size: 3.25rem; font-weight: 300; margin: 0.75rem 0 1rem 0; }
.team-desc { font-family: 'Manrope', sans-serif; font-size: 1rem; color: #6B625A; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
.team-card { background: #FFFDF8; border: 1px solid #E4DBCF; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(55,45,35,0.06); }
.team-img-wrap { position: relative; padding-bottom: 110%; overflow: hidden; }
.team-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.team-card:hover .team-img { transform: scale(1.06); }
.team-info { padding: 1.75rem; text-align: center; }
.m-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; margin: 0 0 0.25rem 0; }
.m-role { font-family: 'Manrope', sans-serif; font-size: 0.8rem; color: #C79A3B; font-weight: 600; text-transform: uppercase; }

.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.award-card { padding: 2.25rem 1.75rem; background: #FFFDF8; border: 1px solid #E4DBCF; border-radius: 20px; text-align: center; }
.award-badge-icon { color: #C79A3B; font-size: 1.5rem; margin-bottom: 0.5rem; }
.award-year { font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 700; color: #C79A3B; }
.award-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; margin: 0.5rem 0; }
.award-by { font-family: 'Manrope', sans-serif; font-size: 0.8rem; color: #6B625A; }

.gprev-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
.gprev-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 2rem; background: #C79A3B; color: #FFFDF8; border-radius: 100px; text-decoration: none; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.gprev-btn svg { width: 15px; height: 15px; stroke: #FFFDF8; }

.gprev-masonry-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 1.5rem; }
.gprev-card { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid #E4DBCF; }
.gprev-card.span-tall { grid-column: span 4; grid-row: span 2; }
.gprev-card.span-wide { grid-column: span 8; grid-row: span 1; }
.gprev-card.span-norm { grid-column: span 4; grid-row: span 1; }
.gprev-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gprev-card:hover .gprev-img { transform: scale(1.08); }
.gprev-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(30,24,18,0.8) 100%); display: flex; align-items: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.4s ease; }
.gprev-card:hover .gprev-overlay { opacity: 1; }
.gprev-img-title { color: #FFFDF8; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; }

.faq-accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #FFFDF8; border: 1px solid #E4DBCF; border-radius: 18px; overflow: hidden; }
.faq-trigger { width: 100%; padding: 1.35rem 1.75rem; background: transparent; border: none; outline: none; text-align: left; font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; color: #342A22; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-icon { width: 18px; height: 18px; stroke: #C79A3B; transition: transform 0.4s ease; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-content { max-height: 0; overflow: hidden; padding: 0 1.75rem; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.is-open .faq-content { max-height: 200px; padding: 0 1.75rem 1.5rem 1.75rem; }
.faq-content p { font-family: 'Manrope', sans-serif; font-size: 0.925rem; line-height: 1.7; color: #6B625A; margin: 0; }

.darshan-about-cta { padding: 4rem 0 8rem 0; background: #F7F3EC; }
.acta-card { position: relative; border-radius: 36px; padding: 5rem 3rem; background: #231B15; color: #FFFDF8; text-align: center; max-width: 1000px; margin: 0 auto; overflow: hidden; box-shadow: 0 25px 60px rgba(55,45,35,0.18); }
.acta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(35,27,21,0.95) 0%, rgba(22,18,14,0.98) 100%); }
.acta-content { position: relative; z-index: 2; }
.acta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 300; margin: 1rem 0; }
.acta-desc { font-family: 'Manrope', sans-serif; font-size: 1.05rem; color: rgba(247,243,236,0.85); max-width: 650px; margin: 0 auto 2.5rem auto; line-height: 1.7; }
.acta-actions { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.acta-btn-primary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1.1rem 2.25rem; background: #C79A3B; color: #FFFDF8; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.825rem; text-transform: uppercase; }
.acta-btn-primary svg { width: 16px; height: 16px; stroke: #FFFDF8; }
.acta-btn-secondary { display: inline-flex; align-items: center; padding: 1.1rem 2.25rem; background: rgba(247,243,236,0.08); color: #FFFDF8; border: 1px solid rgba(228,219,207,0.3); border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.825rem; text-transform: uppercase; }

/* Responsive Media Queries */
@media (max-width: 1120px) {
    .story-grid { flex-direction: column; gap: 4rem; }
    .story-visual-col, .story-content-col { flex: 0 0 100%; max-width: 100%; }
    .story-img-frame { padding-bottom: 75%; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .values-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .whyus-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .darshan-about-hero { padding-top: 7rem; }
    .about-hero-actions { flex-direction: column; width: 100%; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
    .timeline-spine { left: 20px; }
    .timeline-node { width: 100%; padding-left: 3.5rem; padding-right: 0; text-align: left !important; }
    .timeline-node.node-right { left: 0; }
    .node-marker { left: 13px !important; }
    .values-bento-grid, .whyus-stats-grid, .team-grid, .awards-grid { grid-template-columns: 1fr; }
    .gprev-masonry-grid { display: flex; flex-direction: column; }
    .acta-actions { flex-direction: column; }
    .acta-btn-primary, .acta-btn-secondary { width: 100%; justify-content: center; }
}