:root {
    --primary-color: #ff1100; /* Neon Racing Red */
    --secondary-color: #050505; /* Deeper Pitch Black */
    --accent-gray: #0d0d0d; /* Glass Base Gray */
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 50px 100px rgba(0, 0, 0, 1);
    --neon-glow: 0 0 15px rgba(255, 17, 0, 0.4);
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Custom Cursor - Only on desktop */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }
    
    a, button, .btn-primary, .btn-outline, .service-card, .gallery-item {
        cursor: none !important;
    }
}

@media (hover: none) or (pointer: coarse) {
    .cursor-follower {
        display: none !important;
    }
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, transform 0.1s ease-out;
}

.cursor-follower::after {
    content: '\f0d1'; /* FontAwesome Truck icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    color: white;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(255, 17, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 17, 0, 0.5);
    transform: translate(-50%, -50%) rotate(15deg) scale(1.1);
}

h1, h2, h3 {
    font-family: 'Racing Sans One', sans-serif;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.container {
    max-width: 1300px; /* Slightly wider to accommodate more padding */
    margin: 0 auto;
    padding: 0 5%; /* Responsive side borders/padding */
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    padding: 2rem 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 1.2rem 0;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 17, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--primary-color);
}

.contact-top {
    display: flex;
    gap: 1rem;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 2200; /* Priority layer */
    width: 40px;
    height: 40px;
    flex-shrink: 0; /* Prevent from being squeezed */
    transition: var(--transition);
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease;
}

/* Transform to X when active */
.menu-toggle.active .bar:nth-of-type(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-of-type(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-of-type(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.btn-outline {
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
    background: var(--secondary-color);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75)),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.65));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.hero-text {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    text-align: center;
}

.badge {
    background: rgba(255, 46, 46, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 2.5rem; /* Centered badge */
    border: 1px solid rgba(255, 46, 46, 0.2);
    letter-spacing: 2px;
    animation: badge-pulse 2s infinite alternate;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
    animation: blink 1s infinite; /* Bright blink for the emergency dot */
}

@keyframes blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes badge-pulse {
    from { background: rgba(255, 46, 46, 0.1); }
    to { background: rgba(255, 46, 46, 0.2); }
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    text-align: center;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-hotline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    margin-top: 3rem;
    text-align: center; /* Center buttons and text */
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    from { box-shadow: 0 0 20px rgba(0,0,0,0.5); }
    to { box-shadow: 0 0 40px rgba(255, 17, 0, 0.15); }
}

.main-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: slide-up-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sub-title {
    color: #ffc107;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0.95;
    animation: slide-up-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
    animation: slide-up-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-features i {
    color: var(--primary-color);
}

@keyframes slide-up-reveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffc107;
}

.phone-group {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    text-decoration: none;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 46, 46, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 46, 46, 0.5);
    background: #ff4545;
}

/* Services */
#services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem; /* More space to breathe */
}

