/*
Theme Name: RiaTech
Theme URI: https://riatech.com.au
Author: RiaTech
Author URI: https://riatech.com.au
Description: Custom WordPress theme for RiaTech - Your Trusted Partner for Technology Solutions. Features computer repairs, website building, digital marketing, and smart device support services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: riatech
Tags: custom-menu, custom-logo, featured-images, theme-options, one-column, two-columns
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ========================================
   CSS VARIABLES & ROOT
   ======================================== */
:root {
    /* Brand Colors */
    --rt-primary: #F5921B;
    --rt-primary-light: #F8A94D;
    --rt-primary-dark: #D97A0D;
    --rt-primary-gradient-start: #F5921B;
    --rt-primary-gradient-mid: #F0A347;
    --rt-primary-gradient-end: #E8B96F;
    --rt-secondary: #2D2D2D;
    --rt-white: #FFFFFF;
    --rt-off-white: #F9F9F9;
    --rt-light-gray: #F0F0F0;
    --rt-gray: #777777;
    --rt-dark: #1A1A1A;
    --rt-text: #333333;
    --rt-text-light: #666666;
    --rt-text-on-primary: #FFFFFF;

    /* Typography */
    --rt-font-heading: 'Poppins', sans-serif;
    --rt-font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --rt-spacing-xs: 0.5rem;
    --rt-spacing-sm: 1rem;
    --rt-spacing-md: 1.5rem;
    --rt-spacing-lg: 2rem;
    --rt-spacing-xl: 3rem;
    --rt-spacing-2xl: 5rem;
    --rt-spacing-3xl: 8rem;

    /* Container */
    --rt-container-max: 1200px;
    --rt-container-padding: 1.5rem;

    /* Borders & Radius */
    --rt-radius-sm: 4px;
    --rt-radius-md: 8px;
    --rt-radius-lg: 12px;
    --rt-radius-xl: 24px;
    --rt-radius-full: 50px;

    /* Shadows */
    --rt-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --rt-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --rt-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --rt-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --rt-transition-fast: 0.2s ease;
    --rt-transition-base: 0.3s ease;
    --rt-transition-slow: 0.5s ease;

    /* Header */
    --rt-header-height: 80px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--rt-font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--rt-text);
    background-color: var(--rt-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    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-secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.rt-container {
    width: 100%;
    max-width: var(--rt-container-max);
    margin: 0 auto;
    padding: 0 var(--rt-container-padding);
}

.rt-section {
    padding: var(--rt-spacing-3xl) 0;
}

.rt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--rt-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--rt-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--rt-transition-base);
    text-decoration: none;
    line-height: 1.4;
}

.rt-btn-primary {
    background-color: var(--rt-primary);
    color: var(--rt-white);
    border-color: var(--rt-primary);
}

.rt-btn-primary:hover {
    background-color: var(--rt-primary-dark);
    border-color: var(--rt-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-md);
}

.rt-btn-outline {
    background-color: var(--rt-white);
    color: var(--rt-secondary);
    border-color: var(--rt-secondary);
}

.rt-btn-outline:hover {
    background-color: var(--rt-secondary);
    color: var(--rt-white);
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-md);
}

.rt-btn-white-outline {
    background-color: transparent;
    color: var(--rt-white);
    border-color: var(--rt-white);
}

.rt-btn-white-outline:hover {
    background-color: var(--rt-white);
    color: var(--rt-primary);
    transform: translateY(-2px);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.rt-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--rt-header-height);
    z-index: 1000;
    background-color: var(--rt-white);
    transition: all var(--rt-transition-base);
}

.rt-header.scrolled {
    box-shadow: var(--rt-shadow-md);
    height: 70px;
}

.rt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--rt-container-max);
    margin: 0 auto;
    padding: 0 var(--rt-container-padding);
}

.rt-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.rt-logo img {
    height: 40px;
    width: auto;
}

.rt-logo-text {
    font-family: var(--rt-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rt-secondary);
    letter-spacing: 0.02em;
}

.rt-logo-text span {
    color: var(--rt-primary);
}

/* Navigation */
.rt-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rt-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rt-nav-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--rt-font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rt-text);
    position: relative;
    transition: color var(--rt-transition-fast);
}

.rt-nav-menu li a:hover,
.rt-nav-menu li.current-menu-item a {
    color: var(--rt-primary);
}

.rt-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--rt-primary);
    transform: scaleX(0);
    transition: transform var(--rt-transition-base);
}

.rt-nav-menu li a:hover::after,
.rt-nav-menu li.current-menu-item a::after {
    transform: scaleX(1);
}

.rt-nav-cta .rt-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: var(--rt-radius-sm);
}

.rt-nav-cta .rt-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Toggle */
.rt-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.rt-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--rt-secondary);
    transition: all var(--rt-transition-base);
    border-radius: 2px;
}

.rt-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.rt-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.rt-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.rt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--rt-header-height);
    overflow: hidden;
    background: linear-gradient(135deg, var(--rt-primary-gradient-start) 0%, var(--rt-primary-gradient-mid) 50%, var(--rt-primary-gradient-end) 100%);
}

.rt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.rt-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--rt-container-max);
    margin: 0 auto;
    padding: var(--rt-spacing-2xl) var(--rt-container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.rt-hero-content {
    max-width: 600px;
}

.rt-hero-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--rt-spacing-lg);
}

