/*
Theme Name: tazekkapark
Theme URI: https://tazekkapark.com
Author: acode.tech
Author URI: https://acode.tech
Description: Thème WordPress premium spécialisé randonnée et trekking. Système de réservation, affichage des randonnées, demande de devis, et design élégant.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tazekkapark
Tags: hiking, trekking, booking, outdoor, nature
*/

/* ═══════════════════════════════════════
   DESIGN SYSTEM — tazekkapark
   ═══════════════════════════════════════ */

:root {
    /* Color Palette — Nature inspired */
    --rt-forest: #1a3c34;
    --rt-forest-light: #2d5a4e;
    --rt-forest-dark: #0f2620;
    --rt-sage: #6b8f71;
    --rt-sage-light: #a3c4a8;
    --rt-amber: #e8a838;
    --rt-amber-light: #f0c060;
    --rt-amber-dark: #c4891a;
    --rt-earth: #8b6f47;
    --rt-earth-light: #b8996a;
    --rt-cream: #faf6f0;
    --rt-cream-dark: #f0e8d8;
    --rt-white: #ffffff;
    --rt-dark: #1a1a1a;
    --rt-dark-soft: #2a2a2a;
    --rt-gray-100: #f5f5f5;
    --rt-gray-200: #e8e8e8;
    --rt-gray-300: #d0d0d0;
    --rt-gray-400: #a0a0a0;
    --rt-gray-500: #707070;
    --rt-gray-600: #505050;

    /* Status */
    --rt-success: #2ecc71;
    --rt-warning: #f39c12;
    --rt-danger: #e74c3c;
    --rt-info: #3498db;

    /* Difficulty colors */
    --rt-easy: #2ecc71;
    --rt-moderate: #f39c12;
    --rt-hard: #e67e22;
    --rt-expert: #e74c3c;

    /* Typography */
    --rt-font-heading: 'Outfit', sans-serif;
    --rt-font-body: 'Inter', sans-serif;

    /* Spacing */
    --rt-space-xs: 0.25rem;
    --rt-space-sm: 0.5rem;
    --rt-space-md: 1rem;
    --rt-space-lg: 1.5rem;
    --rt-space-xl: 2rem;
    --rt-space-2xl: 3rem;
    --rt-space-3xl: 4rem;
    --rt-space-4xl: 6rem;

    /* Border Radius */
    --rt-radius-sm: 8px;
    --rt-radius-md: 12px;
    --rt-radius-lg: 16px;
    --rt-radius-xl: 24px;
    --rt-radius-full: 9999px;

    /* Shadows */
    --rt-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --rt-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --rt-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --rt-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --rt-shadow-glow: 0 0 30px rgba(232, 168, 56, 0.3);

    /* Transitions */
    --rt-transition-fast: 0.15s ease;
    --rt-transition: 0.3s ease;
    --rt-transition-slow: 0.5s ease;

    /* Container */
    --rt-container: 1200px;
    --rt-container-wide: 1400px;
    --rt-container-narrow: 800px;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--rt-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--rt-dark);
    background-color: var(--rt-white);
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rt-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--rt-forest-dark);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--rt-space-md);
}

/* ═══════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════ */

.rt-container {
    max-width: var(--rt-container);
    margin: 0 auto;
    padding: 0 var(--rt-space-xl);
}

.rt-container-wide {
    max-width: var(--rt-container-wide);
    margin: 0 auto;
    padding: 0 var(--rt-space-xl);
}

.rt-container-narrow {
    max-width: var(--rt-container-narrow);
    margin: 0 auto;
    padding: 0 var(--rt-space-xl);
}

.rt-section {
    padding: var(--rt-space-4xl) 0;
}

.rt-club-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--rt-space-2xl);
    perspective: 1000px;
}

.rt-club-logo img {
    height: 380px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(26, 60, 52, 0.4)) drop-shadow(0 0 40px rgba(232, 168, 56, 0.15));
    animation:
        logoIntro 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
        floatLogoModern 8s ease-in-out infinite 1.2s;
    transform-style: preserve-3d;
}

@keyframes logoIntro {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(40px) rotateX(15deg);
        filter: drop-shadow(0 0 0 rgba(26, 60, 52, 0));
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
        filter: drop-shadow(0 15px 25px rgba(26, 60, 52, 0.4)) drop-shadow(0 0 40px rgba(232, 168, 56, 0.15));
    }
}

@keyframes floatLogoModern {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-12px) rotate(1deg) scale(1.02);
    }

    50% {
        transform: translateY(-20px) rotate(0deg) scale(1.01);
    }

    75% {
        transform: translateY(-8px) rotate(-1deg) scale(1.005);
    }
}

/* Adjust logo size on smaller screens */
@media (max-width: 768px) {
    .rt-club-logo img {
        height: 240px;
    }
}

.tp-about-right-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tp-about-right-col .rt-club-logo {
    margin-bottom: 0;
}

/* Split Layout Header (e.g. for Home Page / Les Tresors) */
.tp-split-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: var(--rt-space-3xl);
}

.tp-split-header .tp-split-text {
    flex: 1;
    max-width: 600px;
}

.tp-split-header .rt-club-logo {
    flex-shrink: 0;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .tp-split-header {
        flex-direction: column;
        text-align: center;
    }

    .tp-split-header .tp-split-text {
        margin: 0 auto;
    }
}

.rt-section-header {
    text-align: center;
    margin-bottom: var(--rt-space-3xl);
}

