/* Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --success: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border: 1px solid rgba(0, 0, 0, 0.05);
    --navbar-height: 60px;
    --section-padding: 3rem 1.5rem;
    --section-padding-mobile: 2rem 0rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding-top: var(--navbar-height);
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0;
        width: 90%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    background: white;
    height: var(--navbar-height);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    will-change: transform;
}

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

/* Logo */
.navbar .logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar .logo {
    height: 1.75rem;
    width: auto;
}

.navbar .logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    white-space: nowrap;
}

/* Navigation Links */
.navbar .nav-links ul {
    display: flex;
    list-style: none;
    gap: 1.25rem;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

/* Navbar CTA Button */
.navbar .nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar .btn-nav {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.navbar .btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.navbar .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.navbar .hamburger .bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .navbar .hamburger {
        display: block;
    }

    .navbar .hamburger.active .bar:nth-child(1) {
        transform: translateY(6.8px) rotate(45deg);
    }

    .navbar .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6.8px) rotate(-45deg);
    }

    .navbar .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: white;
        transition: all 0.4s ease;
        padding: 2rem;
    }

    .navbar .nav-links.active {
        left: 0;
    }

    .navbar .nav-links ul {
        flex-direction: column;
        gap: 0;
    }

    .navbar .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .navbar .logo-text {
        font-size: 1rem;
    }

    .navbar .btn-nav {
        padding: 0.2rem 0.8rem;
        font-size: 0.8rem;
    }

    .navbar .hamburger .bar {
        width: 20px;
    }
}

/* ===== HERO SECTION STYLES ===== */
.hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

@media (max-width: 768px) {
    .hero {
        padding: var(--section-padding-mobile);
    }
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    padding-right: 1rem;
}

.hero .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

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

.hero .subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.hero .guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    color: var(--success);
    font-size: 0.85rem;
}

.hero .search-container {
    margin-bottom: 1.25rem;
}

.hero .search-bar {
    display: flex;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero .search-bar input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    font-size: 0.85rem;
}

.hero .btn-hero {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    white-space: nowrap;
}

.hero .btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero .phone-cta-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .call-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.hero .phone-cta {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hero .quick-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
}

.hero .stat {
    background: white;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 75px;
}

