/* ==========================================================================
   Saputara Canopy Glamping - Styling Sheet
   Aesthetic: Premium Dark Nature (Emerald Greens, Amber Accents, Glassmorphism)
   ========================================================================== */

/* --- CSS Variables / Design System --- */
:root {
    /* Color Palette */
    --bg-darker: #050b08;
    --bg-dark: #09130e;
    --bg-card: rgba(15, 34, 25, 0.7);
    --bg-glass: rgba(10, 24, 17, 0.5);
    --border-color: rgba(64, 93, 76, 0.25);
    --border-hover: rgba(255, 159, 28, 0.4);
    
    --text-light: #f3f7f5;
    --text-muted: #95ad9e;
    --text-dark: #121212;

    --primary: #ff9f1c;        /* Bonfire Amber */
    --primary-hover: #f39200;
    --primary-glow: rgba(255, 159, 28, 0.3);
    
    --secondary: #2a9d8f;      /* Mountain Teal */
    --secondary-hover: #264653;
    
    --whatsapp: #25d366;       /* WhatsApp Green */
    --whatsapp-hover: #1ebd56;
    --whatsapp-glow: rgba(37, 211, 102, 0.25);

    --danger: #e76f51;         /* Coral Orange */

    /* Typography */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Layout Details */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.15s ease;
    --box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glow-shadow: 0 0 20px rgba(255, 159, 28, 0.2);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* --- Helper/Utility Classes --- */
.text-gradient {
    background: linear-gradient(135deg, var(--text-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-darker);
    box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.4);
}

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

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

.btn-outline {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(255, 159, 28, 0.05);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 15px var(--whatsapp-glow);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.icon-left { margin-right: 0.25rem; }
.icon-right { margin-left: 0.25rem; }

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(5, 11, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-icon {
    color: var(--primary);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: var(--bg-darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroller {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* --- Stats Section --- */
.stats-section {
    padding: 3rem 0;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.star-inline {
    font-size: 1.8rem;
    margin-left: 4px;
    vertical-align: middle;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- Section Formatting Utilities --- */
.tents-section, .amenities-section, .experiences-section, .reviews-section {
    padding: 7rem 0;
}

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

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Tents Grid & Cards --- */
.tents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.tent-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.tent-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.tent-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tent-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tent-card:hover .tent-image {
    transform: scale(1.08);
}

.tent-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--bg-darker);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-premium {
    background-color: var(--text-light);
    color: var(--bg-darker);
}

.tent-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tent-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tent-capacity i, .tent-rating i {
    color: var(--primary);
    margin-right: 4px;
}

.tent-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tent-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.tent-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tent-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tent-features li i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.tent-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.tent-price-box {
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.price-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-right: 2px;
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Amenities Grid --- */
.amenities-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.amenity-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background-color: rgba(255, 159, 28, 0.02);
}

.amenity-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 159, 28, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 159, 28, 0.2);
}

.amenity-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.amenity-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Saputara Experiences Section --- */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.experience-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.experience-badge {
    background-color: rgba(42, 157, 143, 0.15);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(42, 157, 143, 0.25);
}

.experience-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.experience-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

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

.review-card {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    position: relative;
}

.review-stars {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.review-quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

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

.footer-about {
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: rgba(255, 159, 28, 0.05);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-col i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.heart-icon {
    color: var(--danger);
    margin: 0 2px;
}

/* --- Multi-Step Booking Modal Wizard --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 11, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.modal-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.modal-close-btn:hover {
    color: var(--primary);
}

/* Booking Step Progress Tracker */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.01);
    position: relative;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 2.5rem;
    right: 2.5rem;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-darker);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.progress-step.active .step-num {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 0 10px var(--primary-glow);
}

.progress-step.active .step-label {
    color: var(--primary);
}

.progress-step.completed .step-num {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: white;
}

.progress-step.completed .step-label {
    color: var(--secondary);
}

/* Wizard Panels */
.wizard-panel {
    display: none;
    padding: 2rem;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

/* Form Styles inside Wizard */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.85rem 1.2rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-icon-wrapper {
    position: relative;
}

.input-inner-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-input.icon-indent {
    padding-left: 45px;
}

.form-help-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* Pricing Breakdown */
.booking-breakdown-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: slideDown 0.3s ease-out;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breakdown-row.total-row {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
}

.wizard-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.wizard-footer-actions.single-center {
    justify-content: center;
}

/* UPI Payment Panel */
.payment-instructions {
    display: flex;
    gap: 1rem;
    background-color: rgba(42, 157, 143, 0.08);
    border: 1px solid rgba(42, 157, 143, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.security-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-top: 3px;
}

.security-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.security-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.qr-container-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    max-width: 250px;
    margin: 1.5rem auto;
    border: 1px solid var(--border-color);
}

.qr-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
}

.qr-code-img {
    width: 100%;
    height: 100%;
}

.qr-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.qr-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(10, 24, 17, 0.1);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.payment-amount-box {
    text-align: center;
    margin-top: 1rem;
}

.payable-label {
    display: block;
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
}

.payable-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-darker);
}

.mobile-pay-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mobile-pay-btn {
    width: 100%;
    max-width: 300px;
}

.mobile-pay-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Success Confirmation Panel */
.success-alert-box {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon-circle {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.success-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-para {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.confirmation-whatsapp-box {
    background-color: rgba(37, 211, 102, 0.05);
    border: 1px dashed rgba(37, 211, 102, 0.25);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.whatsapp-logo-glow {
    font-size: 3rem;
    color: var(--whatsapp);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.2));
}

.confirmation-whatsapp-box h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.confirmation-whatsapp-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    width: 100%;
    max-width: 320px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

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

.animate-scale {
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* --- Responsive Adjustments / Media Queries --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }
    .navbar {
        height: 70px;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-action {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wizard-progress {
        padding: 1.5rem 1rem;
    }
    
    .progress-line {
        left: 1rem;
        right: 1rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-actions .btn {
        width: 100%;
    }
}

/* --- Floating WhatsApp Widget Styles --- */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-family: var(--font-sans);
}

.whatsapp-widget-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: var(--transition-smooth);
}

.whatsapp-widget-btn:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge-pulse {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #ff3b30;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 59, 48, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.whatsapp-chat-box.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-chat-header {
    background-color: #0c1d15;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.wa-chat-icon {
    font-size: 2.2rem;
    color: var(--whatsapp);
}

.wa-chat-title h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.wa-chat-title span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-chat-title span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--whatsapp);
}

.wa-chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    transition: var(--transition-quick);
}

.wa-chat-close:hover {
    color: var(--primary);
}

.whatsapp-chat-body {
    padding: 1.2rem;
    background-color: #050b08;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
}

.wa-chat-bubble {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.wa-chat-bubble.incoming {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-top-left-radius: 0;
    align-self: flex-start;
}

.whatsapp-chat-footer {
    padding: 1rem;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.wa-chat-send-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    border-radius: 30px;
}