.rt-section-header .rt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--rt-forest);
    color: var(--rt-amber);
    border-radius: var(--rt-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--rt-space-md);
}

.rt-section-header h2 {
    margin-bottom: var(--rt-space-md);
}

.rt-section-header p {
    font-size: 1.1rem;
    color: var(--rt-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.rt-gradient-text {
    background: linear-gradient(135deg, var(--rt-forest), var(--rt-sage));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

display: flex;
background: var(--rt-gray-100);
padding: 4px;
border-radius: var(--rt-radius-full);
margin-right: var(--rt-space-md);
border: 1px solid var(--rt-gray-200);
}

border: none;
background: transparent;
padding: 6px 12px;
border-radius: var(--rt-radius-full);
font-size: 0.75rem;
font-weight: 700;
color: #3d3d3d;
cursor: pointer;
transition: all var(--rt-transition-fast);
}

color: #1a3c34;
}

background: #1a3c34;
color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.rt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--rt-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--rt-radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--rt-transition);
    text-decoration: none;
    line-height: 1;
}

.rt-btn-primary {
    background: linear-gradient(135deg, var(--rt-amber), var(--rt-amber-dark));
    color: var(--rt-white);
    box-shadow: 0 4px 16px rgba(232, 168, 56, 0.35);
}

.rt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 168, 56, 0.45);
}

.rt-btn-secondary {
    background: var(--rt-forest);
    color: var(--rt-white);
    box-shadow: var(--rt-shadow-md);
}

.rt-btn-secondary:hover {
    background: var(--rt-forest-light);
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-lg);
}

.rt-btn-outline {
    background: transparent;
    color: var(--rt-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.rt-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.rt-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--rt-white);
    backdrop-filter: blur(10px);
}

.rt-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.rt-btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.rt-btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════ */

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

/* Adjust header when WordPress Admin Bar is visible */
.admin-bar .rt-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .rt-header {
        top: 46px;
    }
}

.rt-header.scrolled {
    background: rgba(26, 60, 52, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    top: 0;
}

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

.rt-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--rt-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rt-white);
    text-decoration: none;
}

.rt-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--rt-amber), var(--rt-amber-dark));
    border-radius: var(--rt-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.rt-nav a {
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--rt-radius-sm);
    transition: all var(--rt-transition-fast);
}

.rt-nav a:hover,
.rt-nav a.active {
    color: var(--rt-white);
    background: rgba(255, 255, 255, 0.12);
}

.rt-nav-cta {
    margin-left: 12px;
}

.rt-nav-cta .rt-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.rt-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.rt-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--rt-white);
    border-radius: 2px;
    transition: all var(--rt-transition-fast);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.rt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rt-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: heroBgZoom 20s linear infinite alternate;
}

.rt-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 38, 32, 0.7) 0%,
            rgba(15, 38, 32, 0.5) 50%,
            rgba(15, 38, 32, 0.8) 100%);
}

.rt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--rt-space-4xl) 0;
}

@keyframes heroBgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rt-radius-full);
    color: var(--rt-amber-light);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--rt-space-xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.rt-hero h1 {
    color: var(--rt-white);
    margin-bottom: var(--rt-space-lg);
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.rt-hero h1 em {
    font-style: normal;
    color: var(--rt-amber);
    position: relative;
}

.rt-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--rt-space-2xl);
    max-width: 600px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.rt-hero-actions {
    display: flex;
    gap: var(--rt-space-lg);
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.rt-hero-stats {
    display: flex;
    gap: var(--rt-space-2xl);
    margin-top: var(--rt-space-3xl);
    padding-top: var(--rt-space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.rt-hero-stat {
    text-align: left;
}

.rt-hero-stat-value {
    font-family: var(--rt-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--rt-amber);
}

.rt-hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* Scroll indicator */
.rt-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    animation: rt-bounce 2s ease infinite;
}

@keyframes rt-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ═══════════════════════════════════════
   HIKE CARDS
   ═══════════════════════════════════════ */

.rt-hikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--rt-space-xl);
}

.rt-hike-card {
    border-radius: 20px 60px 20px 20px;
    overflow: hidden;
    background: var(--rt-white);
    box-shadow: var(--rt-shadow-md);
    transition: all var(--rt-transition-slow);
    position: relative;
    border: 1px solid rgba(26, 60, 52, 0.08);
}

.rt-hike-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rt-shadow-xl);
    border-radius: 60px 20px 60px 20px;
}

.rt-hike-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.rt-hike-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rt-hike-card:hover .rt-hike-card-image img {
    transform: scale(1.08) rotate(1deg);
}

.rt-hike-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rt-hike-difficulty {
    padding: 4px 12px;
    border-radius: var(--rt-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rt-white);
}

.rt-hike-difficulty.easy {
    background: var(--rt-easy);
}

.rt-hike-difficulty.moderate {
    background: var(--rt-moderate);
}

.rt-hike-difficulty.hard {
    background: var(--rt-hard);
}

.rt-hike-difficulty.expert {
    background: var(--rt-danger);
}

background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 14px;
padding: 8px 14px;
display: flex;
flex-direction: column;
align-items: center;
line-height: 1;
color: var(--rt-white);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
transition: all var(--rt-transition-fast);
}

background: var(--rt-amber);
color: var(--rt-dark);
border-color: var(--rt-amber);
box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.tp-cpb-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 3px;
    letter-spacing: 0.06em;
}

.tp-cpb-val {
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
}