.rt-hero-logo-icon {
    width: 50px;
    height: 50px;
}

.rt-hero-logo-text {
    font-family: var(--rt-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rt-white);
    letter-spacing: 0.05em;
}

.rt-hero-logo-text span {
    font-weight: 300;
}

.rt-hero-title {
    font-family: var(--rt-font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--rt-white);
    line-height: 1.15;
    margin-bottom: var(--rt-spacing-xs);
}

.rt-hero-typed-wrapper {
    min-height: 3.5rem;
    margin-bottom: var(--rt-spacing-md);
}

.rt-hero-typed {
    font-family: var(--rt-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--rt-white);
    line-height: 1.2;
}

.rt-hero-typed .typed-cursor {
    color: var(--rt-white);
    font-weight: 100;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.rt-hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--rt-spacing-lg);
    max-width: 520px;
}

/* Search Box */
.rt-hero-search {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--rt-radius-lg);
    padding: var(--rt-spacing-md);
    margin-bottom: var(--rt-spacing-lg);
    max-width: 460px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.rt-hero-search-label {
    display: block;
    font-family: var(--rt-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rt-white);
    margin-bottom: var(--rt-spacing-xs);
    letter-spacing: 0.03em;
}

.rt-hero-search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--rt-white);
    border-radius: var(--rt-radius-md);
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.rt-hero-search-input-wrap svg {
    width: 18px;
    height: 18px;
    color: var(--rt-gray);
    flex-shrink: 0;
}

.rt-hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--rt-font-body);
    font-size: 0.9rem;
    color: var(--rt-text);
    background: transparent;
    padding: 0.35rem 0;
}

.rt-hero-search-input::placeholder {
    color: var(--rt-gray);
}

/* Hero Buttons */
.rt-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rt-hero-buttons .rt-btn {
    padding: 0.85rem 2rem;
}

/* Floating Tech Icons */
.rt-hero-floating {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.rt-float-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    animation: rtFloat 6s ease-in-out infinite;
}

.rt-float-icon:nth-child(1) { top: 5%; left: 20%; animation-delay: 0s; }
.rt-float-icon:nth-child(2) { top: 15%; right: 15%; animation-delay: 1s; }
.rt-float-icon:nth-child(3) { top: 35%; left: 10%; animation-delay: 2s; }
.rt-float-icon:nth-child(4) { top: 30%; right: 25%; animation-delay: 0.5s; }
.rt-float-icon:nth-child(5) { top: 55%; left: 30%; animation-delay: 1.5s; }
.rt-float-icon:nth-child(6) { top: 50%; right: 10%; animation-delay: 3s; }
.rt-float-icon:nth-child(7) { top: 70%; left: 15%; animation-delay: 2.5s; }
.rt-float-icon:nth-child(8) { top: 75%; right: 20%; animation-delay: 4s; }
.rt-float-icon:nth-child(9) { top: 20%; left: 50%; animation-delay: 3.5s; }
.rt-float-icon:nth-child(10) { top: 60%; left: 55%; animation-delay: 1.2s; }

.rt-float-icon svg {
    width: 32px;
    height: 32px;
}

.rt-float-icon:nth-child(2n) svg {
    width: 24px;
    height: 24px;
}

.rt-float-icon:nth-child(3n) svg {
    width: 40px;
    height: 40px;
}

@keyframes rtFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

/* Hero Scroll Indicator */
.rt-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--rt-font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    z-index: 3;
    animation: rtBounce 2s ease-in-out infinite;
}

.rt-hero-scroll-arrow {
    display: block;
    margin: 0.5rem auto 0;
    width: 20px;
    height: 20px;
}

@keyframes rtBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Sticky Call Us Sidebar */
.rt-sticky-call {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--rt-primary);
    color: var(--rt-white);
    padding: 0.75rem 1rem;
    border-radius: var(--rt-radius-md) 0 0 var(--rt-radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--rt-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--rt-shadow-lg);
    transition: all var(--rt-transition-base);
    cursor: pointer;
    text-decoration: none;
}

.rt-sticky-call:hover {
    padding-right: 1.5rem;
    background: var(--rt-primary-dark);
}

.rt-sticky-call svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.rt-services {
    padding: var(--rt-spacing-3xl) 0;
    background-color: var(--rt-white);
}

.rt-section-header {
    text-align: center;
    margin-bottom: var(--rt-spacing-2xl);
}

.rt-section-header h2 {
    font-family: var(--rt-font-heading);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--rt-secondary);
    margin-bottom: 0.75rem;
}

.rt-section-header p {
    font-size: 1rem;
    color: var(--rt-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.rt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--rt-spacing-xl);
}

/* Service Card */
.rt-service-card {
    background: var(--rt-white);
    border: 1px solid #EAEAEA;
    border-radius: var(--rt-radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all var(--rt-transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rt-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rt-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--rt-transition-base);
}

.rt-service-card:hover {
    border-color: transparent;
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-4px);
}

.rt-service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon */
.rt-service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--rt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rt-service-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    color: var(--rt-white);
    flex-shrink: 0;
}

