/* --- TR HERO VARIABLES (Royal Blue & Silver Theme) --- */
:root {
    --tr-brand-dark: #111d4a;     /* Deep Royal Blue */
    --tr-brand-light: #2b60b7;    /* Bright Blue */
    --tr-brand-cyan: #00f2fe;     /* Cyan for bright accents */
    --tr-white: #ffffff;
    --tr-silver: #aab0b7;
    --tr-font-serif: 'Playfair Display', serif;
    --tr-font-sans: 'Manrope', sans-serif;
}

/* --- SECTION CONTAINER & BACKGROUND --- */
.tr-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    font-family: var(--tr-font-sans);
    overflow: hidden;
}

.tr-hero-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Centered Overlay Focus */
.tr-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(17, 29, 74, 0.75) 0%, rgba(17, 29, 74, 0.95) 100%);
    z-index: 1;
}

.tr-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- CENTERED CONTENT --- */
.tr-hero-content {
    max-width: 900px;
    color: var(--tr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Trust Badge */
.tr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 96, 183, 0.2);
    border: 1px solid rgba(43, 96, 183, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--tr-brand-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

/* Headline */
.tr-hero-title {
    font-family: var(--tr-font-serif);
    font-size: 4.5rem; /* Larger for centered layout */
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 25px 0;
    color: var(--tr-white);
}

.tr-text-cyan-gradient {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* Description */
.tr-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 750px;
}

.tr-hero-desc strong { color: var(--tr-white); }

/* --- CALL TO ACTION BUTTONS --- */
.tr-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    width: 100%;
}

.tr-btn-primary {
    padding: 16px 40px;
    background: linear-gradient(to right, var(--tr-brand-light), #00d2ff);
    color: var(--tr-white);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
    transition: all 0.3s ease;
}

.tr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.5);
    color: var(--tr-white);
}

.tr-btn-outline {
    padding: 16px 40px;
    background: transparent;
    color: var(--tr-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tr-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--tr-white);
    color: var(--tr-white);
}

/* --- HORIZONTAL FEATURES ROW --- */
.tr-hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
    width: 100%;
}

.tr-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tr-white);
}

.tr-feature-item i {
    color: var(--tr-brand-cyan);
    font-size: 1.3rem;
}

/* --- FOOTER LOGOS / LOCATIONS --- */
.tr-hero-footer p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
    margin: 0 0 15px 0;
}

.tr-hero-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    opacity: 0.9;
    align-items: center;
}

.tr-hero-logos span {
    font-weight: 600;
    font-size: 1.05rem;
}

.tr-hero-logos .dot {
    color: var(--tr-brand-cyan);
    font-size: 1.2rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .tr-hero-title { font-size: 3.5rem; }
    .tr-hero-desc { font-size: 1.15rem; }
    .tr-hero-features { gap: 20px; }
}

@media (max-width: 768px) {
    .tr-hero-section { padding: 120px 0 60px 0; min-height: auto; }
    .tr-hero-title { font-size: 2.8rem; }
    .tr-hero-actions { flex-direction: column; gap: 15px; }
    .tr-btn-primary, .tr-btn-outline { width: 100%; text-align: center; }
    .tr-feature-item { font-size: 1rem; width: 100%; justify-content: center; }
    .tr-hero-logos { justify-content: center; }
    .tr-hero-logos .dot { display: none; } /* Hide dots on mobile */
    .tr-hero-logos span { border: 1px solid rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem;}
}


/* --- WhatsApp Hero Button --- */
.tr-btn-whatsapp {
    padding: 16px 40px;
    background: transparent;
    color: #25D366; /* Official WhatsApp Green */
    border: 2px solid #25D366;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tr-btn-whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); /* Green glow */
    transform: translateY(-3px);
}

/* Ensure the primary button aligns perfectly with the new icon */
.tr-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Alignment Fix */
@media (max-width: 768px) {
    .tr-btn-whatsapp {
        width: 100%;
        text-align: center;
    }
}

