
:root {
    --primary: #C41E3A;
    --primary-hover: #A01830;
    --accent: #FF3B30;
    
    --bg-default: #050505;
    --bg-paper: #0A0A0A;
    --bg-surface: #121212;
    
    --text-primary: #EDEDED;
    --text-secondary: #A1A1AA;
    --text-muted: #52525B;
    --text-brand: #C41E3A;
    
    --border-default: #27272A;
    --border-active: #C41E3A;
    
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --container-width: 1280px;
    --section-padding: 6rem;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-default);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-image {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    transform: skewX(-5deg);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: skewX(0);
}

.nav-cta i {
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}


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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 5, 5, 0.9) 0%,
        rgba(5, 5, 5, 0.7) 50%,
        rgba(196, 30, 58, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--primary);
    color: white;
    transform: skewX(-5deg);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: skewX(0) translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.counters {
    background: var(--bg-paper);
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--border-default);
    border-bottom: 1px solid var(--border-default);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.counter-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.counter-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border-default);
}

.counter-item:last-child::after {
    display: none;
}

.counter-number {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-number span {
    font-size: 2rem;
}

.counter-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.brands {
    padding: var(--section-padding) 0;
    background: var(--bg-default);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
    opacity: 0.5;
}

.brand-item:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.1);
}

.services {
    padding: var(--section-padding) 0;
    background: var(--bg-paper);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height var(--transition-normal);
}

.service-card:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-5px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-default);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-paper);
    padding: 2rem;
    border-left: 3px solid var(--primary);
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), transparent);
    border-left-width: 4px;
}

.map-section {
    padding: var(--section-padding) 0;
    background: var(--bg-paper);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-info h2 {
    margin-bottom: 1.5rem;
}

.map-info p {
    margin-bottom: 2rem;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.map-details i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
}

.map-embed {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border-default);
}

.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(90%);
    opacity: 0.8;
}