/* Icon color variants */
.rt-service-icon--orange { background-color: #F5921B; }
.rt-service-icon--blue   { background-color: #4A90D9; }
.rt-service-icon--purple { background-color: #9B59B6; }
.rt-service-icon--green  { background-color: #2ECC71; }
.rt-service-icon--coral  { background-color: #E67E5A; }
.rt-service-icon--teal   { background-color: #1ABC9C; }

/* Service Content */
.rt-service-content h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.rt-service-content p {
    font-size: 0.9rem;
    color: var(--rt-text-light);
    line-height: 1.65;
    margin-bottom: 0;
}

/* View All Services Button */
.rt-services-cta {
    text-align: center;
}

.rt-services-cta .rt-btn {
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
    border-radius: var(--rt-radius-full);
}

.rt-services-cta .rt-btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--rt-transition-fast);
}

.rt-services-cta .rt-btn:hover svg {
    transform: translateX(4px);
}

/* Services Responsive */
@media (max-width: 991px) {
    .rt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rt-services-grid {
        grid-template-columns: 1fr;
    }

    .rt-service-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ========================================
   STATS / IMPACT BY NUMBERS SECTION
   ======================================== */
.rt-stats {
    padding: var(--rt-spacing-3xl) 0;
    background: linear-gradient(180deg, var(--rt-off-white) 0%, var(--rt-white) 100%);
}

.rt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: var(--rt-spacing-2xl);
}

.rt-stat-item {
    text-align: center;
}

.rt-stat-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    max-width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--rt-spacing-md);
    overflow: hidden;
}

.rt-stat-icon svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    min-height: 28px;
    max-height: 28px;
    flex-shrink: 0;
}

.rt-stat-number {
    font-family: var(--rt-font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--rt-secondary);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.rt-stat-suffix {
    font-size: 0.6em;
    font-weight: 500;
    color: var(--rt-text-light);
    vertical-align: super;
}

.rt-stat-label {
    font-family: var(--rt-font-body);
    font-size: 0.95rem;
    color: var(--rt-text-light);
}

/* CTA Banner */
.rt-stats-cta {
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    box-shadow: var(--rt-shadow-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.rt-stats-cta-content {
    flex: 1;
}

.rt-stats-cta-content h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rt-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.rt-stats-cta-content p {
    font-size: 0.92rem;
    color: var(--rt-text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.rt-stats-cta-content .rt-btn {
    border-radius: var(--rt-radius-sm);
}

.rt-stats-cta-badge {
    width: 220px;
    min-width: 180px;
    height: 140px;
    background: linear-gradient(135deg, var(--rt-primary) 0%, var(--rt-primary-light) 100%);
    border-radius: var(--rt-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
}

.rt-stats-cta-badge span {
    font-family: var(--rt-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rt-white);
    line-height: 1.35;
}

/* Stats Responsive */
@media (max-width: 991px) {
    .rt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .rt-stats-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .rt-stats-cta-badge {
        width: 100%;
        min-width: unset;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .rt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
}

/* ========================================
   REASONS / TIMELINE SECTION
   ======================================== */
.rt-reasons {
    padding: var(--rt-spacing-3xl) 0;
    background-color: var(--rt-off-white);
    overflow: hidden;
}

.rt-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Center vertical line */
.rt-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #E0E0E0 0%, #D0D0D0 100%);
    transform: translateX(-50%);
}

/* Timeline item */
.rt-timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rt-timeline-item.rt-tl-visible {
    opacity: 1;
}

/* Left items: card on left, dot in center */
.rt-timeline-item--left {
    justify-content: flex-start;
    padding-right: calc(50% + 2rem);
    transform: translateX(-40px);
}

.rt-timeline-item--left.rt-tl-visible {
    transform: translateX(0);
}

/* Right items: card on right, dot in center */
.rt-timeline-item--right {
    justify-content: flex-end;
    padding-left: calc(50% + 2rem);
    transform: translateX(40px);
}

.rt-timeline-item--right.rt-tl-visible {
    transform: translateX(0);
}

/* Center dot on timeline */
.rt-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.rt-timeline-dot-inner {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.rt-timeline-dot-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid;
    background: transparent;
    opacity: 0.5;
}

/* Decorative floating dots */
.rt-timeline-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.rt-timeline-item--left .rt-timeline-decor {
    left: calc(50% + 2.5rem);
}

.rt-timeline-item--right .rt-timeline-decor {
    right: calc(50% + 2.5rem);
}

.rt-timeline-decor-dot--filled {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.rt-timeline-decor-dot--ring {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid;
    display: block;
    background: transparent;
}

/* Timeline Card */
.rt-timeline-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--rt-shadow-sm);
    transition: box-shadow var(--rt-transition-base), transform var(--rt-transition-base);
    width: 100%;
}

.rt-timeline-card:hover {
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-3px);
}

.rt-timeline-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rt-timeline-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rt-timeline-card-icon svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    flex-shrink: 0;
}

.rt-timeline-card h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.rt-timeline-card p {
    font-size: 0.9rem;
    color: var(--rt-text-light);
    line-height: 1.65;
    margin: 0;
}

/* Left cards: text align center-ish */
.rt-timeline-item--left .rt-timeline-card {
    text-align: center;
}

.rt-timeline-item--left .rt-timeline-card-header {
    justify-content: center;
}

/* Replay button */
.rt-reasons-replay .rt-btn {
    border-radius: var(--rt-radius-full);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .rt-timeline-line {
        left: 20px;
    }

    .rt-timeline-item--left,
    .rt-timeline-item--right {
        padding-left: 52px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .rt-timeline-item--left {
        transform: translateX(-20px);
    }

    .rt-timeline-item--right {
        transform: translateX(-20px);
    }

    .rt-timeline-item--left.rt-tl-visible,
    .rt-timeline-item--right.rt-tl-visible {
        transform: translateX(0);
    }

    .rt-timeline-dot {
        left: 20px;
    }

    .rt-timeline-item--left .rt-timeline-decor,
    .rt-timeline-item--right .rt-timeline-decor {
        display: none;
    }

    .rt-timeline-item--left .rt-timeline-card {
        text-align: left;
    }

    .rt-timeline-item--left .rt-timeline-card-header {
        justify-content: flex-start;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.rt-cta {
    position: relative;
    overflow: hidden;
}

.rt-cta-bg {
    position: relative;
    background: linear-gradient(135deg, var(--rt-primary-gradient-start) 0%, var(--rt-primary-gradient-mid) 50%, var(--rt-primary-gradient-end) 100%);
    padding: var(--rt-spacing-3xl) 0 6rem;
}

.rt-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

/* Floating particles */
.rt-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.rt-cta-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: rtCtaFloat 8s ease-in-out infinite;
}

.rt-cta-particles span:nth-child(1) { width: 60px;  height: 60px;  top: 10%; left: 5%;  animation-delay: 0s; }
.rt-cta-particles span:nth-child(2) { width: 20px;  height: 20px;  top: 20%; left: 15%; animation-delay: 2s; background: rgba(255,255,255,0.12); }
.rt-cta-particles span:nth-child(3) { width: 40px;  height: 40px;  top: 5%;  left: 45%; animation-delay: 4s; }
.rt-cta-particles span:nth-child(4) { width: 15px;  height: 15px;  top: 30%; right: 20%; animation-delay: 1s; background: rgba(255,255,255,0.15); }
.rt-cta-particles span:nth-child(5) { width: 50px;  height: 50px;  top: 60%; left: 2%;  animation-delay: 3s; }
.rt-cta-particles span:nth-child(6) { width: 25px;  height: 25px;  bottom: 15%; left: 35%; animation-delay: 5s; background: rgba(255,255,255,0.1); }
.rt-cta-particles span:nth-child(7) { width: 35px;  height: 35px;  top: 15%; right: 5%;  animation-delay: 6s; }
.rt-cta-particles span:nth-child(8) { width: 18px;  height: 18px;  bottom: 20%; right: 10%; animation-delay: 1.5s; background: rgba(255,255,255,0.12); }

@keyframes rtCtaFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 1; }
}

/* Badge */
.rt-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rt-radius-full);
    padding: 0.5rem 1.25rem;
    margin-bottom: var(--rt-spacing-md);
    color: var(--rt-white);
    font-family: var(--rt-font-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.rt-cta-badge svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;
    flex-shrink: 0;
}

/* Title */
.rt-cta-title {
    font-family: var(--rt-font-heading);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--rt-white);
    line-height: 1.2;
    margin-bottom: var(--rt-spacing-md);
}

/* Description */
.rt-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: var(--rt-spacing-xl);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.rt-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--rt-spacing-xl);
}

