/* ==========================================================================
   1. VARIABLES & PERFORMANCE RESET
   ========================================================================== */
:root {
    /* Brand Colors - TheTransporter Official */
    --primary-blue: #003366;
    --secondary-blue: #00509d;
    --accent-green: #57e32c;
    --accent-yellow: #ffe234;
    
    /* Neutral Palette */
    --dark: #1a1a1a;
    --grey-text: #555555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 15px 0;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Reset - Performance Optimized */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* CLS 0 Fix: Content Visibility & Aspect Ratio */
img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto;
}
p {
    font-size: 20px;
    line-height: 1.6;
    margin: 15px 0 20px 0;
    font-family: "Roboto",
        sans-serif;
    font-weight: 400;
    font-style: normal;
}
/* Remove all blue highlight on mobile tap */
* { -webkit-tap-highlight-color: transparent; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: 1px solid var(--border);
}

/* ==========================================================================
   2. REUSABLE UTILITY CLASSES (Accessibility & Grid Logic)
   ========================================================================== */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.py-large { padding: var(--section-padding); }
.py-medium { padding: 10px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-primary { background-color: var(--primary-blue); }
.bg-dark { background-color: var(--dark); }

/* Screen Reader Only - Vital for Accessibility Score */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Standard 3-column grid for Services and Blogs (3 in 1 line desktop) */
.v5-desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Side-by-Side Grid (Feedback Left, Form Right) */
.feedback-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Heading Scale */
.heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-blue);
    line-height: 1.2;
}

.label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-blue);
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
}
/* ==========================================================================
   3. NAVIGATION BAR (STICKY & CLS-LOCKED)
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    /* min-height ensures 0 layout shift on desktop and mobile */
    min-height: 80px; 
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    /* Explicit dimensions to prevent the 0.713 layout shift */
    width: 220px;
    height: 60px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

/* Call to Action Button */
.btn-call {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

/* ==========================================================================
   4. MOBILE MENU BUTTON LOGIC
   ========================================================================== */
/* The checkbox must stay hidden */
.menu-checkbox { display: none; }

/* The label acts as the clickable trigger for the mobile menu */
.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-blue);
    padding: 5px;
}