.tp-cpb-val span {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.9;
}

.rt-hike-card:hover .tp-cpb-val span,
.rt-hike-card:hover .tp-cpb-label {
    opacity: 1;
    color: var(--rt-dark);
}

.rt-hike-card-body {
    padding: var(--rt-space-lg);
}

.rt-hike-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: var(--rt-space-sm);
}

.rt-hike-card-body h3 a {
    color: var(--rt-forest-dark);
    transition: color var(--rt-transition-fast);
}

.rt-hike-card-body h3 a:hover {
    color: var(--rt-forest);
}

.rt-hike-card-excerpt {
    font-size: 0.9rem;
    color: var(--rt-gray-500);
    line-height: 1.6;
    margin-bottom: var(--rt-space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rt-hike-card-meta {
    display: flex;
    gap: var(--rt-space-md);
    flex-wrap: wrap;
    padding-top: var(--rt-space-md);
    border-top: 1px solid var(--rt-gray-200);
}

.rt-hike-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--rt-gray-500);
    font-weight: 500;
}

.rt-hike-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--rt-sage);
}

.rt-hike-card-footer {
    padding: 0 var(--rt-space-lg) var(--rt-space-lg);
}

.rt-hike-card-footer .rt-btn {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════
   TAZEKKA TREASURES
   ═══════════════════════════════════════ */

.rt-tazekka-treasures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--rt-space-xl);
    margin-top: var(--rt-space-2xl);
}

.rt-treasure-card {
    text-align: center;
    padding: var(--rt-space-xl) var(--rt-space-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px 60px 30px 60px;
    box-shadow: var(--rt-shadow-sm);
    transition: all var(--rt-transition-slow);
    border: 1px solid rgba(107, 143, 113, 0.2);
    position: relative;
}

.rt-treasure-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--rt-shadow-lg);
    border-radius: 60px 30px 60px 30px;
    background: var(--rt-white);
}

.rt-treasure-emoji-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--rt-space-md);
    background: var(--rt-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: var(--rt-shadow-sm);
    color: var(--rt-forest);
    border: 2px solid var(--rt-sage-light);
    transition: transform var(--rt-transition-slow);
}

.rt-treasure-card:hover .rt-treasure-emoji-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: var(--rt-sage-light);
    border-color: var(--rt-forest);
}

.rt-treasure-title {
    font-size: 1.25rem;
    color: var(--rt-forest-dark);
    margin-bottom: var(--rt-space-sm);
}

.rt-treasure-text {
    font-size: 0.95rem;
    color: var(--rt-gray-600);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════ */

.rt-stats-section {
    background: var(--rt-forest);
    position: relative;
    overflow: hidden;
}

.rt-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M40 0L80 40L40 80L0 40Z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') repeat;
    background-size: 80px;
}

.rt-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rt-space-xl);
    position: relative;
}

.rt-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rt-radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rt-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rt-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--rt-space-md);
    background: rgba(232, 168, 56, 0.15);
    border-radius: var(--rt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--rt-amber);
    transition: transform 0.3s ease;
}

.rt-stat-card:hover .rt-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.rt-stat-value {
    font-family: var(--rt-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.rt-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--rt-space-sm);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */

.rt-testimonials-section {
    background: var(--rt-cream);
}

.rt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--rt-space-xl);
}

.rt-testimonial-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    padding: var(--rt-space-2xl);
    box-shadow: var(--rt-shadow-sm);
    transition: all var(--rt-transition);
    position: relative;
}

.rt-testimonial-card:hover {
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-4px);
}

.rt-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--rt-font-heading);
    font-size: 4rem;
    color: var(--rt-sage-light);
    opacity: 0.3;
    line-height: 1;
}

/* ─── Features Grid (Why Choose Us) ─── */
.rt-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rt-space-xl);
    margin-top: var(--rt-space-2xl);
}

.rt-feature-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    padding: var(--rt-space-2xl) var(--rt-space-xl);
    text-align: center;
    box-shadow: var(--rt-shadow-sm);
    transition: all var(--rt-transition);
    border-top: 3px solid var(--rt-sage);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rt-feature-card:hover {
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-6px);
}

.rt-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--rt-space-lg);
    flex-shrink: 0;
}

.rt-feature-card h4 {
    font-family: var(--rt-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rt-sage);
    margin: 0 0 var(--rt-space-sm) 0;
}

.rt-feature-card p {
    color: var(--rt-gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .rt-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rt-features-grid {
        grid-template-columns: 1fr;
    }
}

.rt-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--rt-space-md);
    color: var(--rt-amber);
    font-size: 1rem;
}

.rt-testimonial-text {
    font-size: 0.95rem;
    color: var(--rt-gray-600);
    line-height: 1.7;
    margin-bottom: var(--rt-space-lg);
    font-style: italic;
}

.rt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rt-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rt-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rt-font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--rt-forest);
}

.rt-testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--rt-dark);
}

.rt-testimonial-hike {
    font-size: 0.8rem;
    color: var(--rt-gray-400);
    margin-top: 2px;
}

/* Override outline button in blog content where background is white */
.tp-blog-content .rt-btn-outline {
    border-color: var(--rt-forest) !important;
    color: var(--rt-forest) !important;
}

.tp-blog-content .rt-btn-outline:hover {
    background: var(--rt-forest) !important;
    color: var(--rt-white) !important;
    border-color: var(--rt-forest) !important;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */

.rt-cta-section {
    position: relative;
    padding: var(--rt-space-4xl) 0;
    background: #1a3c34 !important;
    overflow: hidden;
}

.rt-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.15), transparent 70%);
    border-radius: 50%;
}