.rt-cta-btn-primary {
    background: var(--rt-white);
    color: var(--rt-primary);
    border: 2px solid var(--rt-white);
    padding: 0.85rem 2rem;
    font-family: var(--rt-font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--rt-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--rt-transition-base);
    text-decoration: none;
}

.rt-cta-btn-primary svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    transition: transform var(--rt-transition-fast);
}

.rt-cta-btn-primary:hover {
    background: transparent;
    color: var(--rt-white);
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-md);
}

.rt-cta-btn-primary:hover svg {
    transform: translateX(4px);
}

.rt-cta-btn-outline {
    background: transparent;
    color: var(--rt-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.85rem 2rem;
    font-family: var(--rt-font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--rt-radius-sm);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all var(--rt-transition-base);
    text-decoration: none;
}

.rt-cta-btn-outline:hover {
    background: var(--rt-white);
    color: var(--rt-primary);
    border-color: var(--rt-white);
    transform: translateY(-2px);
}

/* Promo line */
.rt-cta-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--rt-radius-md);
    padding: 0.65rem 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 500;
}

.rt-cta-promo svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    flex-shrink: 0;
    color: var(--rt-white);
}

/* Bottom wave */
.rt-cta-wave {
    position: relative;
    margin-top: -1px;
    line-height: 0;
}

.rt-cta-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* CTA Responsive */
@media (max-width: 600px) {
    .rt-cta-bg {
        padding: var(--rt-spacing-2xl) 0 5rem;
    }

    .rt-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rt-cta-btn-primary,
    .rt-cta-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .rt-cta-promo {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.rt-faq {
    padding: var(--rt-spacing-3xl) 0;
    background-color: var(--rt-white);
}

.rt-faq-subtitle {
    display: block;
    font-family: var(--rt-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rt-primary);
    margin-bottom: 0.25rem;
}

.rt-faq-list {
    max-width: 700px;
    margin: 0 auto var(--rt-spacing-xl);
}

.rt-faq-item {
    border-bottom: 1px solid #E8E8E8;
}

.rt-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--rt-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--rt-secondary);
    line-height: 1.4;
    transition: color var(--rt-transition-fast);
}