.hero .number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.hero .label {
    font-size: 0.75rem;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /*aspect-ratio: 16/9;*/
    background: #f1f5f9;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero .corner-badges {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero .corner-badge {
    padding: 0.5rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.hero .reliability {
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero .speed {
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero .search-bar {
        max-width: 500px;
        margin: 0 auto 0.75rem;
    }

    .hero .quick-stats {
        justify-content: center;
    }

    .hero .phone-cta-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .subtitle {
        font-size: 0.95rem;
    }

    .hero .quick-stats {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .search-bar {
        flex-direction: column;
        box-shadow: none;
        gap: 0.5rem;
    }

    .hero .search-bar input {
        border: 1px solid #e2e8f0;
        padding: 0.85rem 1rem;
        font-size: 16px;
        /* Check this later for iOS*/
    }

    .hero .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 0.85rem;
    }

    .hero .quick-stats {
        flex-wrap: wrap;
    }

    .hero .stat {
        min-width: 70px;
        padding: 0.6rem;
    }

    .hero .number {
        font-size: 1rem;
    }

    .hero .corner-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

@media (max-width: 768px) {
    .services-section {
        padding: var(--section-padding-mobile);
    }
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.services-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.services-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services-card.featured {
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.services-featured-badge {
    position: absolute;
    top: 8px;
    right: -32px;
    background: var(--primary);
    color: white;
    padding: 0.2rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-align: center;
    width: 120px;
}

.services-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.services-card:hover .services-icon {
    background: var(--primary);
    color: white;
}

.services-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.services-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    text-align: center;
}

.services-content p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-align: center;
}

.services-features {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.services-features li {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.services-features li i {
    color: var(--success);
    font-size: 0.7rem;
    margin-top: 0.2rem;
}

.services-cta {
    margin-top: 0.5rem;
    text-align: center;
}

.services-learn-more {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.services-btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.services-btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .services-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .services-header h2 {
        font-size: 1.5rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: var(--section-padding);
    position: relative;
    background: #f8fafc;
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: var(--section-padding-mobile);
    }
}

.workflow-tabs {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-top: 1.5rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: none;
    background: #f1f5f9;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.tab-button:hover {
    background: #e2e8f0;
}

.tab-button.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.step {
    background: #f8fafc;
    border-radius: 6px;
    padding: 1.25rem;
    position: relative;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-content {
    text-align: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--primary);
    font-size: 1rem;
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.step p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.85rem;
}

.platform-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-card {
    background: white;
    border-radius: 6px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--primary);
    font-size: 1rem;
}

.highlight-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.highlight-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .workflow-tabs {
        padding: 1.25rem;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .workflow-steps,
    .platform-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {

    .workflow-steps,
    .platform-highlights {
        grid-template-columns: 1fr;
    }

    .tab-button {
        width: 100%;
    }
}


/* ===== TEAM SECTION ===== */
.team-section {
    padding: var(--section-padding);
    background: white;
    position: relative;
}

@media (max-width: 768px) {
    .team-section {
        padding: var(--section-padding-mobile);
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.member-image-container {
    margin-bottom: 0.5rem;
}

.member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(37, 99, 235, 0.1);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-member:hover .member-image {
    border-color: rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-content {
    width: 100%;
    text-align: center;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.position {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.degree-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.degree-badge i {
    color: var(--primary);
    font-size: 0.8rem;
}

.team-member:hover .degree-badge {
    background: rgba(37, 99, 235, 0.15);
}

.bio {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.expertise-tag:hover {
    background: rgba(37, 99, 235, 0.15);
}

.team-section .social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-section .social-link {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.team-section .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-icon-container {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    opacity: 0.1;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 1rem;
    font-style: italic;
    text-align: center;
}

.signature {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    font-size: 1rem;
}

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

    .team-member {
        padding: 1rem 0.75rem;
    }

    .member-image {
        width: 90px;
        height: 90px;
    }

    .bio {
        font-size: 0.75rem;
    }

    .expertise {
        gap: 0.3rem;
        margin-bottom: 0.75rem;
    }

    .expertise-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }

    .mission-statement {
        padding: 2rem 1.5rem;
    }

    .mission-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .team-member {
        flex-direction: column;
    }

    .mission-statement {
        padding: 1.25rem;
    }

    .quote-icon {
        font-size: 2rem;
    }
}

/* ===== GARAGE STYLING ===== */
.garages-section {
    padding: var(--section-padding);
}

@media (max-width: 768px) {
    .garages-section {
        padding: var(--section-padding-mobile);
    }
}

/* Filter Controls */
.garage-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
    align-items: center;
}

.search-filter {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-filter i {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.85rem;
}

.search-filter input {
    width: 100%;
    padding: 0.55rem 0.8rem 0.55rem 2rem;
    border: var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.search-filter input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: var(--border);
    padding: 0.45rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #f1f5f9;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    padding: 0.45rem 0.8rem;
}

/* Garage Container */
.garage-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
}

.garage-map {
    position: relative;
    height: 500px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 1000;
}

/* Garage List */
.garage-list {
    display: grid;
    gap: 1rem;
    align-content: start;
    overflow-y: auto;
    max-height: 500px;
    padding: 0.5rem 0.5rem 0.5rem 0;
}

/* Scrollbar styling */
.garage-list::-webkit-scrollbar {
    width: 6px;
}

.garage-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.garage-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.garage-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Garage Card */
.garage-card {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: var(--border);
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 0.5rem;
}

.garage-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.garage-badge {
    position: absolute;
    top: -0.4rem;
    right: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    line-height: 1;
}

.garage-card h3 {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
    padding-right: 3rem;
    line-height: 1.3;
}

.garage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.garage-meta i {
    margin-right: 0.2rem;
    font-size: 0.7rem;
}

.garage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.garage-features span {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    line-height: 1.2;
}

.garage-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.05);
}

.phone-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.2s ease;
    font-size: 0.8rem;
    text-decoration: none;
}

.phone-link:hover {
    background: var(--primary);
    color: white;
}

/* Premium badge variation */
.garage-card.premium .garage-badge {
    background: #f59e0b;
}

/* EV badge variation */
.garage-card.ev .garage-badge {
    background: #10b981;
}

/* Responsive Design */
@media (max-width: 992px) {
    .garage-container {
        grid-template-columns: 1fr;
    }

    .garage-map {
        height: 350px;
    }

    .garage-list {
        max-height: none;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .garage-tools {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .search-filter {
        min-width: 100%;
    }

    .search-filter input {
        padding: 0.5rem 0.7rem 0.5rem 1.8rem;
    }

    .filter-buttons {
        overflow-x: auto;
        padding-bottom: 0.3rem;
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .filter-btn.active {
        padding: 0.4rem 0.7rem;
    }

    .garage-card {
        padding: 0.6rem;
    }

    .garage-card h3 {
        font-size: 0.85rem;
        padding-right: 2.5rem;
    }

    .garage-meta {
        font-size: 0.7rem;
        gap: 0.4rem;
    }

    .garage-features span {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }

    .btn-outline {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .phone-link {
        width: 26px;
        height: 26px;
    }
}

/* ===== CTA STYLING ===== */
.cta {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --light: #f8fafc;
    --dark: #1e293b;

    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    overflow: hidden;
    isolation: isolate;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}

.cta-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cta .gradient-text {
    background: linear-gradient(90deg, #ffffff, #e6f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid transparent;
    min-width: 160px;
}

.cta-btn i {
    font-size: 0.9rem;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid white;
}

.cta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Decorative elements */
.cta-decoration {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-circle-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -80px;
}

.cta-circle-2 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: -40px;
}

.cta-circle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 15%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta {
        padding: 2.5rem 0rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .cta-actions {
        gap: 0.6rem;
    }

    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        min-width: 140px;
    }

    .cta-circle-1 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 2rem 1rem;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 220px;
    }
}

/* =====  FOOTER STYLES ===== */
.footer {
    --primary: #2563eb;
    --dark: #1e293b;
    --gray: #94a3b8;

    background-color: var(--dark);
    color: white;
    padding: 3rem 1.5rem 0;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col {
    margin-bottom: 1rem;
}

.company-info .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
}

.company-info .logo {
    width: 24px;
    height: 24px;
}

.company-info .logo-text {
    font-weight: 700;
    font-size: 1rem;
}

.footer-description {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-title {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 0.7rem;
}

.footer-contact a {
    color: var(--gray);
    transition: color 0.2s ease;
}

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

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

.social-link {
    color: var(--gray);
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--primary);
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
    background: var(--primary);
}

.newsletter h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.7rem;
}

.newsletter-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 0.8rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.7rem;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--gray);
}

.copyright {
    margin-right: 1rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.language-selector {
    display: flex;
    align-items: center;
    color: var(--gray);
    gap: 8px;
    position: relative;
}

.language-selector i {
    margin-right: 0.4rem;
    color: var(--primary);
    font-size: 0.7rem;
}

.language-selector select {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.75rem;
    cursor: pointer;
}

.language-selector select:focus {
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: var(--section-padding-mobile);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .app-buttons {
        flex-direction: column;
    }

    .app-btn {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .legal-links {
        order: 2;
    }

    .language-selector {
        order: 3;
    }
}

@media (max-width: 480px) {
    .footer {
        font-size: 0.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        margin-bottom: 1rem;
    }

    .app-buttons {
        flex-direction: column;
    }

    .copyright {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
    font-size: 0.8rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Animation */
.animate {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animated {
    opacity: 1;
    transform: none !important;
}

/* Specific animation styles */
.fade -in {
    transform: translateY(10px);
}

.slide - up {
    transform: translateY(20px);
}

.slide - left {
    transform: translateX(20px);
}

/* To ensure section titles are always visible */
.section - header,
.section - title,
.section - subtitle {
    opacity: 1 !important;
    transform: none !important;
}