.service-card {
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 1), var(--neon-glow);
    background: rgba(255, 17, 0, 0.05);
    border-color: var(--primary-color);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.link-btn {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.link-btn:hover {
    letter-spacing: 2px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    margin: 0 auto;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Section */
#about {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem; /* Increased for wider border feel */
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--secondary-color);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-info p {
    opacity: 0.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-contact p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Form Styles */
.contact-container {
    padding: 100px 0;
    background: #050505;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-card {
    background: #111;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.contact-form-card h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

.contact-info-card {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    height: 100%;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    padding: 200px 0 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(5,5,5,1));
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(255,17,0,0.3);
}

/* Global Mobile Optimization (Sub-pages) */
@media (max-width: 900px) {
    h1 { font-size: 3rem; text-align: center; }
    .hero-content { text-align: center; margin: 0 auto; padding-top: 100px; }
    .hero-content h1 { font-size: 3.5rem; }
    .phone-group { flex-direction: column; gap: 1rem; }
    .about-grid, .services-grid, .contact-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 1.5rem; /* Balanced gaps for mobile */
    }
    
    .about-grid {
        display: flex;
        flex-direction: column-reverse; /* Usually puts image first if text is first in HTML */
    }

    /* Target specific order to ensure Image is ALWAYS on top in mobile */
    .about-text { order: 2; }
    .about-image { order: 1; }
    .contact-top { display: none; }
    
    .menu-toggle { display: flex; }
    .nav-links {
        display: flex;
        position: fixed; 
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5,5,5,0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        text-align: center;
        transition: right 0.6s cubic-bezier(0.83, 0, 0.17, 1);
        z-index: 2000;
        gap: 2.5rem;
    }
    .nav-links.active { 
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 2rem;
        font-family: 'Racing Sans One', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .page-header { padding: 120px 1rem 60px; text-align: center; }
    .page-header h1 { font-size: 8vw; letter-spacing: 2px; line-height: 1.1; margin-bottom: 1rem; }
    .page-header p { font-size: 1rem; max-width: 100%; border-left: none; padding-left: 0; opacity: 0.8; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-section { padding: 1.5rem 0; }
    .contact-form-card, .contact-info-card { padding: 2rem 1.5rem; text-align: center; }
    .form-group label { text-align: left; }
}

/* Map Section Style */
.map-section {
    padding: 0 0 100px;
    background: var(--secondary-color);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.map-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 17, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Dark Map Theme */
}

@media (max-width: 768px) {
    .map-section {
        padding: 0 0 60px;
    }
    
    .map-container {
        height: 350px;
        border-radius: 24px;
    }

    .map-section .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .map-btn-wrapper {
        margin-top: 2rem !important;
    }
}

.map-btn-wrapper {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 600px) {
    h1 { font-size: 1.6rem; }
    .hero-content { 
        text-align: center; 
        padding: 50px 1rem 30px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw;
        margin: 0 auto;
        left: 0;
        transform: none;
    }
    .main-title { 
        font-size: 12vw !important; /* Bold impact on small screens */
        line-height: 1;
        margin-bottom: 0.5rem;
        text-align: center;
        width: 100%;
    }
    .sub-title {
        font-size: 6vw !important;
        margin-bottom: 1rem;
        text-align: center;
    }
    .hero-features {
        gap: 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content .badge { 
        margin: 0 auto 1.2rem; 
        font-size: 0.55rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-hotline {
        width: 100%;
        padding: 1.5rem;
        margin-top: 1rem;
    }
    .phone-group { 
        flex-direction: column; 
        gap: 0.8rem; 
        width: 100%;
        align-items: center;
    }
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    .btn-primary { 
        width: 100%; 
        max-width: 280px; 
        font-size: 0.85rem; 
        padding: 1rem; 
    }

    #hero, 
    #services-intro, 
    #why-choose-us, 
    #about, 
    #about-details,
    #cta, 
    #fleet-gallery, 
    #partnerships,
    main.container,
    section.container,
    .service-detail-section {
        padding: 40px 0.5rem !important; /* Tighter margins for better mobile fit */
        margin-bottom: 0 !important;
    }

    .page-header {
        padding: 80px 1rem 20px !important; /* Reduced from 200px/100px */
    }

    .page-header h1 {
        font-size: 10vw !important;
    }

    #hero {
        min-height: 80vh !important;
        padding-top: 80px !important;
    }

    .ticker-wrapper {
        height: 100px;
        margin-top: 20px; /* Reduced to pull next section up closer */
        margin-bottom: 0px;
        opacity: 0.9;
    }
    .ticker-row {
        height: 16px; /* Super sleek strip */
        font-size: 0.5rem;
    }
    .ticker-row.primary { 
        transform: rotate(-2deg) translateY(35px); /* Minimal angle */
        background: repeating-linear-gradient(-45deg, var(--primary-color), var(--primary-color) 10px, #000000 10px, #000000 20px);
    }
    .ticker-row.secondary { 
        transform: rotate(2deg) translateY(25px); 
        background: repeating-linear-gradient(45deg, #000000, #000000 10px, var(--primary-color) 10px, var(--primary-color) 20px);
    }
    .ticker-row.primary .ticker-content { 
        animation: scroll-left 80s linear infinite !important; /* Much slower and smoother */
    }
    .ticker-row.secondary .ticker-content { 
        animation: scroll-right 100s linear infinite !important;
    }
    .ticker-content span { text-shadow: 1px 1px 0px rgba(0,0,0,0.8); padding-right: 0; }
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-5px);
}

/* Scrolling Ticker Ribbons */
.ticker-wrapper {
    position: relative;
    height: 600px; /* Even more room to prevent any clipping from rotation */
    margin-top: -380px; /* Tuned to move ribbons a bit lower on the slider area */
    margin-bottom: -220px;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    pointer-events: none;
}

.ticker-row {
    position: absolute;
    width: 300vw; /* Massively wide to handle any rotation angle perfectly */
    left: -100vw;
    height: 45px; /* Thinner desktop ribbons */
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    backface-visibility: hidden; /* Added for smoother rendering */
    will-change: transform;
}

.ticker-row.primary {
    background: repeating-linear-gradient(
        -45deg,
        var(--primary-color),
        var(--primary-color) 30px,
        #000000 30px, /* Changed from white to black */
        #000000 60px
    );
    color: #ffffff;
    transform: rotate(-7deg) translateY(320px); 
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ticker-row.primary .ticker-content {
    animation: scroll-left 120s linear infinite; /* Slow professional crawl */
}

.ticker-row.secondary {
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
    );
    color: #ffffff;
    transform: rotate(7deg) translateY(290px); 
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ticker-row.secondary .ticker-content {
    animation: scroll-right 150s linear infinite;
}

.ticker-content {
    display: flex;
    width: max-content;
    gap: 2rem; /* Unified infinite gap */
}

.ticker-content span {
    flex-shrink: 0;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8); /* Critical for readability on stripes */
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Designer Link Styling */
.designer-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.designer-link:hover {
    color: #ffc107; /* Premium Yellow */
    opacity: 1;
}

/* Cursor change specifically for yellow hover */
.cursor-follower.yellow-hover {
    background: #ffc107 !important;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8) !important;
}

.cursor-follower.yellow-hover::after {
    color: #000 !important;
}

/* Testimonials & Reviews */
#google-reviews {
    position: relative;
    overflow: hidden;
}

.google-badge {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.rating-text {
    font-weight: 700;
    opacity: 0.8;
    color: var(--white);
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 35px;
    transition: var(--transition);
    position: relative;
}

.review-card.highlight {
    border-color: var(--primary-color);
    background: rgba(255, 17, 0, 0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: scale(1.05);
}

.review-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Racing Sans One', sans-serif;
}

.user-info h4 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.review-date {
    font-size: 0.85rem;
    opacity: 0.5;
    display: block;
    margin-top: 4px;
}

.google-icon {
    color: var(--primary-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(255,17,0,0.3));
}

.stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    font-style: italic;
    color: var(--text-color);
}

.review-status {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .review-card.highlight {
        transform: scale(1);
    }
}