.page-hero {
    padding: 10rem 0 5rem;
    background: var(--bg-paper);
    text-align: center;
    border-bottom: 1px solid var(--border-default);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.about-content {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    color: var(--primary);
}


.services-page {
    padding: var(--section-padding) 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-default);
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.service-detail-content li i {
    color: var(--primary);
}


.blog-page {
    padding: var(--section-padding) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--bg-paper);
    border: 1px solid var(--border-default);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.blog-card:hover h3 {
    color: var(--primary);
}

.blog-card-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Blog Detail */
.blog-detail {
    padding: var(--section-padding) 0;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-detail-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.blog-detail-image {
    margin-bottom: 3rem;
}

.blog-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.9;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail-content a {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

.blog-detail-content a:hover {
    color: var(--accent);
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}


.contact-page {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact-item-content a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form {
    background: var(--bg-paper);
    padding: 2.5rem;
    border: 1px solid var(--border-default);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-call i {
    margin-right: 0.5rem;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-item:nth-child(2)::after {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-wrapper,
    .about-grid,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail:nth-child(even) {
        direction: ltr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-default);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        overflow-y: auto;
        padding: 1rem 0 2rem;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-default);
        min-height: 56px;
        -webkit-tap-highlight-color: rgba(196,30,58,0.1);
    }
    
    .nav-menu a:active {
        background: rgba(196,30,58,0.08);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-item::after {
        display: none;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        gap: 2rem;
    }
    
    .brand-item {
        font-size: 1.25rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .sticky-call {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 80px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .counter-number {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-paper);
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
}

/* =====================================================
   BLOG TAGS SYSTEM
   ===================================================== */
.blog-tags-section {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-default);
}

.blog-tags-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.blog-tags-section h3 i {
    color: var(--primary);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(255, 59, 48, 0.1));
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all var(--transition-normal);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.blog-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.blog-tag:hover {
    background: rgba(196, 30, 58, 0.25);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.blog-tag:hover::before {
    left: 100%;
}

/* =====================================================
   BRAND LOGOS OPTIMIZATION
   ===================================================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.brand-item {
    width: 100%;
    max-width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
    opacity: 0.5;
    padding: 1rem;
    background: var(--bg-paper);
    border: 1px solid var(--border-default);
    position: relative;
    overflow: hidden;
}

.brand-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.brand-item:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-5px);
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.brand-item:hover::after {
    width: 100%;
}

/* If logo images are added */
.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    transition: all var(--transition-normal);
}

.brand-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* =====================================================
   ENHANCED ANIMATIONS
   ===================================================== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(196, 30, 58, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(196, 30, 58, 0.4);
    }
}

.hero-badge {
    animation: fadeInUp 0.8s ease forwards, glow 2s ease-in-out infinite;
}

.service-icon {
    animation: float 3s ease-in-out infinite;
}

/* =====================================================
   BACKLINK STYLING IN CONTENT
   ===================================================== */
.blog-detail-content a[href*="motorsikletyolservis.com"] {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    font-weight: 600;
    position: relative;
    transition: all var(--transition-fast);
}

.blog-detail-content a[href*="motorsikletyolservis.com"]::before {
    content: '🔗';
    margin-right: 4px;
}

.blog-detail-content a[href*="motorsikletyolservis.com"]:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    padding-left: 5px;
}

/* =====================================================
   FOOTER ENHANCEMENTS
   ===================================================== */
.footer {
    background: var(--bg-paper);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-default);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-image {
    height: 65px;
}

.footer-brand p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: var(--primary);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-default);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    .footer-grid {

/* =====================================================
   CONTACT MODAL
   ===================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-paper);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* =====================================================
   BRANDS SLIDER
   ===================================================== */
.brands-slider {
    overflow: hidden;
    padding: 2rem 0;
    margin: 0 -1.5rem;
}

.brands-track {
    display: flex;
    gap: 3rem;
}

.brands-track .brand-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
}

.brands-track .brand-item img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.8);
    transition: all var(--transition-normal);
}

.brands-track .brand-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.brands-track .brand-item span {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}


    100% {
        transform: translateX(calc(-150px * 8 - 3rem * 8));
    }
}



/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-paper);
}

.testimonials-container {
    padding: 1rem 0;
    overflow: visible;
}

.testimonials-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    flex-wrap: unset !important;
}

@media (max-width: 900px) {
    .testimonials-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr !important;
    }
}

.testimonial-card {
    background: var(--bg-surface);
    border: 2px solid var(--border-default);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(196, 30, 58, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.25);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars i {
    color: #FFC107;
    font-size: 1.125rem;
}

.testimonial-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    border: 3px solid var(--bg-surface);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.testimonial-info h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonials-hint {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonials-hint i {
    animation: pointHint 1.5s ease-in-out infinite;
}

@keyframes pointHint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Tablet View - 2 cards */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

/* Mobile View - 1 card full width */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 2rem 0;
        margin: 0 -1.5rem;
    }
    
    /* testimonials-wrapper responsive - handled above */
    
    .testimonial-card {
        flex: 0 0 calc(100% - 3rem);
        min-width: calc(100% - 3rem);
        padding: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 100px;
        top: -15px;
    }
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--bg-paper);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--bg-surface);
    border: 2px solid var(--border-default);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(196, 30, 58, 0.3);
}

.team-card:hover::after {
    transform: scaleX(1);
}

.team-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-default);
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info {
    padding: 2rem;
    text-align: center;
    background: var(--bg-surface);
}

.team-info h4 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.team-info span {
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 20px;
}

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* =====================================================
   CONTACT FLOAT BUTTON
   ===================================================== */
.contact-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
    transition: all var(--transition-normal);
    z-index: 999;
    animation: floatPulse 2s ease-in-out infinite;
}

.contact-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.6);
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(196, 30, 58, 0.7);
    }
}

/* =====================================================
   WORKING HOURS
   ===================================================== */
.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-default);
    font-size: 0.875rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--text-secondary);
}

