:root {
    --primary-color: #1e4d2b;
    /* Dark Forest Green */
    --secondary-color: #5C4033;
    /* Dark Brown */
    --accent-color: #C5A059;
    /* Bronze/Gold */
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 10px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 20px auto 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    box-shadow: none;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: transparent;
    box-shadow: none;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo a {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 400;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links li a {
    color: var(--text-dark);
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.btn-nav {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/images/hero_kamakhya.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    /* Darker overlay for better contrast */
    z-index: 1;
}

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

.hero .main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Highlights Section */
.highlights {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Spiritual Experience */
.spiritual-experience {
    padding: 100px 0;
    background-image: url('assets/images/spiritual_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.spiritual-experience .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 77, 43, 0.8);
    /* Green tint overlay */
    z-index: 1;
}

.spiritual-experience .content-wrapper {
    position: relative;
    z-index: 2;
}

.spiritual-experience h2 {
    font-size: 3rem;
    color: var(--accent-color);
}

.spiritual-experience .quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin: 20px 0 40px;
}

.spiritual-list {
    display: inline-block;
    text-align: left;
}

.spiritual-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.spiritual-list li i {
    color: var(--accent-color);
    margin-right: 15px;
}

/* Itinerary */
.itinerary {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.day-badge {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.timeline-content h3 {
    color: var(--primary-color);
}

.timeline-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

/* Inclusions & Exclusions */
.inclusions-exclusions {
    padding: 60px 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.inc-card,
.exc-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.inc-card h3 {
    color: var(--primary-color);
}

.exc-card h3 {
    color: #c0392b;
}

.inc-card h3 i,
.exc-card h3 i {
    margin-right: 10px;
}

.check-list li,
.cross-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cross-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: bold;
}

/* Hotels */
.hotels {
    padding: 80px 0;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.hotel-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hotel-img {
    height: 240px;
    overflow: hidden;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.hotel-info {
    padding: 25px;
}

.hotel-info {
    padding: 20px;
    text-align: center;
}

.hotel-info .badge {
    background-color: #95a5a6;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.hotel-info .badge.premium {
    background-color: var(--primary-color);
}

.hotel-info .badge.luxury {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.stars {
    color: var(--accent-color);
    margin-top: 10px;
}

/* Registration */
.registration {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    color: var(--text-dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-top: 5px solid var(--accent-color);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--secondary-color);
}

.booking-price-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.booking-price-badge .per-person {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(211, 84, 0, 0.2);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px;
    border: none;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.error-msg {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.success-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
}

.hidden {
    display: none;
}

/* Trust Section, Footer */
.trust-indicators {
    padding: 40px 0;
    background-color: var(--bg-light);
    border-top: 1px solid #eee;
}

.flex-center {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    margin: 10px;
    color: #555;
    width: 200px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

footer {
    background-color: #051a12;
    /* Midnight Green */
    color: var(--white);
    /* White text for contrast */
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-family: var(--font-heading);
}

.footer-brand p,
.footer-contact p,
.footer-contact a,
.footer-links li,
.footer-links li a,
.footer-bottom p {
    color: var(--white);
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    width: 25px;
    color: var(--accent-color);
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.btn-instagram {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    margin-left: 10px;
}

.btn-instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Animations using Classes */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    transform:
        translateY(0);
}

/* Just fade */
.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(30px);
}

.fade-in-right {
    transform: translateX(-30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links li a {
        color: var(--text-dark);
        /* Dark text on white mobile menu */
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .navbar.scrolled .hamburger {
        color: var(--secondary-color);
    }

    .hero .main-title {
        font-size: 2.2rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item::after {
        left: 21px;
    }

    /* Adjust circle position */

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Inner Peace Section Updates */
.peace-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.peace-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.peace-img {
    height: 250px;
    overflow: hidden;
}

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

.peace-card:hover .peace-img img {
    transform: scale(1.1);
}

.peace-text {
    padding: 25px;
    text-align: center;
}

.peace-text h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Redesigned Inner Peace Section */
.inner-peace-split {
    background-color: var(--white);
    overflow: hidden;
}

.padding-y {
    padding: 80px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Column Image */
.image-col {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.main-vertical-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    /* Rounded top like in screenshot */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Right Column Content */
.content-col {
    padding-top: 20px;
}

.sub-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.content-col h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.main-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Features Grid */
.ip-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.ip-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: #90A4AE;
    /* Muted grey-green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 1.1rem;
}

.ip-feature span {
    font-weight: 600;
    color: #444;
}

/* Bottom Row */
.bottom-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.secondary-img-wrapper {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

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

.holistic-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.holistic-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.small-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    background-color: #8D6E63;
    /* Earthy tone */
    border-color: #8D6E63;
}

.small-btn:hover {
    background-color: #6D4C41;
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .image-col {
        min-height: 400px;
    }

    .bottom-content-row {
        grid-template-columns: 1fr;
    }
}

/* Mini Image Icons */
.icon-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    /* Circular icons */
    border: 2px solid var(--gold);
    /* Gold border for premium look */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.ip-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Itinerary Images */
.itinerary-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.itinerary-imgs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.itinerary-imgs img:hover {
    transform: scale(1.05);
}

/* Simplified Hotel Section */
.simple-hotel-list {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.hotel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.hotel-item:last-of-type {
    border-bottom: none;
}

.h-type {
    font-weight: 700;
    color: #666;
}

.h-type.premium {
    color: var(--secondary-color);
}

.h-type.luxury {
    color: var(--primary-color);
}

.h-name {
    color: var(--text-dark);
}

.hotel-note {
    margin-top: 20px;
    color: #888;
}

/* --- Sidebar Layout Removed (Single Column) --- */
.main-col {
    width: 100%;
}

/* --- Itinerary Redesign (Zig-Zag) --- */

.itinerary-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.itinerary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 60px;
}

.itinerary-row.reverse {
    flex-direction: row-reverse;
}

/* Content Side */
.it-content {
    flex: 1;
}

.day-badge-lg {
    display: inline-block;
    background-color: var(--accent-color);
    /* Gold */
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.it-content h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
}

.it-points {
    list-style: none;
    padding: 0;
}

.it-points li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.it-points li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Image Side (Grid) */
.it-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
}

.it-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-img:hover {
    transform: translateY(-5px);
}

/* Staggered Grid Effect */
.it-img.img-1 {
    margin-top: 0;
}

.it-img.img-2 {
    margin-top: 40px;
    /* Push second image down for masonry feel */
}

/* Responsive Zig-Zag */
@media (max-width: 768px) {

    .itinerary-row,
    .itinerary-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .it-content h3 {
        font-size: 1.8rem;
    }

    .it-images {
        width: 100%;
    }

    .it-img {
        height: 200px;
    }
}

/* --- Design Modernization: Typography Overhaul --- */

/* Editorial Headings */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    /* Switch to more editorial font if available, or stick to Cinzel but lighter */
    font-weight: 400;
    /* Lighter weight for elegance */
    letter-spacing: -0.5px;
    /* Tighter for modern look */
}

.section-header h2 {
    font-size: 3.5rem;
    /* Large impact */
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 30px;
}

/* Body Text "Air" */
body {
    line-height: 1.8;
    /* More breathing room */
}

p {
    margin-bottom: 20px;
    color: #555;
    /* Softer than pure black */
}

/* Magazine-style Quotes */
.quote {
    font-size: 2rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    border-left: none;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.quote::before {
    content: '“';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    color: var(--accent-color);
}

/* --- Design Modernization: De-Grid Layout --- */

/* Generous Whitespace */
section {
    padding: 120px 0;
    /* Increase from 80px */
}

.padding-y {
    padding: 120px 0;
}

/* Asymmetry & Overlap */


/* Make images break grid slightly */
/* Make images break grid slightly - REMOVED for alignment */
.it-images {
    margin-right: 0;
}

.itinerary-row.reverse .it-images {
    margin-right: 0;
    margin-left: 0;
}

/* Full Bleed tweaks if needed */
.inner-peace-split {
    /* Ensure it feels expansive */
    padding-bottom: 120px;
}

/* Soften Borders */
.main-col section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle separator */
}

/* --- Design Modernization: Visual Polish --- */

/* Glassmorphism Sidebar */
.sidebar-sticky {
    /* Ensure sticky context works with backdrop filter if supported, 
       but main glass effect goes on the form container */
}

.sidebar-form {
    background: rgba(255, 255, 255, 0.85);
    /* Semi-transparent */
    backdrop-filter: blur(12px);
    /* Frosted Glass */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 50px rgba(211, 84, 0, 0.15);
    /* Saffron Glow */
    border-radius: 12px;
    border-top: none;
    /* Remove old thick top border for cleaner look */
}

.sidebar-form .form-header h2 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Glassmorphism Navbar removed to support transparent requirement */
/* 
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none !important;
} 
*/

/* Soft Shadows for Cards */
.feature-card,
.timeline-content,
.it-img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    /* Very diffuse shadow */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover,
.it-img:hover {
    box-shadow: 0 20px 50px rgba(211, 84, 0, 0.1);
    /* Colored glow on hover */
    transform: translateY(-8px);
}

/* Micro-interaction: Link Underline */
.nav-links li a {
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* --- Fix Hero Text Contrast --- */
.hero p,
.hero .subtitle,
.hero .tagline {
    color: var(--white) !important;
    /* Force white text on hero overlay */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    /* Improve readability */
}

/* --- Inner Peace Redesign (Dark Premium) --- */

.inner-peace-dark {
    background: linear-gradient(135deg, #1e4d2b 0%, #002200 100%);
    /* Pure Green Gradient */
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.main-layout-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Side */
.ip-image-col {
    position: relative;
}

.ip-main-img {
    width: 100%;
    height: 700px;
    /* Tall vertical */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Content Side */
.ip-header {
    margin-bottom: 50px;
}

.ip-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    line-height: 1.2;
}

.text-gold {
    color: #FFD700;
    /* Bright Gold */
    font-style: italic;
}

.ip-quote {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    /* Bright White/Off-White */
    font-style: italic;
    margin-top: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Feature List Cards */
.ip-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ip-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    /* Extremely subtle */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ip-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(244, 208, 63, 0.3);
    /* Gold hint on hover */
}

/* Icons */
.ip-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(244, 208, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ip-icon-box i {
    color: #F4D03F;
    font-size: 1.2rem;
}

/* Card Text */
.ip-card-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 400;
}

.ip-card-text p {
    font-size: 0.95rem;
    color: #BDC3C7;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .main-layout-dark {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .ip-main-img {
        height: 400px;
        margin-bottom: 40px;
    }

    .ip-title {
        font-size: 2.5rem;
    }
}

/* --- Inner Peace Theme Correction (Deep Burgundy & Saffron) --- */

.inner-peace-dark {
    /* Replace Green with Brand Maroon Gradient */
    background: linear-gradient(135deg, #2C0505 0%, #800000 100%);
    border-top: 1px solid rgba(244, 208, 63, 0.1);
    /* Subtle gold border */
}

.ip-title {
    color: #F1C40F;
    /* High-contrast Saffron Gold instead of white */
}

/* Quote needs more warmth */
.ip-quote {
    color: #EAD0A8;
    /* Creamy warm beige, replaces sage green */
    border-left: 3px solid rgba(244, 208, 63, 0.3);
    padding-left: 20px;
}

/* Warm Glass Cards */
.ip-card {
    background: rgba(80, 0, 0, 0.3);
    /* Reddish tint base */
    border: 1px solid rgba(244, 208, 63, 0.15);
    /* Gold border */
}

.ip-card:hover {
    background: rgba(80, 0, 0, 0.6);
    border-color: #F1C40F;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Icons - More Vibrance */
.ip-icon-box {
    background-color: rgba(244, 208, 63, 0.2);
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.1);
    /* Slight glow */
}

.ip-icon-box i {
    color: #FFD700;
    /* Pure Gold */
}

/* Text Readability on Dark Red */
.ip-card-text p {
    color: #F0E0D0;
    /* Warmer off-white */
}

/* --- Inner Peace Sizing Refinement --- */

.inner-peace-dark {
    padding: 80px 0;
    /* Reduced padding from 100px */
}

.ip-main-img {
    height: 550px;
    /* Reduced from 700px */
}

.ip-title {
    font-size: 2.8rem;
    /* Reduced from 3.5rem */
    margin-bottom: 10px;
}

.ip-header {
    margin-bottom: 30px;
    /* Reduced from 50px */
}

.ip-features-list {
    gap: 15px;
    /* Reduced from 20px */
}

.ip-card {
    padding: 15px 20px;
    /* Reduced padding */
    gap: 15px;
}

.ip-icon-box {
    width: 40px;
    /* Reduced from 50px */
    height: 40px;
}

.ip-icon-box i {
    font-size: 1rem;
    /* Reduced icon size */
}

.ip-card-text h3 {
    font-size: 1.2rem;
    /* Reduced from 1.4rem */
    margin-bottom: 5px;
}

.ip-card-text p {
    font-size: 0.9rem;
    /* Slightly smaller body text */
}

/* --- Registration Section (Bottom) --- */
.register-section {
    background-color: #FFF8E1;
    /* Very light saffron tint */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.form-wrapper-centered {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

/* Top accent bar for form */
.form-wrapper-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.booking-form-centered .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.booking-form-centered .form-group {
    margin-bottom: 25px;
}

.booking-form-centered label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.booking-form-centered input,
.booking-form-centered select {
    width: 100%;
    padding: 15px;
    background-color: #FAFAFA;
    border: 1px solid #EEE;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.booking-form-centered input:focus,
.booking-form-centered select:focus {
    background-color: #FFF;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.1);
    outline: none;
}

.divider-center {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 40px auto;
}

@media (max-width: 768px) {
    .booking-form-centered .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-wrapper-centered {
        padding: 30px;
    }
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Alignment Fixes --- */

/* Standardize Itinerary Width */
.itinerary-container {
    max-width: 1200px !important;
    padding: 0 20px;
}

/* Align Itinerary Header with Content */
.itinerary .section-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

/* Remove excessive padding if "fullscreen" feels too big */
section,
.padding-y {
    padding: 80px 0;
    /* Reset to standard 80px from 120px */
}

/* --- Visual Gallery (Bento Grid - Advanced) --- */

.visual-gallery {
    margin-top: 100px;
    padding-bottom: 80px;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    /* Fixed row height for consistency */
    gap: 24px;
    overflow: hidden;
}

/* Main Video Card - Spans Left Half (2 Cols, 2 Rows) */
.video-card {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-card:hover .video-thumb {
    transform: scale(1.03);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    pointer-events: none;
    z-index: 2;
}

/* Gallery Items - Span 1 Grid Cell Each */
.gallery-item {
    grid-column: span 1;
    grid-row: span 1;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    height: 100%;
    background: #f0f0f0;
    /* Loading placeholder */
}

/* Optional: Make first top image wider if we wanted asymmetry, but keeping uniform for now */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive - Stack gracefully */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 400px 250px 250px;
        /* Video Row, Then Images */
    }

    .video-card {
        grid-column: span 2;
        /* Full width video on tablet */
        grid-row: span 1;
    }

    /* Images become 2-col grid below video */
}

/* DISABLED - Mobile grid is handled in mobile.css 
@media (max-width: 576px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .video-card {
        height: 350px;
    }

    .gallery-item {
        height: 200px;
    }
}
*/

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
}

.play-btn i {
    font-size: 1.8rem;
    margin-left: 5px;
    /* Visual center fix */
}

.video-card:hover .play-btn {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.play-overlay p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}



/* View More Overlay */
.more-overlay-container {
    position: relative;
    cursor: pointer;
}

.more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.more-overlay-container:hover .more-overlay {
    opacity: 1;
}

.more-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.more-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .video-card {
        height: 400px;
    }

    .bento-col-grid {
        height: 400px;
        /* Keep grid contained */
    }
}

@media (max-width: 576px) {
    .video-card {
        height: 300px;
    }

    .bento-col-grid {
        height: auto;
        gap: 10px;
    }

    .gallery-item {
        height: 150px;
    }
}

/* --- Z-Index / Overlap Fixes --- */

.visual-gallery {
    /* Ensure it has a background so nothing shows through */
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.highlights {
    /* Ensure it aligns below and is readable */
    position: relative;
    z-index: 5;
    background-color: var(--white);
}

/* Ensure Bento Grid doesn't overflow */
.bento-grid {
    overflow: hidden;
    /* Clip any potential spillover */
}

/* --- Gallery Lightbox Modal --- */

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: center;
    font-family: var(--font-heading);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-prev {
    left: 40px;
}

.modal-next {
    right: 40px;
}

.modal-nav:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-prev {
        left: 20px;
    }

    .modal-next {
        right: 20px;
    }
}

/* --- Temple Introduction Section --- */

.temple-intro {
    padding: 60px 0;
}

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

.intro-content h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.package-highlight {
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.05), rgba(139, 0, 0, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 8px;
}

.package-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 0;
    text-align: left;
}

.package-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        text-align: left;
    }
}

/* --- Tour Description Section --- */

.tour-description {
    padding: 40px 0 20px;
}

.description-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.description-content {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: justify;
}

.description-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.description-more.expanded {
    max-height: 1000px;
    opacity: 1;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .description-content p {
        font-size: 1rem;
    }
}

/* --- Tour Dates Badge --- */

.tour-dates-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.tour-dates-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .tour-dates-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* Hero Meta Info (Batches & Duration) */
.hero-meta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: -10px;
    margin-bottom: 25px;
}

.hero-batch-badge {
    background: rgba(5, 26, 18, 0.6);
    color: #FFD700;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: simplePulse 3s infinite;
}

.hero-duration-text {
    color: #f8f9fa;
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-duration-text i {
    color: #FFD700;
    font-size: 1rem;
}

@keyframes simplePulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

/* Force sharp corners - cache buster 1770300335 */

/* About Us Section */
.about-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
}

/* Form Success and Error Messages */
.success-message,
.error-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.error-message {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.success-message i,
.error-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.hidden {
    display: none !important;
}

/* Submit Button Improvements */
.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    margin-top: 20px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn i {
    margin-right: 10px;
}

/* --- Kamakhya Energy System Section (Premium Dark) --- */
/* --- Kamakhya Energy System Section (Premium Dark - High Contrast) --- */
.energy-system-section {
    position: relative;
    padding: 100px 0;
    color: white;
    background: #051A12;
    /* Fallback */
    background-image: url('assets/images/inner_peace_new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.energy-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(5, 26, 18, 0.95));
    /* Darker Black/Green */
    z-index: 1;
}

.energy-system-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.energy-system-section h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    /* Strong Shadow */
}

.energy-system-section .subtitle {
    font-size: 1.4rem;
    color: #FFD700;
    font-weight: 300;
    display: block;
    margin-top: 10px;
    font-style: italic;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.intro-text {
    font-size: 1.3rem;
    /* Larger */
    margin-bottom: 60px;
    color: #fff;
    /* Pure White */
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.energy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.energy-card {
    background: rgba(0, 0, 0, 0.6);
    /* Darker Card BG */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    /* Gold Border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.energy-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.75);
    border-color: #FFD700;
}

.energy-card h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.energy-card ul {
    list-style: none;
    padding: 0;
}

.energy-card li {
    margin-bottom: 15px;
    font-size: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.energy-card li i {
    color: #FFD700;
    margin-top: 5px;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.tags span {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    border: 1px solid #FFD700;
    font-weight: 500;
}

.meditation-connect {
    background: rgba(0, 0, 0, 0.6);
    /* Darker BG */
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.meditation-connect h3 {
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.meditation-connect p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.meditation-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.meditation-steps li {
    position: relative;
    padding: 15px 25px 15px 60px;
    /* Adjusted padding for visibility */
    font-size: 1.15rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.meditation-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    width: 35px;
    height: 35px;
    background: #FFD700;
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    font-size: 1rem;
    position: absolute;
    left: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.energy-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 26, 18, 0.95), rgba(5, 26, 18, 0.85));
    z-index: 1;
}

.energy-system-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.energy-system-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.energy-system-section .subtitle {
    font-size: 1.4rem;
    color: #FFD700;
    /* Gold */
    font-weight: 300;
    display: block;
    margin-top: 10px;
    font-style: italic;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.energy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.energy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.energy-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.energy-card h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.energy-card ul {
    list-style: none;
    padding: 0;
}

.energy-card li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.energy-card li i {
    color: #FFD700;
    margin-top: 5px;
    font-size: 1.2rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.tags span {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.meditation-connect {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.meditation-connect h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.meditation-connect p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.meditation-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.meditation-steps li {
    position: relative;
    padding: 15px 25px;
    font-size: 1.1rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.meditation-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    width: 30px;
    height: 30px;
    background: #FFD700;
    color: #051A12;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* --- Kamakhya Energy System (Shakti) Section --- */

/* --- Kamakhya Energy System (Shakti) Section --- */
.shakti-section {
    background-color: #051A12;
    /* Deep Mystical Green-Black */
    color: #F4E4BC;
    /* Soft Gold */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Background Texture Effect */
.shakti-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(204, 35, 102, 0.1), transparent 70%);
    pointer-events: none;
}

.shakti-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 5px;
    background: linear-gradient(to right, #FFD700, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.shakti-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 300;
    color: #FFD700;
    margin-left: 10px;
    letter-spacing: 1px;
    -webkit-text-fill-color: #FFD700;
}

.shakti-section .section-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1rem;
    color: rgba(244, 228, 188, 0.8);
}

/* --- Split Layout Styles --- */
.shakti-split-layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.energy-grid-col,
.chakra-connection-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(5px);
}

.subsection-title {
    font-family: 'Cinzel', serif;
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding-bottom: 10px;
}

/* Core Principles Compact */
.energy-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.energy-card-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.2s;
}

.energy-card-compact:hover {
    transform: translateX(5px);
    background: rgba(255, 215, 0, 0.05);
}

.energy-icon-small {
    font-size: 1.5rem;
    color: #FF6B6B;
    min-width: 40px;
    text-align: center;
}

.energy-card-compact h4 {
    color: #FFD700;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.energy-card-compact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Chakra Connection Compact */
.chakra-split-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.chakra-list-compact {
    list-style: none;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chakra-list-compact li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
}

.chakra-desc-small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.chakra-visual-small {
    width: 140px;
    height: 220px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.meditation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Human Silhouette */
.human-silhouette {
    position: relative;
    width: 100px;
    height: 180px;
    z-index: 1;
    opacity: 0.8;
}

.head {
    width: 40px;
    height: 50px;
    background: linear-gradient(to bottom, #FFD700, rgba(255, 215, 0, 0.5));
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.body-upper {
    width: 70px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.4), rgba(255, 107, 107, 0.2));
    border-radius: 40% 40% 50% 50%;
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}

.body-lower {
    width: 90px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 107, 107, 0.2), #051A12);
    border-radius: 50% 50% 10px 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Glowing Chakras */
.chakra-point-glow {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: blur(2px);
    animation: chakraPulse 2s infinite alternate;
}

.root-point {
    bottom: 15px;
    background: radial-gradient(circle, #FF0000 20%, transparent 70%);
    box-shadow: 0 0 20px #FF0000;
}

.sacral-point {
    bottom: 50px;
    background: radial-gradient(circle, #FFA500 20%, transparent 70%);
    box-shadow: 0 0 20px #FFA500;
}

@keyframes chakraPulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateX(-50%) scale(1.4);
        opacity: 1;
    }
}

/* Rising Energy Stream */
.energy-stream {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.8), rgba(255, 165, 0, 0.8), rgba(255, 215, 0, 0.8), transparent);
    z-index: 2;
    border-radius: 50%;
    filter: blur(3px);
    animation: kundaliniRise 3s infinite ease-out;
}

@keyframes kundaliniRise {
    0% {
        height: 0;
        opacity: 0;
        width: 4px;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
        width: 8px;
    }

    100% {
        height: 160px;
        opacity: 0;
        width: 2px;
    }
}

/* Meditation Path Timeline */
.meditation-path h3 {
    font-family: 'Cinzel', serif;
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.meditation-path .subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.meditation-timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.meditation-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 215, 0, 0.3);
    z-index: 1;
}

.timeline-step {
    position: relative;
    padding-top: 40px;
    text-align: center;
    flex: 1;
}

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 30px;
    height: 30px;
    background: #051A12;
    border: 2px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #FF6B6B;
    font-family: 'Cinzel', serif;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .shakti-split-layout {
        flex-direction: column;
    }

    .meditation-timeline {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
        border-left: 2px solid rgba(255, 215, 0, 0.3);
    }

    .meditation-timeline::before {
        display: none;
    }

    .timeline-step {
        padding-top: 0;
        padding-left: 30px;
        padding-bottom: 20px;
        text-align: left;
    }

    .step-marker {
        left: -33px;
        transform: none;
    }

    .chakra-connection {
        flex-direction: column-reverse;
    }
}