.rt-cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.rt-cta-content h2 {
    color: #ffffff !important;
    margin-bottom: var(--rt-space-lg);
}

.rt-cta-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
    margin-bottom: var(--rt-space-2xl);
}

.rt-cta-actions {
    display: flex;
    gap: var(--rt-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.rt-footer {
    background: var(--rt-forest-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--rt-space-4xl);
}

.rt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--rt-space-3xl);
    padding-bottom: var(--rt-space-3xl);
}

.rt-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--rt-space-md);
    max-width: 300px;
}

.rt-footer-social {
    display: flex;
    gap: var(--rt-space-sm);
    margin-top: var(--rt-space-lg);
}

.rt-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--rt-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--rt-transition-fast);
    font-size: 1rem;
}

.rt-footer-social a:hover {
    background: var(--rt-amber);
    color: var(--rt-white);
    transform: translateY(-2px);
}

.rt-footer h4 {
    color: var(--rt-white);
    font-size: 1rem;
    margin-bottom: var(--rt-space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.rt-footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: all var(--rt-transition-fast);
}

.rt-footer-links a:hover {
    color: var(--rt-amber);
    padding-left: 8px;
}

.rt-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: var(--rt-space-md);
    font-size: 0.9rem;
}

.rt-footer-contact-item svg {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--rt-amber);
    flex-shrink: 0;
}

.rt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--rt-space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════
   SINGLE HIKE PAGE
   ═══════════════════════════════════════ */

.rt-single-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.rt-single-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.rt-single-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(15, 38, 32, 0.9));
}

.rt-single-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: var(--rt-space-3xl);
    width: 100%;
}

.rt-single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--rt-space-lg);
}

.rt-single-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--rt-transition-fast);
}

.rt-single-breadcrumb a:hover {
    color: var(--rt-amber);
}

.rt-single-title {
    color: var(--rt-white);
    margin-bottom: var(--rt-space-md);
}

.rt-single-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--rt-space-3xl);
    padding: var(--rt-space-3xl) 0;
}

.rt-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rt-space-md);
    margin-bottom: var(--rt-space-2xl);
}

.rt-spec-card {
    text-align: center;
    padding: var(--rt-space-lg);
    background: var(--rt-cream);
    border-radius: var(--rt-radius-md);
}

.rt-spec-icon {
    font-size: 1.5rem;
    margin-bottom: var(--rt-space-sm);
}

.rt-spec-value {
    font-family: var(--rt-font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rt-forest);
}

.rt-spec-label {
    font-size: 0.8rem;
    color: var(--rt-gray-400);
    margin-top: 2px;
}

/* Booking sidebar */
.rt-booking-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.rt-booking-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    box-shadow: var(--rt-shadow-lg);
    overflow: hidden;
    border: 1px solid var(--rt-gray-200);
}

.rt-booking-card-header {
    background: var(--rt-forest);
    padding: var(--rt-space-lg) var(--rt-space-xl);
    color: var(--rt-white);
}

font-family: var(--rt-font-heading);
font-size: 2rem;
font-weight: 800;
color: var(--rt-amber);
}

font-size: 0.85rem;
font-weight: 400;
color: rgba(255, 255, 255, 0.6);
}

.rt-booking-card-body {
    padding: var(--rt-space-xl);
}

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */

.rt-form-group {
    margin-bottom: var(--rt-space-lg);
}

.rt-form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rt-dark);
    margin-bottom: var(--rt-space-sm);
}

.rt-form-input,
.rt-form-select,
.rt-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--rt-font-body);
    font-size: 0.95rem;
    border: 2px solid var(--rt-gray-200);
    border-radius: var(--rt-radius-md);
    background: var(--rt-white);
    color: var(--rt-dark);
    transition: border-color var(--rt-transition-fast);
    outline: none;
}

.rt-form-input:focus,
.rt-form-select:focus,
.rt-form-textarea:focus {
    border-color: var(--rt-forest);
    box-shadow: 0 0 0 4px rgba(26, 60, 52, 0.08);
}

.rt-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.rt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--rt-space-md);
}

.rt-form-hint {
    font-size: 0.8rem;
    color: var(--rt-gray-400);
    margin-top: 4px;
}

/* Success/Error messages */
.rt-alert {
    padding: var(--rt-space-md) var(--rt-space-lg);
    border-radius: var(--rt-radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--rt-space-lg);
}

.rt-alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #1a8a4a;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.rt-alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* ═══════════════════════════════════════
   ARCHIVE / FILTERS
   ═══════════════════════════════════════ */

.rt-archive-hero {
    background: var(--rt-forest);
    padding: 140px 0 80px;
    text-align: center;
}

.rt-archive-hero h1 {
    color: var(--rt-white);
    margin-bottom: var(--rt-space-md);
}

.rt-archive-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.rt-filters {
    display: flex;
    gap: var(--rt-space-md);
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--rt-space-xl) 0;
    background: var(--rt-white);
    border-bottom: 1px solid var(--rt-gray-200);
    position: sticky;
    top: 72px;
    z-index: 50;
}

.rt-filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--rt-gray-200);
    border-radius: var(--rt-radius-full);
    font-family: var(--rt-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rt-gray-500);
    background: var(--rt-white);
    cursor: pointer;
    transition: all var(--rt-transition-fast);
}

