/* ==========================================
   NAQSH RESORT - MAIN STYLESHEET
   ========================================== */

:root {
    --color-primary: #8B4513;
    --color-primary-dark: #6B3410;
    --color-primary-light: #A0522D;
    --color-secondary: #D4A574;
    --color-accent: #F5DEB3;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --font-display: 'Georgia', serif;
    --font-body: 'Segoe UI', system-ui, sans-serif;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* ==========================================
   LAYOUT
   ========================================== */

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

.section {
    padding: 80px 0;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

.btn-gold {
    background: #D4A574;
    color: #1a1a1a;
    font-weight: 700;
}

.btn-gold:hover {
    background: #C4956A;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.btn-view { background: #e3f2fd; color: #1976d2; }
.btn-edit { background: #fff3e0; color: #f57c00; }
.btn-delete { background: #ffebee; color: #d32f2f; }
.btn-confirm { background: #e8f5e9; color: #388e3c; }

.btn-sm:hover { opacity: 0.8; }

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: white;
    box-shadow: var(--shadow);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.header.scrolled .logo {
    color: var(--color-primary);
}

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

.nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: var(--transition);
}

.header.scrolled .nav a {
    color: #333;
}

.nav a:hover {
    color: var(--color-secondary);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/6.jpg') center/cover no-repeat;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: #D4A574;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ==========================================
   ROOMS SECTION
   ========================================== */

.rooms-section {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--color-dark);
    margin-bottom: 10px;
}

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

.room-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.room-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-card-body {
    padding: 25px;
}

.room-card h3 {
    color: var(--color-dark);
    margin-bottom: 10px;
}

.room-pricing {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.price-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-weekday {
    background: #fff8e1;
    color: #f57c00;
}

.price-weekend {
    background: #fce4ec;
    color: #d32f2f;
}

/* ==========================================
   WHY NAQSH SECTION
   ========================================== */

.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
}

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

.why-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.why-card h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================
   BOOKING SECTION
   ========================================== */

.booking-section {
    padding: 80px 0;
}

.booking-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.booking-tabs button {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.booking-tabs button:first-child {
    border-radius: 50px 0 0 50px;
    border-right: none;
}

.booking-tabs button:last-child {
    border-radius: 0 50px 50px 0;
    border-left: none;
}

/* Default State (Inactive) */
.booking-tabs button {
    background: #f5f5f5;
    color: #555;
    border: 1px solid #ddd;
}

/* Active State */
.booking-tabs button.active {
    background: var(--color-primary); /* Use Gold/Primary instead of Dark for better visibility */
    color: white;
    border-color: var(--color-primary);
    position: relative;
    z-index: 1; /* Bring active tab to front */
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.meal-options {
    display: flex;
    gap: 15px;
}

.meal-option {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.meal-option:hover,
.meal-option.selected {
    border-color: var(--color-primary);
    background: rgba(139, 69, 19, 0.05);
}

.meal-option input {
    display: none;
}

.meal-option h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.meal-option p {
    font-size: 0.8rem;
    color: #666;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--color-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer h4 {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.footer p, .footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer a:hover {
    color: var(--color-secondary);
}

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

/* ==========================================
   WHATSAPP BUTTON
   ========================================== */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: #20BA5C;
}

/* ==========================================
   UTILITIES
   ========================================== */

.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-checked-in { background: #cce5ff; color: #004085; }
.status-new { background: #e2e3e5; color: #383d41; }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .nav { display: none; }
    .booking-form { padding: 25px; }
    .room-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Group Booking Styles
   ========================================== */
.group-info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent-color);
}

.group-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 10px;
}

.group-highlight h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.badge-gold {
    background: linear-gradient(135deg, #d4af37, #f2d06b);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.group-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.group-features li {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-features li strong {
    color: var(--primary-color);
}

/* Helper to hide elements */
.hidden {
    display: none !important;
}


/* ==========================================
   Testimonials Styles
   ========================================== */
.reviews-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin: 15px 0;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.review-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-author span {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
}

/* ==========================================
   Gallery Styles
   ========================================== */
.gallery-section {
    padding: 60px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Conversion Upgrades
   ========================================== */

/* Why Icons */
.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Urgency Badge */
.urgent-badge {
    display: inline-block;
    background: #ffebee;
    color: #d32f2f;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 10px;
    border: 1px solid #ffcdd2;
    animation: pulse 2s infinite;
}

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

/* Sticky Mobile CTA */
.mobile-bottom-nav {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    .footer {
        padding-bottom: 80px; /* Space for sticky bar */
    }

    .whatsapp-btn {
        bottom: 80px; /* Move WA up */
    }
}

/* ==========================================
   PACKAGES SECTION
   ========================================== */

.packages-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

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

.package-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-calm {
    background: #2ed573;
}

.package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    margin-bottom: 5px;
    color: var(--color-primary);
}

.package-duration {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.package-price .currency {
    font-size: 1rem;
    color: #777;
}

.package-price .per-person {
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 100%;
    background: transparent;
    font-weight: 600;
}

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

/* ==========================================
   FULL DETAIL MODALS
   ========================================== */

.modal-content-large {
    background: white;
    width: 95%;
    max-width: 1000px;
    height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.modal-close-btn:hover {
    background: rgba(0,0,0,0.8);
}

.modal-header-hero {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.modal-header-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.modal-hero-text {
    position: relative;
    padding: 30px;
    color: white;
    z-index: 2;
}

.modal-hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modal-body-scroll {
    overflow-y: auto;
    padding: 30px;
    background: #f8f9fa;
    flex-grow: 1;
}

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

.intro-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.highlight-peace {
    background: #d4edda;
    border-left-color: #28a745;
}

.highlight-box h4 {
    margin-bottom: 15px;
    color: #333;
}

.timeline, .check-list, .cross-list {
    list-style: none;
    margin-bottom: 30px;
}

.timeline li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

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

.check-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.cross-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.cross-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

/* Right Sidebar Pricing */
.pricing-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--color-primary);
    position: sticky;
    top: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.price-row.best-value {
    background: #fff8e1;
    margin: 0 -25px;
    padding: 12px 25px;
    border-bottom: none;
}

.price-row strong {
    color: var(--color-dark);
}

.badge {
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

.transport-card, .wellness-card {
    background: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.transport-card ul, .wellness-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .package-detail-grid {
        grid-template-columns: 1fr;
    }
    .modal-content-large {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .modal-hero-text h2 {
        font-size: 1.8rem;
    }
}


/* ==========================================
   Booking Modal Styles
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

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

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: scale(0.9);
    animation: slideUp 0.3s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    position: relative;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

@keyframes slideUp {
    to { 
        transform: scale(1); 
        opacity: 1;
    }
}

.modal-header .success-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    display: inline-block;
    animation: pop 0.5s 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
}

@keyframes pop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.booking-summary-card {
    background: #fdfbf7;
    border: 1px dashed rgba(212, 163, 115, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.summary-row.advance-row {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 0;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.highlight {
    font-family: monospace;
    background: #eee;
    padding: 2px 6px;
    border-radius: 4px;
    color: #333;
}

.price-tag {
    color: #d32f2f;
}

.modal-note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: none;
    padding: 12px 20px;
}

.btn-secondary:hover {
    background: #eee;
}

.pulse-effect {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 163, 115, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0); }


