/* ====================================================
   ROYAL ELEMENTOR WIDGETS — Pure CSS (No Tailwind)
   ==================================================== */

/* ─── GENERAL SECTION STYLES ──────────────────────── */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2d3e40;
    margin: 0;
    line-height: 1.2;
}

.card-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ═══════════════════════════════════════════════════
   HERO WIDGET
   ═════════════════════════════════════════════════ */

.royal-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.royal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, transparent, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.royal-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 60px 30px;
}

.royal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.royal-hero-badge span:first-child {
    font-size: 18px;
}

.royal-hero-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.royal-hero-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.royal-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.royal-hero-btn {
    font-weight: bold;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.royal-hero-btn-primary {
    background: #10a37f;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 163, 127, 0.4);
}

.royal-hero-btn-primary:hover {
    background: #0d8c6d;
    box-shadow: 0 6px 20px rgba(16, 163, 127, 0.6);
    transform: translateY(-2px);
}

.royal-hero-btn-primary:active {
    transform: translateY(0);
}

.royal-hero-btn-secondary {
    border: 2px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.royal-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.royal-hero-btn-secondary:active {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   DIRECTIONS WIDGET v2 • 2025–2026
   ═══════════════════════════════════════════════════ */

.royal-directions-section {
    padding: 100px 20px 120px;
    max-width: 1320px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #2d3e40;
    text-align: center;
    letter-spacing: -0.5px;
    margin: 0 0 60px;
    line-height: 1.05;
}

.royal-directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
}

@media (max-width: 900px) {
    .royal-directions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.direction-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 40px;
    border: 1px solid #f0f0eb;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.direction-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.camps-card .direction-card-icon {
    background: #ecfdf5;
    color: #10b981;
}

.tours-card {
    background: #2d3e40;
    color: white;
    border-color: #1f2a2c;
}

.tours-card .direction-card-icon {
    background: rgba(255,255,255,0.12);
    color: white;
}

.tours-card .direction-card-title {
    color: white;
}

.tours-card .direction-card-desc {
    color: rgba(255,255,255,0.75);
}

.tours-card .country-chip {
    background: rgba(255,255,255,0.11);
    color: white;
}

.tours-card .direction-card-btn {
    background: white;
    color: #2d3e40;
}

.tours-card .direction-card-btn:hover {
    background: #f0f4f5;
    color: #1a2527;
}

.direction-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.direction-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.direction-card-title {
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    color: #2d3e40;
    margin: 0;
    line-height: 1.1;
}

.direction-card-desc {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 32px;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.country-chip {
    background: #f5f5f2;
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 700;
    color: #2d3e40;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.country-chip:hover {
    background: #e6f4ea;
    transform: translateY(-1px);
}

.direction-card-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #2d3e40;
    color: white;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.direction-card-btn:hover {
    background: #1f2a2c;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(45,62,64,0.28);
}
/* ═══════════════════════════════════════════════════
   FEATURES/STATS WIDGET
   ═════════════════════════════════════════════════ */

.royal-features-section {
    padding: 80px 20px;
    background: white;
}

.royal-features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.royal-features-title {
    text-align: center;
    margin-bottom: 64px;
    color: #2d3e40;
}

.royal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .royal-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .royal-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card-text {
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1.4;
    color: #2d3e40;
    margin: 0;
}

/* Background color classes for stat cards */
.bg-emerald-50 { background-color: #f0fdf4; }
.bg-sky-50 { background-color: #f0f9ff; }
.bg-violet-50 { background-color: #f5f3ff; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-rose-50 { background-color: #fff7ed; }

/* ═══════════════════════════════════════════════════
   FAQ WIDGET
   ═════════════════════════════════════════════════ */

.royal-faq-section {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid #f3f3f0;
    border-bottom: 1px solid #f3f3f0;
}

.royal-faq-container {
    max-width: 896px;
    margin: 0 auto;
}

.royal-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.royal-faq-title {
    color: #2d3e40;
    margin-bottom: 16px;
}

.royal-faq-desc {
    color: #999999;
    margin: 0;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fdfdfc;
    border: 1px solid #f3f3f0;
    border-radius: 24px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: #e8e8e6;
}

.faq-item[open] {
    background: #f9f9f7;
    border-color: #e0e0de;
}

.faq-question {
    font-weight: 900;
    font-size: 15px;
    color: #2d3e40;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 16px;
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS WIDGET
   ═════════════════════════════════════════════════ */

.royal-testimonials-section {
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.royal-testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .royal-testimonials-header {
        justify-content: center;
    }
}

.testimonials-info {
    flex: 1;
    min-width: 200px;
}

.testimonials-title {
    margin-bottom: 12px;
    color: #2d3e40;
}

.testimonials-desc {
    color: #999999;
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

.testimonials-rating {
    display: none;
    align-items: center;
    gap: 12px;
    background: #f8f8f6;
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 900;
    color: #999999;
}

@media (min-width: 769px) {
    .testimonials-rating {
        display: flex;
        flex-shrink: 0;
    }
}

.rating-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d4d4d0;
}

.royal-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: white;
    border: 1px solid #f3f3f0;
    border-radius: 16px;
    padding: 48px 24px 24px;
    position: relative;
    font-size: 13px;
    font-style: italic;
    color: #2d3e40;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 48px;
    font-weight: 900;
    color: #e0e0de;
    font-style: normal;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 900;
    font-style: normal;
    font-size: 14px;
    color: #2d3e40;
}

/* ═══════════════════════════════════════════════════
   MEDIA GALLERY WIDGET
   ═════════════════════════════════════════════════ */

.royal-gallery-section {
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.royal-gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.royal-gallery-title {
    margin-bottom: 12px;
    color: #2d3e40;
}

.royal-gallery-desc {
    color: #999999;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #d4d4d0;
    background: white;
    color: #2d3e40;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2d3e40;
    color: white;
    border-color: #2d3e40;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    cursor: pointer;
    height: 288px;
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover img {
    transform: scale(1.05);
}

.media-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    transition: background 0.3s ease;
}

.media-card:hover .media-card-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.media-card-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

.media-card-title {
    color: white;
    font-weight: 700;
    font-size: 16px;
    margin-top: 8px;
    text-align: right;
}

/* ═══════════════════════════════════════════════════
   VIDEO MODAL & PLAY BUTTON
   ═════════════════════════════════════════════════ */

.media-card {
    position: relative;
}

.media-card-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.media-card-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.play-icon {
    font-size: 28px;
    color: #2d3e40;
    margin-left: 3px;
}

/* Модальное окно для видео */
.royal-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.royal-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.royal-video-modal-content {
    position: relative;
    z-index: 10001;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 12px;
    overflow: hidden;
}

.royal-video-iframe-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.royal-video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
}

.royal-video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.royal-video-modal-close:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .royal-video-modal-content {
        max-width: 100%;
        aspect-ratio: auto;
        max-height: 60vh;
    }

    .royal-video-modal-close {
        top: 10px;
        right: 10px;
    }

    .media-card-play-btn {
        width: 56px;
        height: 56px;
    }

    .play-icon {
        font-size: 20px;
    }
}

/* ═══════════════════════════════════════════════════
   BOOKING FORM WIDGET
   ═════════════════════════════════════════════════ */

/* ==========================================================================
   Royal Booking Form – Clean & Modern 2026 style
   Адаптация под CF7 + твою структуру
   ========================================================================== */

.royal-booking-section {
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.royal-booking-header {
    text-align: center;
    margin-bottom: 48px;
}

.royal-booking-title {
    font-size: 2.25rem;          /* ~36px */
    font-weight: 800;
    font-style: italic;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.1;
}

.royal-booking-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;         /* 14px */
    margin: 0;
}

/* Главный контейнер формы – как в твоём примере */
.royal-booking-form-wrapper {
    max-width: 48rem;            /* ~768px → близко к max-w-3xl */
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;               /* 48px */
    border-radius: 3rem;         /* 48px – как в примере */
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

/* Убираем мусор CF7 — НЕ трогаем p, иначе прячутся сами поля */
.wpcf7 br,
.wpcf7 .wpcf7-not-valid-tip,
.wpcf7-response-output[aria-hidden="true"],
.screen-reader-response {
    display: none !important;
}

/* Пустые p от CF7-autop — убираем только их */
.royal-booking-form-wrapper .wpcf7 p:empty {
    display: none;
}

.wpcf7-form-control-wrap {
    margin: 0 !important;
    padding: 0 !important;
}

/* Сетка для полей */
.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;                /* 20px */
    margin-bottom: 1.75rem;      /* ~28px */
}

@media (max-width: 640px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Все поля ввода + селект */
.royal-booking-form-wrapper input:not([type="radio"]):not([type="submit"]),
.royal-booking-form-wrapper select,
.royal-booking-form-wrapper textarea {
    width: 100%;
    height: 3.25rem;             /* 52px */
    padding: 0 1.25rem;          /* 20px */
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 1.25rem;      /* 20px */
    font-size: 0.9375rem;        /* 15px */
    color: #111827;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.royal-booking-form-wrapper input:focus,
.royal-booking-form-wrapper select:focus,
.royal-booking-form-wrapper textarea:focus {
    outline: none;
    border-color: #2d3e40;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
    background: white;
}

/* Placeholder */
.royal-booking-form-wrapper ::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Кастомный селект со стрелкой */
.country-select {
    appearance: none;
    background: #f9fafb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 1.25rem center;
    background-size: 14px;
    padding-right: 3rem !important;
    cursor: pointer;
}

/* Радио-группа */
.booking-radio-group {
    margin-bottom: 2.25rem;      /* 36px */
}

.radio-group-label {
    font-weight: 700;
    color: #111827;
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
    display: block;
}

.program-type .wpcf7-list-item {
    display: inline-flex !important;
    align-items: center;
    margin: 0 1.5rem 0.75rem 0 !important;
}


.program-type .wpcf7-list-item-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

/* Кнопка */
.submit-main {
    width: 100%;
    height: 3.75rem;             /* 60px */
    background: #2d3e40;
    color: white;
    border: none;
    border-radius: 1.25rem;      /* 20px */
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1rem;
}

.submit-main:hover {
    background: #2d3e40;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.28);
}

/* FIX: Убираем пустые обёртки CF7, которые не заполнились */
.royal-booking-form-wrapper .wpcf7-form-control-wrap:empty,
.royal-booking-form-wrapper .wpcf7-form-control-wrap:empty + br {
    display: none !important;
}

/* <p> от CF7 внутри grid и radio-group прозрачны для layout */
.royal-booking-form-wrapper .booking-form-grid > p,
.royal-booking-form-wrapper .booking-radio-group > p {
    display: contents;
    margin: 0;
    padding: 0;
}

/* Пустые span-обёртки CF7 */
.royal-booking-form-wrapper .booking-form-grid > p > span:empty {
    display: none;
}

/* Финальный фикс для полей — заставляем их появляться */
.royal-booking-form-wrapper .wpcf7-form-control-wrap {
    display: block !important;
}

.royal-booking-form-wrapper input:not([type="radio"]):not([type="submit"]),
.royal-booking-form-wrapper select {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.royal-booking-form-wrapper .wpcf7-radio input[type="radio"] {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: unset !important;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ═════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .royal-directions-grid,
    .royal-features-grid,
    .royal-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .royal-testimonials-header {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-rating {
        display: flex !important;
        justify-content: center;
    }

    .testimonials-info {
        text-align: center;
    }

    .testimonials-title {
        text-align: center;
    }

    .testimonials-desc {
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility classes for animations */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}