@media (max-width: 992px) {
    .menu-btn { display: block; }

    .nav-links {
        position: fixed;
        top: 80px; /* Aligns exactly with navbar min-height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    /* Logic to show the menu when the checkbox is checked */
    .menu-checkbox:checked ~ .nav-links {
        left: 0;
    }
    
    .btn-call {
        margin-top: 10px;
    }
}
/* ==========================================================================
   5. HERO SECTION (CLS-LOCKED & SPEED OPTIMIZED)
   ========================================================================== */
.hero-section {
    /* Using gradient instead of heavy image for instant 0.9s FCP */
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
    padding: 100px 0;
    color: var(--white);
    /* Pre-reserving height to stop the 0.713 Desktop shift */
    min-height: 550px; 
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    contain: layout;
}

.hero-container {
    display: grid;
    /* Forces the 2-column desktop layout immediately to prevent snapping */
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 50px;
    align-items: center;
    min-height: 430px;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
    /* Reserves vertical space for text before fonts load (CLS 0) */
    min-height: 1.2em; 
    contain: layout;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats span {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

/* ==========================================================================
   6. HERO QUOTE FORM (STABILITY & ACCESSIBILITY)
   ========================================================================== */
.hero-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    /* Lock height to exactly match desktop form height (prevents 0.247 shift) */
    min-height: 430px; 
    color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Performance optimization for smooth rendering */
    will-change: transform, opacity; 
}

.form-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
}

.input-group { 
    margin-bottom: 20px; 
    position: relative;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: #fdfdfd;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 80, 157, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--accent-green);
    color: var(--primary-blue);
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-section { min-height: auto; padding: 60px 0; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { justify-content: center; }
    .hero-form-wrapper { min-height: 415px; }
}
/* ==========================================================================
   7. ADVANTAGES SECTION (STABLE GRID & CLS 0)
   ========================================================================== */
.advantages-section {
    background-color: var(--white);
    /* Pre-reserving vertical space for the section to prevent jump */
    min-height: 500px; 
}

.advantage-grid {
    display: grid;
    /* Forces the 3-column desktop layout (Info - Image - Info) */
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.advantage-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Stable dimensions for FontAwesome icons to prevent layout shifts */
.info-box i {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    background: var(--light-bg);
    min-width: 65px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.info-box:hover i {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.info-box.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.info-box h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.info-box p {
    font-size: 0.95rem;
    color: var(--grey-text);
}

/* Fixed space for center banner ensures CLS stays at 0 */
.advantage-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 400 / 320;
    margin: 0 auto;
    background: #f0f0f0; 
    border-radius: 20px;
    overflow: hidden;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   8. SERVICES GRID (3-IN-1 LINE DESKTOP)
   ========================================================================== */
.services-section {
    /* Reserves layout space for the service grid */
    min-height: 800px; 
}

.grid-three-col {
    display: grid;
    /* Explicit 3-column desktop grid as requested */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Crucial for CLS 0: Reserves exact vertical space before image loads */
.service-box img {
    width: 100%;
    height: 250px;
    object-ratio: 380 / 250;
    object-fit: cover;
    background-color: #f5f5f5; 
    transition: var(--transition);
    display: block;
}

.service-box .content {
    padding: 22px;
    text-align: center;
    flex-grow: 1;
}

.service-box h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

@media (max-width: 992px) {
    .advantage-grid { grid-template-columns: 1fr; }
    .grid-three-col { grid-template-columns: repeat(2, 1fr); }
    .advantage-image { order: -1; }
    .info-box.reverse { flex-direction: row; text-align: left; }
}

@media (max-width: 768px) {
    /* Mobile: 1-by-1 line as requested */
    .grid-three-col { grid-template-columns: 1fr; }
}
/* ==========================================================================
   9. REVIEW SLIDER (STABLE CAROUSEL & CLS 0)
   ========================================================================== */
.slider-wrapper {
    position: relative;
    max-width: 100%;
    margin-bottom: 60px;
    min-height: 420px; /* Locked height for zero layout shift */
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 20px);
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 20px 5px;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel .card {
    scroll-snap-align: start;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 380px; 
}

.card-header h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
    font-weight: 700;
}

.stars { 
    color: var(--accent-yellow); 
    margin-bottom: 15px; 
    font-size: 1.1rem; 
    min-height: 24px; 
    display: flex;
    gap: 2px;
}

/* ==========================================================================
   10. "READ MORE" BUTTON & MESSAGE STYLING
   ========================================================================== */
.message-text { 
    font-style: italic; 
    font-size: 1rem; 
    color: #444; 
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-btn {
    background: none !important;
    border: none !important; /* Fixes global input border issue */
    color: var(--secondary-blue);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    margin-left: 5px;
    text-decoration: underline;
    display: inline-block;
}

.read-more-btn:hover { color: var(--primary-blue); }

/* ==========================================================================
   11. FEEDBACK SUMMARY (SIDE-BY-SIDE DESKTOP GRID)
   ========================================================================== */
.feedback-container {
    display: grid;
    /* Forces Feedback on Left, Form on Right for Desktop */
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
    min-height: 450px;
    margin-top: 50px;
}

.rating-summary-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
}

.summary-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 0 30px;
}

.big-rating .score { font-size: 4.5rem; font-weight: 900; color: var(--primary-blue); line-height: 1; }
.big-rating .out-of { font-size: 1.5rem; opacity: 0.5; }

.bar-item { margin-bottom: 18px; }
.bar-info { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 6px; font-weight: 700; }
.progress-bg { background: #e0e0e0; height: 10px; border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; transition: width 0.6s ease; }

.review-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.rating-input-wrapper { margin: 25px 0; background: #fdfdfd; padding: 20px; border-radius: 8px; text-align: center; }

@media (max-width: 992px) {
    .carousel { grid-auto-columns: calc((100% / 2) - 15px); }
    .feedback-container { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .carousel { grid-auto-columns: 100%; }
}
/* ==========================================================================
   12. BLOG SECTION (STABLE GRID & 3-IN-1 DESKTOP)
   ========================================================================== */
.blog-section {
    min-height: 650px; 
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    /* Forces 3-in-1 line for blog posts as requested */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    min-height: 480px; 
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f0f0f0; 
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-blue);
    font-weight: 800;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.btn-read-more {
    margin-top: auto;
    font-weight: 700;
    color: var(--secondary-blue);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   13. v5 CALLBACK SECTION ( image_4d5bb4.png DESIGN)
   ========================================================================== */
   .callback-section.py-large {
    padding: 50px 0; /* Reduced from 80px to 50px for a cleaner desktop look */
}
.v5-callback-main-layout {
   display: grid;
    /* Adjust grid to focus content in the center */
    grid-template-columns: 0.7fr 1.3fr; 
    gap: 30px; /* Reduced gap to bring form and cards closer */
    align-items: start; /* Align to top to reduce perceived empty space */
    min-height: auto; /* Remove min-height to let content dictate size */
}

.v5-form-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v5-input-row {
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border: 1px solid #333; /* Darker border as per image_4d5bb4.png */
    height: 55px;
}

.v5-input-row i {
    color: var(--grey-text);
    margin-right: 15px;
    width: 18px;
}

.v5-input-row input {
    border: none !important;
    padding: 10px 0;
    width: 100%;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.v5-submit-btn {
    background: #4a6b7d; /* Dark teal color from image_4d5bb4.png */
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.v5-submit-btn:hover { background: #3a5b6d; }

.v5-contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two boxes side-by-side on desktop */
    gap: 20px;
}

.v5-contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.v5-icon-box {
    width: 60px;
    height: 60px;
    background: #4a6b7d; /* Matching teal */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.v5-details p {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--dark);
}

.v5-details a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
}
@media (max-width: 992px) {
    .callback-section.py-large {
        padding: 40px 0;
    }
    .v5-callback-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 1100px) {
    .v5-callback-main-layout, .v5-contact-info { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   14. SEO LOCATION GRID (STABLE LINK LIST)
   ========================================================================== */
.location-charges-section {
    min-height: 450px; /* Reserves space for the city grid (CLS 0) */
    background-color: var(--light-bg);
}

.charges-link-grid {
    display: grid;
    /* Uses auto-fill to handle responsiveness without extra media queries */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.charges-link-grid li {
    list-style: none;
}

.charges-link-grid li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition);
}

/* Locked dimensions for location icons to prevent shift (CLS 0) */
.charges-link-grid li a i {
    color: var(--accent-green);
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.charges-link-grid li a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
    border-color: var(--primary-blue);
}

/* ==========================================================================
   15. MAIN FOOTER (SEO & ACCESSIBILITY OPTIMIZED)
   ========================================================================== */
.main-footer {
    padding-top: 80px;
    background-color: var(--dark);
    color: var(--white);
    border-top: 5px solid var(--accent-green);
    min-height: 450px; /* Lock footer height to stop final page snap */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px; /* Explicit height to match image_4118f4.png */
    margin-bottom: 25px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    background-color: #ffffff;
}

.footer-about {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-col h5 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

/* Accent line under footer headings */
.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-green);
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links li a {
    font-size: 17px;
    color: var(--white);
}

.footer-links li a:hover {
    opacity: 1;
    color: var(--accent-green);
    padding-left: 5px;
}

/* Social Icon Container Logic (CLS 0) */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--white);
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .flex-between {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   16. SYSTEM UTILITIES (FOR JS INTERACTIVITY)
   ========================================================================== */
/* Fix for Testimonials Slider Flickering */
.no-transition {
    transition: none !important;
}

/* Active Star State */
.fa-star.active {
    color: var(--accent-yellow);
}