.rt-filter-btn:hover,
.rt-filter-btn.active {
    background: var(--rt-forest);
    color: var(--rt-white);
    border-color: var(--rt-forest);
}

/* ═══════════════════════════════════════
   BOOKING & DEVIS PAGES
   ═══════════════════════════════════════ */

.rt-page-hero {
    background: var(--rt-forest);
    padding: 140px 0 80px;
    text-align: center;
}

.rt-page-hero h1 {
    color: var(--rt-white);
}

.rt-page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: var(--rt-space-md) auto 0;
}

.rt-form-page {
    padding: var(--rt-space-4xl) 0;
    background: var(--rt-cream);
}

.rt-form-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius-xl);
    box-shadow: var(--rt-shadow-lg);
    padding: var(--rt-space-3xl);
    max-width: 800px;
    margin: 0 auto;
}

.rt-form-card h2 {
    margin-bottom: var(--rt-space-xs);
}

.rt-form-card>p {
    color: var(--rt-gray-500);
    margin-bottom: var(--rt-space-2xl);
}

.rt-form-section-title {
    font-family: var(--rt-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rt-forest);
    padding-bottom: var(--rt-space-sm);
    border-bottom: 2px solid var(--rt-forest);
    margin-bottom: var(--rt-space-lg);
    margin-top: var(--rt-space-2xl);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════════════
   ANIMATIONS — Scroll Reveal
   ═══════════════════════════════════════ */

.rt-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rt-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.rt-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rt-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.rt-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rt-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays */
.rt-delay-1 {
    transition-delay: 0.1s;
}

.rt-delay-2 {
    transition-delay: 0.2s;
}

.rt-delay-3 {
    transition-delay: 0.3s;
}

.rt-delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
    .rt-single-layout {
        grid-template-columns: 1fr;
    }

    .rt-booking-sidebar {
        position: static;
    }

    .rt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--rt-space-2xl);
    }

    .rt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rt-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --rt-space-4xl: 3.5rem;
    }

    .rt-header .rt-nav,
    .rt-header .rt-nav-cta {
        display: none;
    }

    .rt-menu-toggle {
        display: flex;
    }

    /* Mobile menu */
    .rt-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0f2620;
        padding: 100px var(--rt-space-xl) var(--rt-space-xl);
        z-index: 1050;
        gap: 4px;
        overflow-y: auto;
    }

    .rt-nav.active a {
        font-size: 1.2rem;
        padding: 14px 16px;
    }

    .rt-nav.active~.rt-nav-cta {
        display: block;
        position: fixed;
        bottom: var(--rt-space-xl);
        left: var(--rt-space-xl);
        right: var(--rt-space-xl);
        z-index: 1055;
    }

    .rt-hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .rt-hero-stats {
        gap: var(--rt-space-xl);
    }

    .rt-hero-actions {
        flex-direction: column;
    }

    .rt-hero-actions .rt-btn {
        width: 100%;
        text-align: center;
    }

    .rt-hikes-grid {
        grid-template-columns: 1fr;
    }

    .rt-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .rt-footer-grid {
        grid-template-columns: 1fr;
    }

    .rt-footer-bottom {
        flex-direction: column;
        gap: var(--rt-space-sm);
        text-align: center;
    }

    .rt-form-row {
        grid-template-columns: 1fr;
    }

    .rt-form-card {
        padding: var(--rt-space-xl);
    }

    .rt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--rt-space-md);
    }

    .rt-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .rt-filters {
        top: 60px;
        padding: var(--rt-space-md) var(--rt-space-md);
    }
}

@media (max-width: 480px) {
    .rt-specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rt-hero-stats {
        flex-direction: column;
        gap: var(--rt-space-lg);
    }

    .rt-single-hero {
        height: 50vh;
    }
}

/* ═══════════════════════════════════════
   TAZEKKA PARK — Phase 2 Additions
   ═══════════════════════════════════════ */

/* --- Icon Navigation --- */
.rt-logo em {
    font-style: normal;
    color: var(--rt-amber);
}

.rt-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: var(--rt-radius-sm);
    transition: all var(--rt-transition-fast);
    text-decoration: none;
}

.rt-nav-link:hover,
.rt-nav-link.active {
    color: var(--rt-white);
    background: rgba(255, 255, 255, 0.12);
}

.rt-nav-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* --- Activity Badge --- */
.tp-activity-badge {
    padding: 3px 10px;
    border-radius: var(--rt-radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(232, 168, 56, 0.85);
    color: var(--rt-forest-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* --- Rich Labels on hike card --- */
.tp-hike-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.tp-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--rt-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1.5px solid transparent;
}

.tp-label svg {
    flex-shrink: 0;
}

.tp-label--participants {
    background: rgba(52, 152, 219, 0.1);
    color: #1a6b99;
    border-color: rgba(52, 152, 219, 0.2);
}

.tp-label--age {
    background: rgba(155, 89, 182, 0.1);
    color: #6c3483;
    border-color: rgba(155, 89, 182, 0.2);
}

.tp-label--altitude {
    background: rgba(26, 60, 52, 0.08);
    color: var(--rt-forest);
    border-color: rgba(26, 60, 52, 0.15);
}

.tp-label--terrain {
    background: rgba(139, 111, 71, 0.1);
    color: #6b4c1e;
    border-color: rgba(139, 111, 71, 0.2);
}

/* --- Guide Chip on card --- */
.tp-guide-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--rt-cream);
    border-radius: var(--rt-radius-md);
    margin-top: 12px;
    border: 1px solid var(--rt-gray-200);
}

