/* =====================================================
   GUIDE INTRO SECTION
   ===================================================== */
.guide-intro {
    background: var(--white);
}

.guide-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-intro-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    text-align: justify;
}

.guide-intro-note {
    background: var(--white-off);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guide-intro-note i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.guide-intro-note p {
    margin-bottom: 0;
    color: var(--gray-dark);
}


/* =====================================================
   SECTION HEADER STYLES
   ===================================================== */
.section-header {
    margin-bottom: var(--space-lg);
}

.section-header .section-title {
    color: var(--black) !important;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-elegant);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.section-title.dark {
    color: var(--black);
}

.section-divider {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-icon {
    color: var(--gold);
    font-size: 1.25rem;
}


/* =====================================================
   GUIDE SECTION COMMON
   ===================================================== */
.guide-section {
    background: var(--white-off);
}

.guide-section.bg-light {
    background: var(--white);
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.content-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}


/* =====================================================
   TRAVEL OPTIONS CARDS
   ===================================================== */
.travel-option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-base);
}

.travel-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-header {
    background: var(--gold-gradient);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.option-number {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.option-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    margin: 0;
}

.option-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.option-content {
    padding: 1.5rem;
}

.option-content p {
    color: var(--gray);
    line-height: 1.7;
}

.route-info,
.stops-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--white-off);
    border-radius: var(--radius-md);
}

.route-info h4,
.stops-info h4 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-info h4 i,
.stops-info h4 i {
    color: var(--gold);
}

.route-info p,
.stops-info ul {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 0;
}

.stops-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stops-info ul li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.stops-info ul li::before {
    content: '\f00c';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.note-box {
    background: rgba(139, 0, 0, 0.05);
    border-left: 3px solid var(--maroon);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.note-box i {
    color: var(--maroon);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.note-box p,
.important-note p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--gray-dark);
}

/* =====================================================
   RULES GRID
   ===================================================== */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.rule-item {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.rule-item i {
    font-size: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
}

.rule-item span {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.essence-box {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.essence-box h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.essence-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.7;
}

/* =====================================================
   IMPORTANT NOTE BOX
   ===================================================== */
.important-note {
    background: #FFF3CD;
    border-left: 4px solid #856404;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.important-note h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #856404;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* =====================================================
   STOP CARDS
   ===================================================== */
.stop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.stop-card:last-child {
    margin-bottom: 0;
}

.stop-card.highlight-stop {
    border-left-color: var(--maroon);
}

.sannidhanam-card {
    border-left-color: var(--gold);
    background: linear-gradient(135deg, #FFF8E7 0%, var(--white) 100%);
}

.stop-header {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-link-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-link-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-2px);
}

/* .map-link-btn i {
    color: var(--gold);
} */

.stop-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
}

.stop-title-area {
    flex: 1;
}

.stop-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.stop-distance {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.stop-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--maroon);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.stop-content {
    padding: 1.5rem 2rem;
}

.stop-content-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.stop-image {
    flex: 0 0 280px;
    max-width: 280px;
}

.stop-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.stop-text {
    flex: 1;
}

.stop-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.stop-text p:last-child {
    margin-bottom: 0;
}

.stop-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.stop-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--maroon);
    margin: 1.5rem 0 1rem;
}


/* =====================================================
   FOLKLORE BOX
   ===================================================== */
.folklore-box {
    background: var(--white-off);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-top: 2px solid var(--gold);
}

.folklore-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.folklore-box h4 i {
    color: var(--gold);
}

.folklore-box p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.folklore-box p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   RITUAL BOX
   ===================================================== */
.ritual-box {
    background: linear-gradient(135deg, rgba(212, 168, 71, 0.1) 0%, rgba(212, 168, 71, 0.05) 100%);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.ritual-box h4 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ritual-box h4 i {
    font-size: 1rem;
}

.ritual-box p,
.ritual-box ul {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--gray-dark);
}

.ritual-box ul {
    padding-left: 1.25rem;
}

.ritual-box ul li {
    margin-bottom: 0.25rem;
}

.ritual-box ul li:last-child {
    margin-bottom: 0;
}

/* =====================================================
   NEXT STOP INFO
   ===================================================== */
.next-stop {
    background: var(--white-off);
    padding: 1rem 2rem;
    border-top: 1px solid var(--gray-light);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.next-stop span:first-child {
    font-weight: 600;
    color: var(--maroon);
}

.next-stop .terrain {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gray);
}

.next-stop .terrain i {
    color: var(--gold);
}

/* =====================================================
   NIGHT HALT
   ===================================================== */
.night-halt {
    background: var(--maroon);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.night-halt i {
    color: var(--gold);
}

/* =====================================================
   ROUTE DIVIDER
   ===================================================== */
.route-divider {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.route-option h5 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-option h5 i {
    color: var(--gold);
}

.route-option p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}


/* =====================================================
   STEPS REPRESENTATION
   ===================================================== */
.steps-representation {
    background: var(--white-off);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.steps-representation h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.steps-representation h4 i {
    color: var(--gold);
}

.representations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.representation-group {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--gold);
}

.representation-group h5 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.representation-group p {
    font-size: 0.8125rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.5;
}


/* =====================================================
   DEITIES GRID
   ===================================================== */
.deities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.deity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}

.deity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.deity-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.deity-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.deity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.deity-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.deity-card p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
    text-align: justify;
}

.deity-card p:last-child {
    margin-bottom: 0;
}

/* Equal height for deity cards in row */
.deity-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.deity-card .deity-image {
    flex-shrink: 0;
}

.full-width {
    margin-top: 2rem;
    text-align: center;
}


/* =====================================================
   RETURN CONTENT
   ===================================================== */
.return-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.return-content > p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.8;
    text-align: justify;
}

.return-options {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.return-option {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
}

.return-option h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--maroon);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.return-option h4 i {
    color: var(--gold);
}

.return-option > p {
    color: var(--gray);
    margin-bottom: 0;
}

.home-return-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.sub-option {
    background: var(--white-off);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.sub-option h5 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.sub-option p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}