.rt-faq-question:hover {
    color: var(--rt-primary);
}

.rt-faq-chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    flex-shrink: 0;
    color: var(--rt-gray);
    transition: transform var(--rt-transition-base), color var(--rt-transition-base);
}

.rt-faq-item.active .rt-faq-chevron {
    transform: rotate(180deg);
    color: var(--rt-primary);
}

.rt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.rt-faq-item.active .rt-faq-answer {
    max-height: 300px;
}

.rt-faq-answer p {
    padding: 0 0 1.25rem;
    font-size: 0.92rem;
    color: var(--rt-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.rt-faq-footer {
    text-align: center;
}

.rt-faq-footer p {
    font-size: 0.95rem;
    color: var(--rt-text-light);
    margin-bottom: 0.75rem;
}

.rt-faq-footer .rt-btn {
    border-radius: var(--rt-radius-sm);
    padding: 0.8rem 1.75rem;
}

.rt-faq-footer .rt-btn svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    transition: transform var(--rt-transition-fast);
}

.rt-faq-footer .rt-btn:hover svg {
    transform: translateX(4px);
}

/* ========================================
   PAGE HERO BANNER (reusable for inner pages)
   ======================================== */
.rt-page-hero {
    padding-top: var(--rt-header-height);
}

.rt-page-hero-bg {
    position: relative;
    background: linear-gradient(135deg, var(--rt-primary-gradient-start) 0%, var(--rt-primary-gradient-mid) 60%, var(--rt-primary-gradient-end) 100%);
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.rt-page-hero-title {
    font-family: var(--rt-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--rt-white);
    margin-bottom: 0.35rem;
}

.rt-page-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.rt-page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.rt-page-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Breadcrumb */
.rt-breadcrumb {
    padding: 1rem 0;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 2rem;
}

.rt-breadcrumb .rt-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--rt-text-light);
}

.rt-breadcrumb a {
    color: var(--rt-text-light);
    display: flex;
    align-items: center;
    transition: color var(--rt-transition-fast);
}

.rt-breadcrumb a:hover {
    color: var(--rt-primary);
}

.rt-breadcrumb svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ========================================
   ABOUT CONTENT (Mission / Values)
   ======================================== */
.rt-about-content {
    padding: 0 0 var(--rt-spacing-2xl);
}

.rt-about-content-title {
    font-family: var(--rt-font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--rt-secondary);
    margin-bottom: 0.35rem;
}

.rt-about-content-subtitle {
    font-size: 0.95rem;
    color: var(--rt-text-light);
    margin-bottom: 1rem;
}

.rt-about-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--rt-text-light);
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #EAEAEA;
}

.rt-about-meta-author {
    color: var(--rt-primary);
    font-weight: 600;
}

.rt-about-prose h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rt-secondary);
    margin: 2rem 0 0.75rem;
}

.rt-about-prose p {
    font-size: 0.95rem;
    color: var(--rt-text);
    line-height: 1.75;
}

.rt-about-values-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.rt-about-values-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--rt-text);
    line-height: 1.65;
}

.rt-about-values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--rt-primary);
}

.rt-about-values-list li strong {
    color: var(--rt-secondary);
}

/* ========================================
   ABOUT STORY (Image + Stats)
   ======================================== */
.rt-about-story {
    padding: var(--rt-spacing-2xl) 0 var(--rt-spacing-3xl);
    background-color: var(--rt-white);
}

.rt-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.rt-about-story-label {
    font-family: var(--rt-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rt-primary);
    display: block;
    margin-bottom: 0.35rem;
}

.rt-about-story-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700;
    color: var(--rt-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.rt-about-story-content p {
    font-size: 0.92rem;
    color: var(--rt-text-light);
    line-height: 1.7;
}

/* Mini stats 2x2 grid */
.rt-about-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.rt-about-mini-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rt-about-mini-stat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rt-about-mini-stat-icon svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    flex-shrink: 0;
}

.rt-about-mini-stat-num {
    font-family: var(--rt-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rt-primary);
    line-height: 1.2;
}

.rt-about-mini-stat-label {
    font-size: 0.82rem;
    color: var(--rt-text-light);
}

/* Image side */
.rt-about-story-image-wrap {
    position: relative;
    border-radius: var(--rt-radius-lg);
    overflow: visible;
}

.rt-about-story-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--rt-radius-lg);
    display: block;
}

.rt-about-story-image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: var(--rt-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

/* Floating badge */
.rt-about-story-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--rt-shadow-lg);
}

.rt-about-story-badge svg {
    width: 22px;
    height: 22px;
    color: var(--rt-primary);
    flex-shrink: 0;
}

.rt-about-story-badge strong {
    display: block;
    font-family: var(--rt-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rt-secondary);
}

.rt-about-story-badge small {
    font-size: 0.78rem;
    color: var(--rt-text-light);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.rt-why-choose {
    padding: var(--rt-spacing-3xl) 0;
    background-color: var(--rt-white);
}

.rt-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.rt-why-choose-card {
    background: #FFF8F0;
    border: 1px solid #F5E6D0;
    border-radius: var(--rt-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--rt-transition-base);
}

.rt-why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rt-shadow-md);
    border-color: var(--rt-primary-light);
}

