/**
 * Advanced Features Stylesheet
 * Styles for: Video hero, Calendar, Spin wheel, Instagram feed, 
 * Live chat, Package builder, and more
 */

/* ============================================================================
   1. VIDEO HERO BACKGROUND
   ============================================================================ */
.video-hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ============================================================================
   2. AVAILABILITY CALENDAR
   ============================================================================ */
.calendar-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.calendar-nav {
    background: var(--accent-gold);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-dark);
}

.calendar-day.available:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.calendar-day.booked {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.1);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    font-size: 0.9rem;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.legend-dot.available {
    background: rgba(16, 185, 129, 0.5);
}

.legend-dot.booked {
    background: rgba(239, 68, 68, 0.5);
}

.legend-dot.selected {
    background: var(--accent-gold);
}

/* Instant Quote Modal */
.instant-quote-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 50px auto;
}

.instant-quote-content h3 {
    text-align: center;
    margin-bottom: 20px;
}

.weekend-notice, .weekday-notice {
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
}

.weekend-notice {
    background: rgba(168, 85, 247, 0.1);
    color: #8B5CF6;
}

.weekday-notice {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.quote-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quote-package-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.quote-package-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.quote-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 15px 0;
}

.quote-hours {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============================================================================
   3. SPIN TO WIN WHEEL
   ============================================================================ */
.spin-wheel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.spin-wheel-content {
    background: white;
    border-radius: 30px;
    padding: 50px;
    max-width: 600px;
    text-align: center;
    position: relative;
    animation: slideUp 0.5s ease;
}

.spin-wheel-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wheel-container {
    position: relative;
    margin: 40px auto;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.spin-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    border: 4px solid white;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.spin-button:hover:not(:disabled) {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.spin-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.wheel-result {
    margin-top: 30px;
    display: none;
}

.wheel-prize {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--accent-gold);
}

.wheel-prize h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.prize-text {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin: 15px 0;
}

.prize-code {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
}

.prize-code strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ============================================================================
   4. INSTAGRAM FEED
   ============================================================================ */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.instagram-stats i {
    margin-right: 8px;
}

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

/* ============================================================================
   5. LIVE CHAT WIDGET
   ============================================================================ */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-status {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-minimize {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.live-chat-widget.chat-opened .chat-minimize {
    transform: rotate(180deg);
}

.chat-body {
    display: flex;
    flex-direction: column;
    height: 450px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

.chat-message.bot .message-content {
    background: white;
    border-radius: 15px 15px 15px 0;
}

.chat-message.user .message-content {
    background: var(--accent-gold);
    color: white;
    border-radius: 15px 15px 0 15px;
    margin-left: auto;
}

.message-content {
    padding: 12px 18px;
    max-width: 80%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.message-content p {
    margin: 8px 0;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 5px;
    display: block;
}

.chat-quick-replies {
    padding: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.quick-reply {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-reply:hover {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.05);
}

.chat-input {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.chat-input button {
    background: var(--accent-gold);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* ============================================================================
   6. PACKAGE BUILDER
   ============================================================================ */
.package-builder-container {
    max-width: 1200px;
    margin: 0 auto;
}

.builder-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.builder-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.builder-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.builder-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.builder-section h3 i {
    color: var(--accent-gold);
}

.builder-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.addons-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.builder-option {
    position: relative;
    cursor: pointer;
}

.builder-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.builder-option:hover .option-content {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.builder-option.selected .option-content {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.option-label {
    font-weight: 600;
    color: var(--text-dark);
}

.option-price {
    color: var(--accent-gold);
    font-weight: 700;
}

.builder-summary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
}

.summary-details h3 {
    margin-bottom: 20px;
}

.summary-details ul {
    list-style: none;
    padding: 0;
}

.summary-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-total {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.total-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.total-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.builder-summary .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    background: white;
    color: var(--primary-color);
}

.builder-summary .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* ============================================================================
   7. VIDEO TESTIMONIALS
   ============================================================================ */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-testimonial-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover .play-button {
    background: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.2);
}

.testimonial-info {
    padding: 25px;
}

.testimonial-info h4 {
    margin-bottom: 5px;
}

.event-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal video {
    width: 100%;
    border-radius: 15px;
}

/* ============================================================================
   8. PROP SELECTOR
   ============================================================================ */
.prop-selector-container {
    max-width: 1000px;
    margin: 0 auto;
}

.prop-categories {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.prop-category-btn {
    padding: 12px 25px;
    border: 2px solid var(--accent-gold);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.prop-category-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.prop-category-btn.active {
    background: var(--accent-gold);
    color: white;
}

.prop-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.prop-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.prop-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.prop-item.selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: var(--accent-gold);
}

.prop-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.prop-item .fa-check-circle {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.selected-props {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.selected-props h3 {
    margin-bottom: 20px;
}

.selected-props-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selected-prop-tag {
    background: var(--accent-gold);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.selected-prop-tag button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.no-props {
    color: var(--text-light);
    text-align: center;
    padding: 20px;
}

/* ============================================================================
   9. GOOGLE REVIEWS
   ============================================================================ */
.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.google-logo {
    height: 30px;
}

.reviews-rating p {
    color: var(--text-light);
    margin-top: 10px;
}

.rating-stars {
    color: #FBBC04;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

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

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    margin-bottom: 5px;
}

.review-stars {
    color: #FBBC04;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============================================================================
   10. MILESTONE COUNTERS
   ============================================================================ */
.milestone-counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.milestone-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.milestone-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.milestone-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.milestone-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.milestone-label {
    color: var(--text-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 768px) {
    .live-chat-widget {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
    }

    .spin-wheel-content {
        padding: 30px 20px;
    }

    #wheelCanvas {
        width: 300px;
        height: 300px;
    }

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

    .calendar-container {
        padding: 20px;
    }

    .prop-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================================
   DARK MODE SUPPORT
   ============================================================================ */
body.dark-mode .calendar-container,
body.dark-mode .builder-section,
body.dark-mode .review-card,
body.dark-mode .video-testimonial-card,
body.dark-mode .milestone-item,
body.dark-mode .selected-props {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

body.dark-mode .calendar-day.available {
    background: rgba(16, 185, 129, 0.2);
    color: white;
}

body.dark-mode .option-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

body.dark-mode .prop-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

body.dark-mode .review-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}