.tp-guide-chip img,
.tp-guide-chip-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tp-guide-chip-avatar {
    background: var(--rt-forest);
    color: var(--rt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.tp-guide-chip-label {
    display: block;
    font-size: 0.7rem;
    color: var(--rt-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.tp-guide-chip-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.tp-guide-chip-name a {
    color: var(--rt-forest);
}

.tp-guide-chip-name a:hover {
    color: var(--rt-amber-dark);
}

/* --- Guide Grid --- */
.tp-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--rt-space-xl);
}

.tp-guide-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    box-shadow: var(--rt-shadow-md);
    transition: all var(--rt-transition);
}

.tp-guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rt-shadow-xl);
}

.tp-guide-card-photo {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.tp-guide-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rt-transition-slow);
}

.tp-guide-card:hover .tp-guide-card-photo img {
    transform: scale(1.05);
}

.tp-guide-card-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rt-forest), var(--rt-sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-family: var(--rt-font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.tp-guide-exp-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--rt-amber);
    color: var(--rt-forest-dark);
    font-family: var(--rt-font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: var(--rt-radius-full);
}

.tp-guide-card-body {
    padding: var(--rt-space-lg);
}

.tp-guide-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.tp-guide-card-body h3 a {
    color: var(--rt-forest-dark);
    transition: color var(--rt-transition-fast);
}

.tp-guide-card-body h3 a:hover {
    color: var(--rt-forest);
}

.tp-guide-specialties {
    font-size: 0.9rem;
    color: var(--rt-gray-500);
    margin-bottom: 10px;
}

.tp-guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tp-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--rt-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.tp-tag svg {
    width: 12px;
    height: 12px;
}

.tp-tag--lang {
    background: rgba(26, 60, 52, 0.08);
    color: var(--rt-forest);
    border: 1px solid rgba(26, 60, 52, 0.15);
}

.tp-tag--cert {
    background: rgba(232, 168, 56, 0.12);
    color: var(--rt-amber-dark);
    border: 1px solid rgba(232, 168, 56, 0.2);
}

.tp-tag--badge {
    background: rgba(155, 89, 182, 0.1);
    color: #6c3483;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

/* --- Single Guide --- */
.tp-guide-hero-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--rt-amber);
    overflow: hidden;
    background: var(--rt-forest-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--rt-white);
    flex-shrink: 0;
}

.tp-guide-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-hero-badge-pill {
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rt-radius-full);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.tp-guide-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--rt-space-3xl);
    align-items: start;
}

.tp-guide-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--rt-gray-600);
}

/* --- Gallery Lightbox --- */
.tp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin: var(--rt-space-xl) 0;
}

.tp-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--rt-radius-md);
    cursor: pointer;
}

.tp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rt-transition);
}

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

.tp-blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 60, 52, 0.8);
    z-index: -1;
}

.rt-blog-filter {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--rt-gray-600);
    border: 1px solid #e5e7eb;
}

.rt-blog-filter:hover,
.rt-blog-filter.active {
    background: var(--rt-forest);
    color: #fff;
    border-color: var(--rt-forest);
    box-shadow: 0 4px 12px rgba(26, 60, 52, 0.2);
}

.tp-gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    transition: opacity var(--rt-transition-fast);
    pointer-events: none;
}

.tp-gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.tp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.tp-lightbox.active {
    display: flex;
}

.tp-lightbox img {
    max-height: 85vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: var(--rt-radius-md);
}

.tp-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--rt-white);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--rt-transition-fast);
}

.tp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.tp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--rt-white);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--rt-transition-fast);
}

.tp-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.tp-lightbox-prev {
    left: 20px;
}

.tp-lightbox-next {
    right: 20px;
}

/* --- Guide card on single hike --- */
.tp-assigned-guide {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, var(--rt-forest), var(--rt-forest-light));
    border-radius: var(--rt-radius-lg);
    color: var(--rt-white);
    margin-bottom: var(--rt-space-xl);
    text-decoration: none;
    transition: transform var(--rt-transition-fast), box-shadow var(--rt-transition-fast);
}

.tp-assigned-guide:hover {
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-lg);
}

.tp-assigned-guide img,
.tp-assigned-guide-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--rt-amber);
    object-fit: cover;
    flex-shrink: 0;
}

.tp-assigned-guide-avatar {
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.tp-assigned-guide-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rt-amber-light);
    font-weight: 600;
}

.tp-assigned-guide-name {
    font-family: var(--rt-font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--rt-white);
    margin: 2px 0;
}