.rt-why-choose-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(245, 146, 27, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rt-why-choose-icon svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    min-height: 28px;
    max-height: 28px;
    color: var(--rt-primary);
    flex-shrink: 0;
}

.rt-why-choose-card h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin-bottom: 0.5rem;
}

.rt-why-choose-card p {
    font-size: 0.88rem;
    color: var(--rt-text-light);
    line-height: 1.6;
    margin: 0;
}

/* About page responsive */
@media (max-width: 991px) {
    .rt-about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rt-about-story-image-wrap img,
    .rt-about-story-image-placeholder {
        height: 350px;
    }

    .rt-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rt-about-mini-stats {
        grid-template-columns: 1fr;
    }

    .rt-why-choose-grid {
        grid-template-columns: 1fr;
    }

    .rt-about-story-badge {
        right: 0.5rem;
        bottom: -1rem;
    }
}

/* ========================================
   SERVICES PAGE - Card Grid (colored top borders)
   ======================================== */
.rt-svc-hero {
    padding-top: 0;
    padding-bottom: var(--rt-spacing-2xl);
    background: var(--rt-white);
}

.rt-svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rt-svc-card {
    background: var(--rt-white);
    border: 1px solid #EAEAEA;
    border-top: 4px solid;
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    transition: all var(--rt-transition-base);
}

.rt-svc-card:hover {
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-4px);
}

.rt-svc-card-inner {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rt-svc-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.rt-svc-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--rt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rt-svc-card-icon svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
    color: var(--rt-white);
    flex-shrink: 0;
}

.rt-svc-custom-icon {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.rt-svc-card h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin: 0;
}

.rt-svc-card p {
    font-size: 0.9rem;
    color: var(--rt-text-light);
    line-height: 1.65;
    flex: 1;
}

.rt-svc-card-btn {
    display: block;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: var(--rt-radius-md);
    color: var(--rt-white);
    font-family: var(--rt-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--rt-transition-base);
    margin-top: auto;
}

.rt-svc-card-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: var(--rt-shadow-sm);
}

/* ========================================
   SERVICES PAGE - Image Cards
   ======================================== */
.rt-svc-detailed {
    padding: var(--rt-spacing-2xl) 0 var(--rt-spacing-3xl);
    background: var(--rt-off-white);
}

.rt-svc-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rt-svc-img-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    border: 1px solid #EAEAEA;
    transition: all var(--rt-transition-base);
}

.rt-svc-img-card:hover {
    box-shadow: var(--rt-shadow-lg);
    transform: translateY(-4px);
}

.rt-svc-img-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.rt-svc-img-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-svc-img-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rt-svc-img-card-placeholder-icon svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.rt-svc-img-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--rt-primary);
    color: var(--rt-white);
    font-family: var(--rt-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: var(--rt-radius-sm);
}

.rt-svc-img-card-body {
    padding: 1.25rem 1.5rem;
}

.rt-svc-img-card-body h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin-bottom: 0.4rem;
}

.rt-svc-img-card-body p {
    font-size: 0.88rem;
    color: var(--rt-text-light);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.rt-svc-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--rt-font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--rt-transition-fast);
}

.rt-svc-learn-more:hover {
    gap: 0.55rem;
}

.rt-svc-learn-more svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
    max-width: 14px;
    flex-shrink: 0;
}

/* Services page responsive */
@media (max-width: 991px) {
    .rt-svc-cards-grid,
    .rt-svc-img-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rt-svc-cards-grid,
    .rt-svc-img-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.rt-contact-section {
    padding: var(--rt-spacing-2xl) 0 var(--rt-spacing-3xl);
}

.rt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    margin-bottom: var(--rt-spacing-2xl);
}

/* Contact Info */
.rt-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.rt-contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(245, 146, 27, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rt-contact-info-icon svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    color: var(--rt-primary);
    flex-shrink: 0;
}

.rt-contact-info-item strong {
    display: block;
    font-family: var(--rt-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin-bottom: 0.15rem;
}

.rt-contact-info-item p {
    font-size: 0.88rem;
    color: var(--rt-text-light);
    margin: 0;
    line-height: 1.5;
}

.rt-contact-info-item a {
    color: var(--rt-primary);
    text-decoration: none;
}

.rt-contact-info-item a:hover {
    text-decoration: underline;
}

.rt-contact-hours {
    font-size: 0.82rem !important;
    color: var(--rt-gray) !important;
    margin-top: 0.2rem !important;
}

.rt-contact-social strong {
    font-family: var(--rt-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rt-secondary);
}

/* Contact Form */
.rt-contact-form-wrap {
    background: var(--rt-white);
    border: 1px solid #EAEAEA;
    border-radius: var(--rt-radius-lg);
    padding: 2rem;
}

.rt-contact-form-wrap h3 {
    font-family: var(--rt-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin-bottom: 1.25rem;
}

.rt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rt-form-group {
    margin-bottom: 1rem;
}

.rt-form-group label {
    display: block;
    font-family: var(--rt-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin-bottom: 0.35rem;
}

.rt-form-group input,
.rt-form-group select,
.rt-form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #E0E0E0;
    border-radius: var(--rt-radius-md);
    font-family: var(--rt-font-body);
    font-size: 0.9rem;
    color: var(--rt-text);
    background: var(--rt-off-white);
    transition: border-color var(--rt-transition-fast), box-shadow var(--rt-transition-fast);
}

.rt-form-group input:focus,
.rt-form-group select:focus,
.rt-form-group textarea:focus {
    outline: none;
    border-color: var(--rt-primary);
    box-shadow: 0 0 0 3px rgba(245, 146, 27, 0.1);
}

.rt-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rt-form-group select {
    appearance: auto;
}

.rt-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--rt-text-light);
    font-weight: 400;
    cursor: pointer;
}