.hours-row span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* =====================================================
   ABOUT PAGE - BIZ KIMIZ CARD
   ===================================================== */
.about-intro-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-intro-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.about-intro-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-intro-content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}

.about-intro-image {
    position: relative;
    min-height: 400px;
    background: var(--bg-default);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-feature-card {
    background: var(--bg-surface);
    border: 2px solid var(--border-default);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.25);
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.1);
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.about-feature-card:hover .feature-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.15) rotate(5deg);
}

.about-feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.about-feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-intro-card {
        grid-template-columns: 1fr;
    }
    
    .about-intro-image {
        min-height: 300px;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-intro-content {
        padding: 2rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



/* =====================================================
   CONTACT FLOAT BUTTON - MODAL TRIGGER
   ===================================================== */
.contact-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.5rem 0 1.1rem;
    height: 56px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.45);
    transition: all 0.3s ease;
    animation: floatPulse 2.5s ease-in-out infinite;
    white-space: nowrap;
}

.contact-float i {
    font-size: 1.2rem;
}

.contact-float-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.55);
    background: var(--primary-hover);
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(196,30,58,0.45); }
    50% { box-shadow: 0 8px 36px rgba(196,30,58,0.7), 0 0 0 8px rgba(196,30,58,0.08); }
}

/* =====================================================
   BRANDS SLIDER - FIXED
   ===================================================== */
.brands-slider {
    overflow: hidden;
    padding: 2.5rem 0;
    cursor: grab;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}



.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
}




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

.brands-track .brand-item {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-width: 160px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
    box-shadow: none !important;
}

.brands-track .brand-item img {
    width: 110px !important;
    height: 65px !important;
    object-fit: contain !important;
    filter: grayscale(1) brightness(0.6) !important;
    transition: filter 0.3s ease, transform 0.3s ease !important;
    display: block !important;
    pointer-events: none;
}

.brands-track .brand-item:hover img {
    filter: grayscale(0) brightness(1) !important;
    transform: scale(1.1) !important;
}

.brands-track .brand-item span {
    font-family: var(--font-heading) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

/* =====================================================
   GOOGLE-STYLE TESTIMONIALS
   ===================================================== */
.google-rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.google-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.google-score-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.google-score-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.google-stars-big {
    color: #FBBC05;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.google-review-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4285F4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.google-review-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(66,133,244,0.4);
    color: white;
}

.google-card {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-default) !important;
    border-radius: 16px !important;
    border-left: none !important;
    padding: 1.75rem !important;
    min-width: unset !important;
    max-width: none !important;
    flex: unset !important;
    width: 100% !important;
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.google-card:hover {
    border-color: rgba(66,133,244,0.3) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
    transform: translateY(-4px);
}

.google-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.google-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.google-card-meta {
    flex: 1;
}

.google-card-meta h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.google-local-guide {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.google-g-icon {
    margin-left: auto;
    flex-shrink: 0;
}

.google-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.google-date {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =====================================================
   TEAM SECTION - REDESIGNED
   ===================================================== */
.team-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.team-card-new {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
    overflow: visible;
}

.team-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 30, 58, 0.4);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.15);
}

.team-card-new.featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, var(--bg-surface) 0%, rgba(196,30,58,0.05) 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.2);
}

.team-card-new.featured:hover {
    transform: translateY(-16px);
}

.team-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
}

.team-photo-frame {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.75rem;
}

.team-photo-border {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), transparent 60%, var(--primary));
    animation: rotateBorder 6s linear infinite;
}

.team-card-new.featured .team-photo-border {
    background: linear-gradient(135deg, var(--primary), #FF6B6B, var(--primary));
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.team-photo-inner {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-default);
    z-index: 1;
}

.team-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card-new:hover .team-photo-inner img {
    transform: scale(1.08);
}

.team-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    z-index: 2;
    border: 2px solid var(--bg-surface);
}