/* --- TR MEDIA SECTION VARIABLES --- */
:root {
    --tr-brand-dark: #111d4a;     /* Deep Royal Blue */
    --tr-brand-light: #2b60b7;    /* Bright Blue */
    --tr-bg-offwhite: #f8fafc;    
    --tr-white: #ffffff;
    --tr-text-dark: #333333;
    --tr-text-muted: #666666;
    --tr-font-serif: 'Playfair Display', serif;
    --tr-font-sans: 'Manrope', sans-serif;
}

/* --- SECTION & HEADER --- */
.tr-media-section {
    padding: 80px 0;
    background-color: var(--tr-bg-offwhite);
    font-family: var(--tr-font-sans);
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden; /* Prevents horizontal scrollbar on body */
}

.tr-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr-media-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.tr-media-badge {
    display: inline-block;
    background-color: rgba(43, 96, 183, 0.1);
    color: var(--tr-brand-light);
    border: 1px solid rgba(43, 96, 183, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tr-media-title {
    font-family: var(--tr-font-serif);
    font-size: 3rem;
    color: var(--tr-brand-dark);
    line-height: 1.2;
    margin: 0 0 20px;
}

.tr-text-blue-gradient {
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.tr-media-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.tr-media-subtitle {
    font-size: 1.1rem;
    color: var(--tr-text-muted);
    line-height: 1.6;
}

/* --- PURE CSS SMOOTH INFINITE SCROLLER --- */

/* Wrapper handles overflow and fade edges */
.tr-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px; /* Padding accommodates box-shadows */
    /* Adds a sleek fade effect on the left and right edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

/* The Track holds the flex items and animates continuously */
.tr-slider-track {
    display: flex;
    gap: 30px; /* Space between cards */
    width: max-content;
    /* 25s defines the speed. Linear ensures no stopping. Infinite loops it. */
    animation: tr-infinite-scroll 25s linear infinite;
}

/* Pause animation on hover so user can read the card */
.tr-slider-wrapper:hover .tr-slider-track {
    animation-play-state: paused;
}

/* --- MEDIA CARD --- */
.tr-media-card {
    /* Fixed width is crucial for the CSS math to work */
    width: 380px; 
    flex-shrink: 0;
    
    background: var(--tr-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(17, 29, 74, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.tr-media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 29, 74, 0.12);
    border-color: rgba(43, 96, 183, 0.2);
}

.tr-media-img-frame {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #e2e8f0;
}

.tr-media-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.tr-media-card:hover .tr-media-img-frame img {
    transform: scale(1.08);
}

.tr-media-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--tr-brand-dark);
    color: var(--tr-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tr-media-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tr-media-card-title {
    font-family: var(--tr-font-serif);
    font-size: 1.35rem;
    color: var(--tr-brand-dark);
    margin: 0 0 15px;
    font-weight: 700;
    line-height: 1.3;
}

.tr-media-divider {
    width: 40px;
    height: 3px;
    background: var(--tr-brand-light);
    margin-bottom: 15px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.tr-media-card:hover .tr-media-divider {
    width: 80px;
}

.tr-media-desc {
    font-size: 0.95rem;
    color: var(--tr-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- THE INFINITE SCROLL MATH --- */
/* The track contains 6 items. To loop seamlessly, we translate it left by exactly 
   half of its total width (3 items + 3 gaps), which is calc(-50% - 15px). */
@keyframes tr-infinite-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* --- LOGO STRIP FOOTER --- */
.tr-logo-strip {
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
    text-align: center;
}

.tr-logo-strip-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--tr-text-muted);
    margin-bottom: 25px;
    font-weight: 600;
}

.tr-logo-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.tr-press-logo {
    font-family: var(--tr-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #9ca3af;
    transition: all 0.3s ease;
    cursor: default;
}

.tr-press-logo:hover {
    color: var(--tr-brand-dark);
    transform: scale(1.05);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .tr-media-title {
        font-size: 2.2rem;
    }
    .tr-media-card {
        width: 300px; /* Smaller cards for mobile */
    }
    .tr-logo-grid {
        flex-direction: column;
        gap: 20px;
    }
    /* Remove fade edge mask on mobile so text doesn't look cut off */
    .tr-slider-wrapper {
        -webkit-mask-image: none;
        mask-image: none;
    }
}
/* --- TR LOCATIONS VARIABLES (Royal Blue Theme) --- */
:root {
    --tr-brand-dark: #111d4a;     /* Deep Royal Blue */
    --tr-brand-light: #2b60b7;    /* Bright Cyan/Blue */
    --tr-bg-white: #ffffff;
    --tr-text-main: #333333;
    --tr-text-muted: #666666;
    --tr-border-light: #eef2f6;
    --tr-font-serif: 'Playfair Display', serif;
    --tr-font-sans: 'Manrope', sans-serif;
}

/* --- SECTION LAYOUT --- */
.tr-loc-section {
    padding: 60px 0;
    background-color: var(--tr-bg-white);
    position: relative;
    font-family: var(--tr-font-sans);
    overflow: hidden;
}

/* Subtle Dotted Pattern */
.tr-loc-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(43, 96, 183, 0.08) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    z-index: 0;
}

.tr-loc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- HEADER --- */
.tr-loc-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tr-loc-badge {
    display: inline-block;
    background-color: rgba(43, 96, 183, 0.1);
    color: var(--tr-brand-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(43, 96, 183, 0.2);
}

.tr-loc-title {
    font-family: var(--tr-font-serif);
    font-size: 3rem;
    color: var(--tr-brand-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.tr-text-blue-gradient {
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.tr-loc-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.tr-loc-subtitle {
    font-size: 1.1rem;
    color: var(--tr-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- GRID LAYOUT --- */
.tr-loc-grid {
    display: grid;
    /* Creates 4 equal columns on desktop, adapts cleanly down to mobile */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* --- LOCATION CARD --- */
.tr-loc-card {
    background: var(--tr-bg-white);
     border: 1px solid #2a5fb5;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(17, 29, 74, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tr-loc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 29, 74, 0.1);
    border-color: rgba(43, 96, 183, 0.2);
}

/* Expanding Top Accent Line */
.tr-loc-accent-top {
    position: absolute;
    top: 0; left: 0; 
    width: 0; 
    height: 4px;
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    transition: width 0.4s ease;
}

.tr-loc-card:hover .tr-loc-accent-top {
    width: 100%;
}

/* Icon Animation Wrapper */
.tr-loc-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(43, 96, 183, 0.05);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--tr-brand-light);
    position: relative;
    transition: 0.4s ease;
}

.tr-loc-card:hover .tr-loc-icon-wrapper {
    background: var(--tr-brand-dark);
    color: var(--tr-bg-white);
    box-shadow: 0 10px 20px rgba(43, 96, 183, 0.3);
}

/* Swapping Icons on Hover */
.tr-icon-default, .tr-icon-hover {
    position: absolute;
    transition: all 0.3s ease;
}

.tr-icon-hover { 
    opacity: 0; 
    transform: scale(0.5) rotate(-45deg); 
}

.tr-loc-card:hover .tr-icon-default { 
    opacity: 0; 
    transform: scale(0.5) rotate(45deg); 
}
.tr-loc-card:hover .tr-icon-hover { 
    opacity: 1; 
    transform: scale(1) rotate(0); 
}

/* Typography inside card */
.tr-loc-card-title {
    font-family: var(--tr-font-serif);
    font-weight: 700;
    color: var(--tr-brand-dark);
    margin: 0 0 15px 0;
    font-size: 1.4rem;
}

.tr-loc-address {
    font-size: 0.95rem;
    color: var(--tr-text-muted);
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* Link */
.tr-loc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--tr-brand-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.tr-loc-link i {
    transition: transform 0.3s;
}

.tr-loc-link:hover {
    color: var(--tr-brand-dark);
}

.tr-loc-card:hover .tr-loc-link i {
    transform: translateX(5px);
}

/* --- RESPONSIVE QUERIES --- */
@media (max-width: 768px) {
    .tr-loc-section { padding: 60px 0; }
    .tr-loc-title { font-size: 2.2rem; }
    .tr-loc-grid { grid-template-columns: 1fr; } /* Single column on mobile */
}

/* --- TR WHY HIRE VARIABLES (Based on TrackEye Logo) --- */
:root {
    --tr-brand-dark: #111d4a;     /* Deep Royal Blue from logo */
    --tr-brand-light: #2b60b7;    /* Bright Cyan/Blue from logo gradient */
    --tr-bg-soft: #f4f7fb;        /* Very light blue-grey for section bg */
    --tr-card-bg: #ffffff;
    --tr-text-main: #333333;
    --tr-text-muted: #666666;
    --tr-font-serif: 'Playfair Display', serif;
    --tr-font-sans: 'Manrope', sans-serif;
}

/* --- SECTION LAYOUT --- */
.tr-why-section {
    padding: 60px 0;
    background-color: var(--tr-bg-soft);
    position: relative;
    font-family: var(--tr-font-sans);
    overflow: hidden;
}

/* Subtle background dots for texture */
.tr-why-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(43, 96, 183, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 0;
}

.tr-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- HEADER --- */
.tr-why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.tr-why-badge {
    display: inline-block;
    background-color: rgba(43, 96, 183, 0.1);
    color: var(--tr-brand-light);
    border: 1px solid rgba(43, 96, 183, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tr-why-title {
    font-family: var(--tr-font-serif);
    font-size: 3rem;
    color: var(--tr-brand-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Text Gradient matching your logo */
.tr-text-blue-gradient {
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.tr-why-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.tr-why-subtitle {
    font-size: 1.15rem;
    color: var(--tr-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- GRID LAYOUT --- */
.tr-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- CARD DESIGN --- */
.tr-why-card {
    background: var(--tr-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(17, 29, 74, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.tr-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 29, 74, 0.12);
}

/* Image Area */
.tr-why-img-frame {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tr-why-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tr-why-card:hover .tr-why-img-frame img {
    transform: scale(1.08);
}

/* Gradient Overlay on Image */
.tr-why-img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(17,29,74,0) 0%, rgba(17,29,74,0.6) 100%);
    z-index: 1;
}

/* Floating Icon */
.tr-why-icon {
    position: absolute;
    bottom: -30px;
    right: 30px; /* Aligned to the right for a modern look */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tr-brand-light), var(--tr-brand-dark));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(43, 96, 183, 0.4);
    transition: transform 0.4s ease;
    border: 4px solid var(--tr-card-bg);
}

.tr-why-card:hover .tr-why-icon {
    transform: rotateY(180deg); /* Subtle 3D flip on hover */
}

/* Content Area */
.tr-why-content {
    padding: 40px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tr-why-content h3 {
    font-family: var(--tr-font-serif);
    font-size: 1.5rem;
    color: var(--tr-brand-dark);
    margin: 0 0 15px 0;
    font-weight: 700;
}

/* Expanding Blue Divider */
.tr-card-divider {
    width: 40px;
    height: 3px;
    background: var(--tr-brand-light);
    margin-bottom: 20px;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.tr-why-card:hover .tr-card-divider {
    width: 80px;
}

.tr-why-content p {
    font-size: 0.95rem;
    color: var(--tr-text-muted);
    line-height: 1.7;
    margin: 0;
}

.tr-why-content p strong {
    color: var(--tr-brand-dark);
    font-weight: 700;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .tr-why-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .tr-why-section { padding: 70px 0; }
    .tr-why-title { font-size: 2.2rem; }
    .tr-why-img-frame { height: 200px; }
    .tr-why-content { padding: 35px 25px 25px; }
}
/* --- TR TRUST SECTION VARIABLES --- */
:root {
    --tr-brand-dark: #111d4a;     /* Deep Royal Blue */
    --tr-brand-light: #2b60b7;    /* Bright Cyan/Blue */
    --tr-white: #ffffff;
    --tr-gray-light: #f4f7fb;
    --tr-text-dark: #333333;
    --tr-text-muted: #666666;
    --tr-font-serif: 'Playfair Display', serif;
    --tr-font-sans: 'Manrope', sans-serif;
}

.tr-trust-section {
    padding: 60px 0;
    background-color: var(--tr-white);
    position: relative;
    font-family: var(--tr-font-sans);
}

.tr-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOP SPLIT LAYOUT --- */
.tr-trust-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.tr-trust-image-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.tr-trust-content-col {
    flex: 1.2;
    min-width: 300px;
}

/* --- IMAGE FRAME --- */
.tr-executive-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(17, 29, 74, 0.1);
}

.tr-executive-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.tr-executive-frame:hover img {
    transform: scale(1.05);
}

/* Inner border accent */
.tr-frame-border {
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    pointer-events: none;
    z-index: 1;
}

/* Floating Badge */
.tr-trust-badge {
    position: absolute;
    bottom: 30px; 
    right: -20px; /* Overlaps slightly */
    background: linear-gradient(135deg, var(--tr-brand-light), var(--tr-brand-dark));
    color: var(--tr-white);
    padding: 15px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(43, 96, 183, 0.3);
    z-index: 2;
    font-size: 1rem;
}

/* --- CONTENT STYLING --- */
.tr-pill-badge {
    display: inline-block;
    background-color: rgba(43, 96, 183, 0.1);
    color: var(--tr-brand-light);
    border: 1px solid rgba(43, 96, 183, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tr-trust-heading {
    font-family: var(--tr-font-serif);
    font-size: 2.8rem;
    color: var(--tr-brand-dark);
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.tr-text-blue-gradient {
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.tr-lead-paragraph {
    font-size: 1.15rem;
    color: var(--tr-text-dark);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tr-body-paragraph {
    font-size: 1rem;
    color: var(--tr-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Action Row (Button & Phone) */
.tr-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tr-btn-primary {
    background: var(--tr-brand-dark);
    color: var(--tr-white);
    padding: 16px 35px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(17, 29, 74, 0.15);
}

.tr-btn-primary:hover {
    background: var(--tr-brand-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(43, 96, 183, 0.3);
}

.tr-phone-group {
    padding-left: 30px;
    border-left: 2px solid var(--tr-gray-light);
}

.tr-phone-label {
    display: block;
    font-size: 0.75rem;
    color: var(--tr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.tr-phone-number {
    font-family: var(--tr-font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tr-brand-dark);
    text-decoration: none;
    transition: 0.3s;
}

.tr-phone-number:hover {
    color: var(--tr-brand-light);
}

/* --- BOTTOM BENEFITS GRID (4 Cards) --- */
.tr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tr-benefit-card {
    background: var(--tr-white);
    border: 1px solid #2a5fb5;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(17, 29, 74, 0.03);
    position: relative;
    overflow: hidden;
}

/* Hover Lift & Top Accent */
.tr-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 29, 74, 0.08);
    border-color: rgba(43, 96, 183, 0.2);
}

.tr-benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 4px;
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    transition: width 0.4s ease;
}

.tr-benefit-card:hover::before {
    width: 100%;
}

/* Icon */
.tr-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--tr-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--tr-brand-light);
    transition: 0.4s;
}

.tr-benefit-card:hover .tr-icon-circle {
    background: var(--tr-brand-dark);
    color: var(--tr-white);
    transform: rotateY(180deg);
}

/* Card Text */
.tr-benefit-title {
    font-family: var(--tr-font-serif);
    font-weight: 700;
    color: var(--tr-brand-dark);
    margin: 0 0 12px 0;
    font-size: 1.25rem;
}

.tr-benefit-text {
    font-size: 0.95rem;
    color: var(--tr-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .tr-trust-split { flex-direction: column; gap: 40px; }
    .tr-trust-image-col { margin: 0 auto; width: 100%; }
    .tr-trust-badge { right: 0; bottom: -20px; } /* Adjust badge on tablet */
    .tr-trust-heading { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .tr-action-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .tr-phone-group { padding-left: 0; border-left: none; }
    .tr-trust-heading { font-size: 2rem; }
}

/* --- TR FAQ VARIABLES --- */
:root {
    --tr-brand-dark: #111d4a;     /* Deep Royal Blue */
    --tr-brand-light: #2b60b7;    /* Bright Cyan/Blue */
    --tr-bg-white: #ffffff;
    --tr-bg-offwhite: #fdfdfd;
    --tr-border-color: #eaeaea;
    --tr-text-dark: #333333;
    --tr-text-muted: #666666;
    --tr-font-serif: 'Playfair Display', serif;
    --tr-font-sans: 'Manrope', sans-serif;
}

/* --- SECTION LAYOUT --- */
.tr-faq-section {
    padding: 60px 0;
    background-color: var(--tr-bg-offwhite);
    font-family: var(--tr-font-sans);
}

.tr-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr-faq-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

/* --- LEFT SIDEBAR (STICKY) --- */
.tr-sticky-wrapper {
    position: sticky;
    top: 100px; /* Sticks to top when scrolling */
}

.tr-pill-badge {
    display: inline-block;
    background-color: rgba(43, 96, 183, 0.1);
    color: var(--tr-brand-light);
    border: 1px solid rgba(43, 96, 183, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tr-faq-title {
    font-family: var(--tr-font-serif);
    font-size: 3rem;
    color: var(--tr-brand-dark);
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.tr-text-blue-gradient {
    background: linear-gradient(to right, var(--tr-brand-dark), var(--tr-brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.tr-faq-desc {
    color: var(--tr-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* "Ask Us" Card */
.tr-ask-card {
    background: var(--tr-brand-dark);
    color: var(--tr-bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(17, 29, 74, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.tr-ask-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.tr-ask-card h4 {
    font-family: var(--tr-font-serif);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
}

.tr-ask-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.tr-btn-ask {
    display: block;
    text-align: center;
    background: linear-gradient(to right, var(--tr-brand-light), var(--tr-brand-dark));
    color: var(--tr-bg-white);
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.tr-btn-ask:hover {
    box-shadow: 0 10px 20px rgba(43, 96, 183, 0.4);
    transform: translateY(-2px);
}

/* --- RIGHT SIDEBAR (ACCORDION) --- */
.tr-faq-mobile-title {
    display: none;
    font-family: var(--tr-font-serif);
    color: var(--tr-brand-dark);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.tr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Native HTML5 Details styling */
.tr-faq-item {
    background: var(--tr-bg-white);
    border: 1px solid var(--tr-border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tr-faq-item:hover {
    box-shadow: 0 5px 15px rgba(17, 29, 74, 0.05);
    border-color: rgba(43, 96, 183, 0.3);
}

/* Remove default marker */
.tr-faq-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: 0.3s;
}
.tr-faq-header::-webkit-details-marker { display: none; }

.tr-q-number {
    font-family: var(--tr-font-serif);
    font-size: 1.5rem;
    color: #d0d0d0;
    font-weight: 700;
    width: 45px;
    flex-shrink: 0;
    transition: 0.3s;
}

.tr-q-text {
    font-family: var(--tr-font-serif);
    font-size: 1.15rem;
    color: var(--tr-brand-dark);
    font-weight: 700;
    flex-grow: 1;
    transition: 0.3s;
}

.tr-q-arrow {
    color: var(--tr-text-muted);
    transition: transform 0.4s ease, color 0.3s ease;
}

/* ACTIVE/OPEN STATE */
.tr-faq-item[open] {
    box-shadow: 0 10px 30px rgba(17, 29, 74, 0.08);
    border-color: rgba(43, 96, 183, 0.2);
}

.tr-faq-item[open] .tr-faq-header {
    border-left: 5px solid var(--tr-brand-light);
    padding-left: 25px; /* Adjust for border */
    background: rgba(43, 96, 183, 0.02);
}

.tr-faq-item[open] .tr-q-number,
.tr-faq-item[open] .tr-q-text {
    color: var(--tr-brand-light);
}

.tr-faq-item[open] .tr-q-arrow {
    transform: rotate(180deg);
    color: var(--tr-brand-light);
}

/* Body Styling */
.tr-faq-body {
    padding: 0 30px 30px 75px; /* Align text under question, skipping number */
    font-size: 1rem;
    color: var(--tr-text-muted);
    line-height: 1.7;
    animation: fadeInDown 0.4s ease-in-out;
}

.tr-faq-body p { margin: 0 0 15px 0; }
.tr-faq-body p:last-child { margin: 0; }

.tr-faq-bullets {
    margin: 10px 0 15px;
    padding-left: 20px;
    color: var(--tr-brand-dark);
}

.tr-faq-bullets li { margin-bottom: 5px; }

/* Simple animation for open state */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .tr-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tr-faq-sidebar {
        display: none; /* Hide sticky sidebar on mobile */
    }

    .tr-faq-mobile-title {
        display: block; /* Show title on mobile */
    }
}

@media (max-width: 576px) {
    .tr-faq-header { padding: 20px; }
    .tr-faq-body { padding: 0 20px 20px 20px; } /* Reset indent on small mobile */
    .tr-q-number { width: 35px; font-size: 1.3rem; }
    .tr-q-text { font-size: 1.05rem; }
}
/* --- TR FINAL CTA VARIABLES --- */
:root {
    --tr-brand-dark: #111d4a;     /* Deep Royal Blue */
    --tr-brand-light: #2b60b7;    /* Bright Cyan/Blue */
    --tr-white: #ffffff;
    --tr-silver-light: #d1d5db;
    --tr-silver-muted: #9ca3af;
    --tr-font-serif: 'Playfair Display', serif;
    --tr-font-sans: 'Manrope', sans-serif;
}

/* --- SECTION LAYOUT --- */
.tr-cta-section {
    padding: 60px 0;
    background-color: var(--tr-white); /* Keeps the outer page light */
    font-family: var(--tr-font-sans);
}

.tr-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* The Dark "Floating" Container */
.tr-cta-wrapper {
    background-color: var(--tr-brand-dark);
    border-radius: 16px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(17, 29, 74, 0.2);
}

/* Background Visuals inside the dark box */
.tr-cta-glow {
    position: absolute;
    top: 0; 
    right: 0; 
    width: 60%; 
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(43, 96, 183, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.tr-cta-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.05;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 15px 15px;
    pointer-events: none;
    z-index: 0;
}

/* --- GRID / FLEX LAYOUT --- */
.tr-cta-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.tr-cta-content {
    flex: 1 1 500px;
    max-width: 650px;
}
@media (max-width: 767px) {
  .tr-cta-content {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .tr-cta-actions {
    flex: 1 1 250px !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
}


.tr-cta-actions {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- TYPOGRAPHY --- */
.tr-cta-tag {
    display: inline-block;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(43, 96, 183, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(43, 96, 183, 0.1);
}

.tr-cta-title {
    font-family: var(--tr-font-serif);
    color: var(--tr-white);
    font-size: 2.8rem;
    margin: 0 0 20px 0;
    line-height: 1.15;
}

.tr-text-blue-italic {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%); /* Bright Cyan Pop */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.tr-cta-desc {
    color: var(--tr-silver-light);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* Perks List */
.tr-cta-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: var(--tr-white);
    font-size: 1rem;
    font-weight: 600;
}

.tr-icon-cyan {
    color: var(--tr-brand-light);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* --- BUTTONS --- */
.tr-btn-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(to right, var(--tr-brand-light), #1a4a9c);
    color: var(--tr-white);
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(43, 96, 183, 0.3);
}

.tr-btn-cta-primary:hover {
    box-shadow: 0 15px 30px rgba(43, 96, 183, 0.5);
    transform: translateY(-3px);
    background: linear-gradient(to right, #3572d4, var(--tr-brand-light));
}

.tr-btn-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--tr-white);
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tr-btn-cta-secondary:hover {
    border-color: var(--tr-brand-light);
    color: #ffffff;
    background: rgba(43, 96, 183, 0.15);
}

.tr-cta-note {
    text-align: center;
    color: var(--tr-silver-muted);
    font-size: 0.85rem;
    margin: 10px 0 0 0;
}

.tr-cta-note i {
    color: #4ade80; /* Soft green for trust indicator */
    margin-right: 5px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .tr-cta-wrapper {
        padding: 50px 30px;
    }
    .tr-cta-grid {
        flex-direction: column;
        text-align: center;
    }
    .tr-cta-perks {
        justify-content: center;
    }
    .tr-cta-actions {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .tr-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .tr-cta-wrapper {
        padding: 40px 20px;
    }
    .tr-cta-title {
        font-size: 1.8rem;
    }
    .tr-cta-perks {
        flex-direction: column;
        gap: 15px;
    }
}