.rt-form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--rt-primary);
}

.rt-form-checkbox a {
    color: var(--rt-primary);
    text-decoration: underline;
}

.rt-form-submit {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border-radius: var(--rt-radius-md);
    margin-top: 0.5rem;
}

.rt-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
.rt-form-msg {
    padding: 0.75rem 1rem;
    border-radius: var(--rt-radius-md);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rt-form-msg--success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.rt-form-msg--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Map */
.rt-contact-map {
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    box-shadow: var(--rt-shadow-sm);
}

/* Contact responsive */
@media (max-width: 991px) {
    .rt-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .rt-form-row {
        grid-template-columns: 1fr;
    }

    .rt-contact-form-wrap {
        padding: 1.25rem;
    }
}

/* ========================================
   TESTIMONIALS PAGE
   ======================================== */
.rt-testi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.18);
    border-radius: var(--rt-radius-full);
    padding: 0.4rem 1rem;
    margin-top: 1rem;
    color: var(--rt-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.rt-testi-hero-badge svg { flex-shrink: 0; }

/* Carousel */
.rt-testi-carousel-section { padding: var(--rt-spacing-3xl) 0 var(--rt-spacing-xl); }

.rt-testi-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.rt-testi-carousel {
    overflow: hidden;
    flex: 1;
}

.rt-testi-slide {
    display: none;
    text-align: center;
    background: var(--rt-white);
    border: 1px solid #EAEAEA;
    border-radius: var(--rt-radius-lg);
    padding: 2.5rem 2rem 2rem;
}

.rt-testi-slide.active { display: block; animation: rtFadeIn 0.5s ease; }

.rt-testi-slide-avatar { position: relative; display: inline-block; margin-bottom: 1rem; }

.rt-testi-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--rt-white); font-family: var(--rt-font-heading);
    font-size: 1.2rem; font-weight: 700;
}

.rt-testi-avatar--sm { width: 44px; height: 44px; font-size: 0.8rem; }

.rt-testi-quote-icon {
    position: absolute; bottom: -4px; right: -4px;
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--rt-white); font-size: 12px; line-height: 1;
}

.rt-testi-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 1rem; }
.rt-testi-stars svg { flex-shrink: 0; }

.rt-testi-text {
    font-size: 0.95rem; font-style: italic; color: var(--rt-text);
    line-height: 1.7; margin-bottom: 1.25rem; max-width: 480px; margin-left: auto; margin-right: auto;
}

.rt-testi-name {
    display: block; font-family: var(--rt-font-heading);
    font-size: 1rem; font-weight: 600; color: var(--rt-secondary);
}

.rt-testi-role { font-size: 0.85rem; color: var(--rt-text-light); }

/* Arrows */
.rt-testi-arrow {
    width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
    border: 1px solid #E0E0E0; background: var(--rt-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--rt-text-light);
    transition: all var(--rt-transition-fast);
}

.rt-testi-arrow:hover { border-color: var(--rt-primary); color: var(--rt-primary); }

/* Dots */
.rt-testi-dots {
    display: flex; justify-content: center; gap: 0.4rem; margin-top: 1.5rem;
}

.rt-testi-dot {
    width: 10px; height: 10px; border-radius: 50%; border: none;
    background: #D0D0D0; cursor: pointer; transition: all var(--rt-transition-fast); padding: 0;
}

.rt-testi-dot.active { background: var(--rt-primary); transform: scale(1.2); }

/* Why cards */
.rt-testi-why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.rt-testi-why-card {
    border: 1px solid #EAEAEA; border-radius: var(--rt-radius-lg);
    padding: 2rem 1.5rem; text-align: center;
    transition: all var(--rt-transition-base);
}

.rt-testi-why-card:hover { box-shadow: var(--rt-shadow-md); transform: translateY(-3px); }

.rt-testi-why-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; overflow: hidden;
}

.rt-testi-why-icon svg { width: 28px; height: 28px; min-width: 28px; max-width: 28px; flex-shrink: 0; }

.rt-testi-why-card h3 {
    font-family: var(--rt-font-heading); font-size: 1.05rem;
    font-weight: 600; color: var(--rt-secondary); margin-bottom: 0.5rem;
}

.rt-testi-why-card p { font-size: 0.88rem; color: var(--rt-text-light); line-height: 1.6; margin: 0; }

/* Grid cards */
.rt-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.rt-testi-grid-card {
    background: var(--rt-white); border: 1px solid #EAEAEA;
    border-radius: var(--rt-radius-lg); padding: 1.5rem;
    transition: all var(--rt-transition-base);
}

.rt-testi-grid-card:hover { box-shadow: var(--rt-shadow-md); transform: translateY(-3px); }