.team-info-new h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.team-role {
    display: block;
    color: var(--primary);
    font-size: 0.825rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.team-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.team-skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.team-skills span {
    background: rgba(196, 30, 58, 0.12);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

/* =====================================================
   WORKING HOURS - REDESIGNED
   ===================================================== */
.working-hours-new {
    margin-top: 0.5rem;
}

.hours-week-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    background: linear-gradient(135deg, var(--primary), #A01830);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.hours-week-badge i {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.2rem;
}

.hours-week-badge strong {
    color: white;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.hours-week-badge span {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
}

.hours-grid-new {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 0.75rem;
}

.hours-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 0.25rem;
    border-radius: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    text-align: center;
}

.hours-day.open {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.hours-day.open .day-status i {
    color: var(--success);
}

.day-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.day-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.day-status i {
    font-size: 0.75rem;
}

.hours-emergency {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.825rem;
    color: var(--text-secondary);
}

.hours-emergency i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.hours-emergency strong {
    color: var(--primary);
}

/* =====================================================
   RESPONSIVE FIXES
   ===================================================== */
@media (max-width: 768px) {
    .team-grid-new {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 3rem auto 0;
    }
    
    .team-card-new.featured {
        transform: none;
    }
    
    .google-rating-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .google-card {
        min-width: 280px !important;
    }
    
    .hours-grid-new {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .contact-float-label {
        display: none;
    }
    
    .contact-float {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
}

/* =====================================================
   FLOATING ACTION BUTTONS - WhatsApp + Call
   ===================================================== */
.whatsapp-float,
.call-float {
    position: fixed;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.25rem 0 1rem;
    height: 52px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.whatsapp-float {
    bottom: 90px;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    animation: floatBounce 3s ease-in-out infinite;
}

.call-float {
    bottom: 24px;
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.45);
    animation: floatBounce 3s ease-in-out infinite 0.5s;
}

.whatsapp-float i,
.call-float i {
    font-size: 1.3rem;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    color: white;
}

.call-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(196, 30, 58, 0.6);
    color: white;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .float-label { display: none; }
    .whatsapp-float,
    .call-float {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}


/* =====================================================
   FAB - FLOATING ACTION BUTTON (Expandable)
   ===================================================== */
.fab-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    animation: fabPulse 3s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(196,30,58,0.5); }
    50% { box-shadow: 0 4px 32px rgba(196,30,58,0.75), 0 0 0 10px rgba(196,30,58,0.08); }
}

.fab-main:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 28px rgba(196,30,58,0.65);
}

.fab-icon-close { display: none; }

.fab-container.open .fab-main {
    background: #333;
    animation: none;
    transform: rotate(0deg);
}
.fab-container.open .fab-icon-open  { display: none; }
.fab-container.open .fab-icon-close { display: block; }

/* Sub option buttons */
.fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fab-container.open .fab-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease;
}

.fab-option:hover {
    transform: scale(1.06);
    color: white;
}

.fab-option > i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
    order: 2;
}

.fab-tooltip {
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    order: 1;
}

.fab-call i      { background: #2196F3; }
.fab-whatsapp i  { background: #25D366; }
.fab-maps i      { background: #FF5722; }

/* Staggered animation for sub buttons */
.fab-container.open .fab-options .fab-option:nth-child(1) { transition-delay: 0.05s; }
.fab-container.open .fab-options .fab-option:nth-child(2) { transition-delay: 0.1s; }
.fab-container.open .fab-options .fab-option:nth-child(3) { transition-delay: 0.15s; }

/* =====================================================
   TESTIMONIALS - HORIZONTAL SCROLL PANEL
   ===================================================== */
.testimonials-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 1rem 0 1.5rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonials-scroll.dragging { cursor: grabbing; }

.testimonials-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    padding: 0.5rem 1rem;
}

.testimonials-track .google-card {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    flex: 0 0 300px !important;
}

/* Override old grid rules */
.testimonials-wrapper {
    display: flex !important;
}