.tp-assigned-guide-specs {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Responsive Phase 2 --- */
@media (max-width: 1024px) {
    .tp-guide-single-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tp-guides-grid {
        grid-template-columns: 1fr;
    }

    .rt-nav-link {
        flex-direction: row;
        gap: 6px;
    }

    .tp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════
   MOBILE NATIVE — Comprehensive Fixes
   Phase 10 · acode.tech
   ═══════════════════════════════════════ */

/* iOS: disable background-attachment:fixed (causes blur/jitter) */
@supports (-webkit-touch-callout: none) {
    .rt-hero-bg {
        background-attachment: scroll;
    }
}

/* Better container padding on small screens */
@media (max-width: 768px) {

    .rt-container,
    .rt-container-wide,
    .rt-container-narrow {
        padding: 0 16px;
    }
}

/* ── HEADER: bigger touch targets + close on outside tap ── */
@media (max-width: 768px) {
    .rt-header {
        padding: 14px 0;
    }

    .rt-menu-toggle {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }

    .rt-nav.active a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* ── HERO: fix min-height and font on very small screens ── */
@media (max-width: 480px) {
    .rt-hero {
        min-height: 90vh;
    }

    .rt-hero-content {
        padding: 80px 0 40px;
    }

    .rt-hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .rt-hero-desc {
        font-size: 1rem;
    }

    .rt-hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* ── FRONT PAGE: activity cards, features, testimonials ── */
@media (max-width: 768px) {

    /* Featured hikes grid → 1 col */
    .rt-activities-grid,
    .rt-features-grid,
    .rt-guides-grid,
    .rt-hikes-grid {
        grid-template-columns: 1fr;
    }

    /* Section vertical padding reduced */
    .rt-section {
        padding: 48px 0;
    }

    .rt-section-header {
        margin-bottom: 32px;
    }
}

/* ── ARCHIVE RANDONNEE: sidebar collapses ── */
@media (max-width: 960px) {

    /* 2-col → 1-col (sidebar stacks above) */
    .tp-rando-archive-layout {
        grid-template-columns: 1fr !important;
    }

    .tp-rando-sidebar {
        position: static !important;
        top: auto;
    }

    /* Filter sidebar compact on mobile */
    .tp-sidebar-widget {
        margin-bottom: 16px;
    }

    /* Show filters collapsed by default on mobile — via JS helper class */
    .tp-sidebar-mobile-collapsed .tp-sidebar-widget>*:not(.tp-widget-title) {
        display: none;
    }
}

/* Archive page header / grid */
@media (max-width: 768px) {
    .tp-rando-archive-header {
        padding: 80px 0 40px;
    }

    .rt-rando-grid {
        grid-template-columns: 1fr;
    }

    /* Pill difficulty filters: wrap */
    .tp-filter-pills {
        gap: 8px;
        flex-wrap: wrap;
    }

    .tp-filter-pill {
        font-size: 0.8rem;
        padding: 8px 14px;
        min-height: 40px;
    }
}

/* ── SINGLE RANDONNÉE ── */
@media (max-width: 960px) {
    .rt-single-layout {
        grid-template-columns: 1fr !important;
    }

    .rt-booking-sidebar {
        position: static !important;
        order: -1;
        /* booking card first on mobile */
    }
}

@media (max-width: 768px) {
    .rt-single-hero {
        height: 55vw;
        min-height: 240px;
    }

    /* Spec pills: 2-col grid */
    .rt-specs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Included / not-included columns */
    .rt-single-included-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── SINGLE GUIDE ── */
@media (max-width: 960px) {
    .tp-guide-single-layout {
        grid-template-columns: 1fr !important;
    }

    .tp-guide-sidebar {
        position: static;
    }
}

/* ── BLOG SINGLE (single.php) ── */
@media (max-width: 960px) {
    .tp-blog-layout {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .tp-blog-sidebar-inner {
        position: static !important;
    }

    .tp-toc-widget,
    .tp-share-widget {
        padding: 16px;
    }

    .tp-share-links {
        gap: 8px;
    }

    .tp-share-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .tp-blog-main {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .tp-author-box {
        flex-direction: column;
        text-align: center;
    }

    .tp-blog-tags {
        gap: 8px;
    }
}

/* ── BLOG INDEX (index.php) ── */
@media (max-width: 768px) {

    /* Hero featured post */
    .tp-blog-featured-grid {
        grid-template-columns: 1fr !important;
    }

    .tp-blog-featured-image {
        height: 220px !important;
    }

    .tp-blog-posts-grid {
        grid-template-columns: 1fr !important;
    }

    .tp-category-pills {
        gap: 8px;
        flex-wrap: wrap;
    }
}

/* ── GUIDES ARCHIVE ── */
@media (max-width: 768px) {
    .tp-guides-grid {
        grid-template-columns: 1fr;
    }

    .tp-guide-card {
        display: flex;
        flex-direction: column;
    }
}

/* ── FOOTER ── */
@media (max-width: 480px) {
    .rt-footer {
        padding: 48px 0 24px;
    }

    .rt-footer-grid {
        gap: 32px;
    }

    .rt-footer-bottom {
        font-size: 0.8rem;
    }
}

/* ── FORM PAGES (contact, devis, booking) ── */
@media (max-width: 768px) {
    .rt-form-row {
        grid-template-columns: 1fr;
    }

    .rt-form-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .rt-form-group input,
    .rt-form-group select,
    .rt-form-group textarea {
        font-size: 16px;
        /* prevents iOS auto-zoom on focus */
    }
}

/* ── CTA SECTION ── */
@media (max-width: 768px) {
    .rt-cta-section {
        padding: 48px 0;
    }

    .rt-cta-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .rt-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .rt-cta-actions .rt-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── TOUCH: minimum tap target for all links/buttons ── */
@media (hover: none) and (pointer: coarse) {

    .rt-btn,
    .rt-nav-link,
    .rt-filter-btn,
    .tp-filter-pill,
    .rt-footer-social-link,
    .tp-share-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Hike cards: no hover transform on touch */
    .rt-hike-card:hover {
        transform: none;
    }

    /* Disable parallax on touch to save battery */
    .rt-hero-bg {
        background-attachment: scroll;
    }
}

/* ── ABOUT PAGE ── */
@media (max-width: 768px) {

    .tp-about-hero-layout,
    .tp-about-mission-layout,
    .tp-about-values-grid,
    .tp-activities-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── PAGE-CHARTE ── */
@media (max-width: 768px) {
    .tp-charte-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── 404 PAGE ── */
@media (max-width: 480px) {
    .rt-404 {
        padding: 80px 16px;
    }
}

/* ═══════════════════════════════════════
   FIX 1: Stats Grid — 3 cards aligned on mobile
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .rt-stats-grid {
        grid-template-columns: 1fr !important;
        gap: var(--rt-space-md);
    }

    .rt-stat-card {
        padding: var(--rt-space-lg) var(--rt-space-md);
    }

    .rt-stat-value {
        font-size: 1.4rem !important;
    }

    .rt-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ═══════════════════════════════════════
   FIX 2: Header mobile menu — toggle always tappable
   ═══════════════════════════════════════ */
@media (max-width: 768px) {

    /* Ensure toggle is ABOVE the nav overlay */
    .rt-menu-toggle {
        position: relative;
        z-index: 1060;
    }

    /* Fix iOS Safari backdrop-filter clipping bug on fixed children */
    .rt-header.scrolled {
        backdrop-filter: none !important;
        background: #1a3c34 !important;
    }

    /* Nav overlay needs solid bg + smooth open transition */
    .rt-nav.active {
        z-index: 1050;
        animation: navSlideIn 0.3s ease-out;
    }

    @keyframes navSlideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    position: fixed;
    bottom: 80px;
    left: var(--rt-space-xl);
    right: var(--rt-space-xl);
    z-index: 1000;
    justify-content: center;
}
}

/* ═══════════════════════════════════════
   FIX 3: Single Randonnée — full mobile adaptation
   ═══════════════════════════════════════ */
@media (max-width: 480px) {

    /* Hero section */
    .tp-sh {
        padding: 100px 0 60px !important;
    }

    .tp-sh-title {
        font-size: 1.6rem !important;
    }

    .tp-sh-badges {
        flex-wrap: wrap;
        gap: 6px;
    }

    .tp-sh-specs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tp-sh-spec {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    /* Price card in hero */
    padding: 12px 16px;
}

font-size: 1.6rem;
}

/* Content cards */
.tp-content-card {
    padding: 20px 16px;
    border-radius: 12px;
}

.tp-content-card h2 {
    font-size: 1.2rem;
}

/* Responsive tables in content */
.tp-content-card table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    margin-bottom: 20px;
}

/* Specs grid */
.tp-specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
}

/* Guide block */
.tp-guide-block {
    border-radius: 12px;
}

.tp-gb-body {
    padding: 14px;
    flex-wrap: wrap;
    gap: 12px;
}

.tp-gb-avatar,
.tp-gb-avatar-ph {
    width: 48px !important;
    height: 48px !important;
    font-size: 1rem !important;
}

.tp-gb-name {
    font-size: 1rem;
}

/* Booking sidebar (on mobile: full width) */
.rt-booking-sidebar {
    position: static !important;
    top: auto;
}

.rt-booking-sidebar .tp-content-card {
    border-radius: 12px;
}

/* Included/not included */
.rt-single-included-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
}

/* Gallery images if any */
.tp-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
}

/* Itinerary timeline */
.tp-itinerary-step {
    padding-left: 30px;
}
}

/* ═══════════════════════════════════════ */
/* BLOG PREVIEW SECTION (Homepage)        */
/* ═══════════════════════════════════════ */
.rt-blog-preview-section {
    background: var(--rt-cream);
}

.rt-blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.rt-blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(.2, .8, .2, 1), box-shadow 0.35s ease;
}

.rt-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.rt-blog-card-img {
    display: block;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.rt-blog-card:hover .rt-blog-card-img img {
    transform: scale(1.06);
}

.rt-blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rt-primary), #2a7a66);
    color: rgba(255, 255, 255, 0.4);
    font-size: 3.5rem;
}

.rt-blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(26, 60, 52, 0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 6px;
}

.rt-blog-card-body {
    padding: 24px;
}

.rt-blog-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
}

.rt-blog-card-title a {
    color: var(--rt-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.rt-blog-card-title a:hover {
    color: var(--rt-primary);
}

.rt-blog-card-excerpt {
    color: var(--rt-gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.rt-blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.rt-blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rt-blog-card-author img {
    border-radius: 50%;
    width: 28px;
    height: 28px;
}

.rt-blog-card-author span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rt-dark);
}

.rt-blog-card-date {
    font-size: 0.8rem;
    color: var(--rt-gray-400);
    font-weight: 500;
}

.rt-blog-card-date i {
    margin-right: 4px;
}

/* Blog / light-bg outline button — override base .rt-btn border:none */
.rt-section .rt-btn.rt-btn-outline,
.tp-blog-content .rt-btn.rt-btn-outline {
    background: transparent;
    border: 2px solid var(--rt-forest, #1a3c34) !important;
    color: var(--rt-forest, #1a3c34);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rt-section .rt-btn.rt-btn-outline:hover,
.tp-blog-content .rt-btn.rt-btn-outline:hover {
    background: var(--rt-forest, #1a3c34);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 60, 52, 0.2);
}

/* Contact highlighting button */
.rt-btn-contact {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.rt-btn-contact:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

@media (max-width: 768px) {
    .rt-blog-preview-grid {
        grid-template-columns: 1fr;
    }
}