.rt-testi-grid-text {
    font-size: 0.88rem; color: var(--rt-text); line-height: 1.65; margin-bottom: 1rem;
}

.rt-testi-grid-author {
    display: flex; align-items: center; gap: 0.6rem;
}

.rt-testi-grid-author strong {
    display: block; font-family: var(--rt-font-heading);
    font-size: 0.9rem; font-weight: 600; color: var(--rt-secondary);
}

.rt-testi-grid-author span { font-size: 0.8rem; color: var(--rt-text-light); }

/* Responsive */
@media (max-width: 991px) {
    .rt-testi-why-grid, .rt-testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .rt-testi-why-grid, .rt-testi-grid { grid-template-columns: 1fr; }
    .rt-testi-slide { padding: 1.5rem 1rem; }
}

/* ========================================
   FOOTER
   ======================================== */
.rt-footer {
    background-color: var(--rt-off-white);
    color: var(--rt-text);
    padding: var(--rt-spacing-2xl) 0 0;
    font-size: 0.9rem;
}

.rt-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: var(--rt-spacing-xl);
}

/* Logo column */
.rt-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.rt-footer-logo svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    flex-shrink: 0;
}

.rt-footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.rt-footer-logo-text {
    font-family: var(--rt-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rt-secondary);
}

.rt-footer-logo-text span {
    color: var(--rt-primary);
}

.rt-footer-tagline {
    font-size: 0.88rem;
    color: var(--rt-text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* Social icons */
.rt-footer-social {
    display: flex;
    gap: 0.6rem;
}

.rt-footer-social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rt-text-light);
    transition: all var(--rt-transition-fast);
}

.rt-footer-social-link:hover {
    color: var(--rt-primary);
    background: rgba(245, 146, 27, 0.08);
}

.rt-footer-social-link svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
}

/* Headings */
.rt-footer-heading {
    font-family: var(--rt-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rt-secondary);
    margin-bottom: 1.25rem;
}

/* Links */
.rt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-footer-links li {
    margin-bottom: 0.6rem;
}

.rt-footer-links li a {
    color: var(--rt-text-light);
    font-size: 0.9rem;
    transition: color var(--rt-transition-fast);
    text-decoration: none;
}

.rt-footer-links li a:hover {
    color: var(--rt-primary);
}

/* Call link */
.rt-footer-call {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    color: var(--rt-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--rt-transition-fast);
}

.rt-footer-call:hover {
    color: var(--rt-primary);
}

.rt-footer-call svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    flex-shrink: 0;
}

/* Contact list */
.rt-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    color: var(--rt-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.rt-footer-contact li svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;
    flex-shrink: 0;
    color: var(--rt-primary);
    margin-top: 2px;
}

.rt-footer-contact li a {
    color: var(--rt-text-light);
    text-decoration: none;
    transition: color var(--rt-transition-fast);
}

.rt-footer-contact li a:hover {
    color: var(--rt-primary);
}

.rt-footer-hours {
    line-height: 1.6;
}

/* Bottom bar */
.rt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: var(--rt-spacing-md) 0;
    border-top: 1px solid #E0E0E0;
}

.rt-footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--rt-text-light);
}

.rt-footer-legal {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-footer-legal li a {
    font-size: 0.85rem;
    color: var(--rt-text-light);
    text-decoration: none;
    transition: color var(--rt-transition-fast);
}

.rt-footer-legal li a:hover {
    color: var(--rt-primary);
}

/* Back to Top */
.rt-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rt-primary);
    color: var(--rt-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--rt-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--rt-transition-base);
    z-index: 998;
}

.rt-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rt-back-to-top:hover {
    background: var(--rt-primary-dark);
    transform: translateY(-2px);
}

.rt-back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .rt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .rt-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rt-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rt-footer-legal {
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.rt-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: rtFadeIn 0.8s ease forwards;
}

.rt-fade-in-delay-1 { animation-delay: 0.1s; }
.rt-fade-in-delay-2 { animation-delay: 0.2s; }
.rt-fade-in-delay-3 { animation-delay: 0.3s; }
.rt-fade-in-delay-4 { animation-delay: 0.4s; }
.rt-fade-in-delay-5 { animation-delay: 0.5s; }
.rt-fade-in-delay-6 { animation-delay: 0.6s; }

@keyframes rtFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .rt-hero-inner {
        grid-template-columns: 1fr;
    }

    .rt-hero-floating {
        display: none;
    }

    .rt-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--rt-white);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--rt-header-height) + 2rem) 2rem 2rem;
        box-shadow: var(--rt-shadow-xl);
        transition: right var(--rt-transition-base);
        gap: 1rem;
    }

    .rt-nav.active {
        right: 0;
    }

    .rt-nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .rt-nav-menu li {
        width: 100%;
    }

    .rt-nav-menu li a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--rt-light-gray);
    }

    .rt-menu-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    :root {
        --rt-header-height: 70px;
    }

    .rt-hero-buttons {
        flex-direction: column;
    }

    .rt-hero-buttons .rt-btn {
        width: 100%;
        justify-content: center;
    }

    .rt-hero-search {
        max-width: 100%;
    }

    .rt-sticky-call span {
        display: none;
    }
}

/* WordPress Specific */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}