/* Bosch Car Service - Official Brand Colors */

:root {
    /* Bosch Official Brand Colors */
    --bosch-service-blue: #4C90CD;
    --bosch-service-petrol: #00304B;
    --bosch-service-red: #E2001A;
    --bosch-blue-100: #003B6A;
    
    /* Gray Scale */
    --gray-100: #808285;
    --gray-50: #C3C3C4;
    --gray-25: #E1E1E2;
    --light-gray: #F1F1F1;
    
    /* Legacy aliases for compatibility */
    --bosch-blue-dark: #00304B; /* Petrol */
    --bosch-blue: #4C90CD; /* Service Blue */
    --bosch-blue-light: #4C90CD;
    --bosch-gray-light: #F1F1F1;
    --bosch-gray: #E1E1E2;
    --bosch-text-dark: #00304B;
    --bosch-text-gray: #808285;
    
    /* Typography */
    --font-heading: 'Cabin Condensed', 'Open Sans Condensed', Arial, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
    
    /* Font Sizes (Bosch Brand Guidelines) */
    --font-h1: 35px;
    --line-h1: 37px;
    --font-h2: 26px;
    --line-h2: 28px;
    --font-h3: 18px;
    --line-h3: 20px;
    --font-base: 13px;
    --line-base: 16px;
    --font-secondary: 11px;
    --line-secondary: 13px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-base);
    line-height: var(--line-base);
    color: var(--bosch-text-dark);
    background-color: var(--bosch-service-petrol); /* Bosch Service Petrol background */
    margin: 0;
    padding: 0;
}

/* Main Content Wrapper - White panel 1002px centered */
.page-wrapper {
    width: 1002px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding-top: 0; /* No gap between header and content */
    margin-top: 0; /* No gap between header and content */
}

/* Content Container - 982px usable width with 10px padding on each side */
.content-container {
    width: 100%;
    padding: 0 10px; /* 10px left + 10px right = 982px usable width */
}

/* Typography - Bosch Brand Guidelines */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--bosch-blue-100);
}

h1, .h1 {
    font-size: var(--font-h1);
    line-height: var(--line-h1);
}

h2, .h2 {
    font-size: var(--font-h2);
    line-height: var(--line-h2);
}

h3, .h3 {
    font-size: var(--font-h3);
    line-height: var(--line-h3);
}

p {
    font-family: var(--font-body);
    font-size: var(--font-base);
    line-height: var(--line-base);
}

small, .small-text {
    font-size: var(--font-secondary);
    line-height: var(--line-secondary);
}

/* Top bar */
/* Top Bar - Bosch Brand: White background with service links and login */
.top-bar {
    background-color: white;
    color: var(--bosch-service-petrol);
    padding: 8px 0;
    font-size: var(--font-secondary);
    
}

.top-bar .container {
    max-width: 982px;
    margin: 0 auto;
}

.top-bar a,
.top-bar .top-bar-link {
    color: var(--bosch-service-blue);
    text-decoration: none;
    transition: color 0.3s;
    font-size: var(--font-secondary);
}

.top-bar a:hover,
.top-bar .top-bar-link:hover {
    color: var(--bosch-service-petrol);
    text-decoration: underline;
}

.top-bar .language-switcher a {
    color: var(--bosch-service-petrol);
    font-weight: normal;
    margin: 0 3px;
}

/* ========================================
   HEADER STRUCTURE per Bosch Brand Guide
   ======================================== */

/* HEADER wrapper - contains logo + slogan bar + navigation */
.bosch-header {
    position: relative;
    background: white;
    margin-bottom: 0; /* No gap between header and content */
    padding-bottom: 0; /* No gap between header and content */
    z-index: 20;
}

/* Header wrapper contains all layers */
.header-wrapper {
    position: relative;
    max-width: 1002px;
    margin: 0 auto;
    display: block;
    height: auto;
}

.header-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-right: 0; /* Allow slogan bar to span full width */
}

/* LOGO - positioned on left inside container, crosses slogan bar and navigation */
.header-logo-container {
    position: absolute;
    top: -10px; /* Overlay like reference */
    right: 12px;
    z-index: 10;
    background-color: transparent;
    padding: 0;
    width: 102px;
    height: 103px;
    display: block;
}

.header-brand {
    display: block;
    position: relative;
}

.header-brand img {
    width: 102px;
    height: 103px;
    display: block;
    background-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15)) 
            drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* SLOGAN BAR - 35px dark blue gradient - positioned OVER navbar */
.bosch-slogan-bar {
    height: 50px;
    background: #2C6FA6;
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding-top: 0;
    width: 100%;
}

.bosch-slogan-bar .container {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.brand-claim {
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: white;
    line-height: 50px;
    display: block;
    text-align: center;
}

/* NAVIGATION - white background, 80px height, slogan bar overlays it */
.navbar-light {
    background-color: white;    
    padding: 0;
    position: relative;
    z-index: 1;
    height: auto;
    padding-top: 0;
    border-bottom: 1px solid #C3C3C4;
}

.navbar-light .container {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 132px; /* Reserve space for logo overlay */
    justify-content: flex-end;
    display: flex;
}

.navbar-nav {
    flex-direction: row;
    gap: 0;
    width: auto;
    justify-content: flex-end;
}

.navbar-light .navbar-collapse {
    justify-content: flex-end;
}

.navbar-light .nav-link {
    font-family: 'Cabin Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #333; /* Black text */
    padding: 10px 18px;
    border-right: 1px solid #C3C3C4;
    text-decoration: none;
    transition: all 0.2s;
}

/* First nav item - blue color */
.navbar-light .nav-item:first-child .nav-link {
    color: #4C90CD;
    border-left: 1px solid #C3C3C4;
}

.navbar-light .nav-link:hover {
    color: #E2001A;
    background-color: #F5F5F5;
}

/* Remove old duplicate navigation styles - now handled above in main header section */

.navbar-light .navbar-nav {
    flex-direction: row;
    gap: 0;
}

/* Навигационные кнопки - как настоящие объёмные кнопки */
.navbar-light .nav-item {
    border-right: 1px solid var(--gray-50);
}


.navbar-light .nav-link {
    color: #333333; /* Тёмно-серый/чёрный текст */
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s;
    background-color: white;
    border: none;
    display: inline-block;
    white-space: nowrap;
}

/* Первая кнопка (активная) - синяя */
.navbar-light .nav-item:first-child .nav-link {
    color: var(--bosch-service-blue);
    font-weight: 700;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link:focus {
    background-color: var(--light-gray);
    color: #000000;
}

.navbar-light .nav-item:first-child .nav-link:hover {
    color: var(--bosch-blue-100);
}

.navbar-light .admin-nav-toggle.show {
    background-color: var(--light-gray);
    color: var(--bosch-blue-100);
}

.navbar-light .admin-nav-menu {
    width: min(32rem, calc(100vw - 2rem));
    min-width: 24rem;
    margin-top: 0.65rem;
    padding: 0.85rem;
    border: 1px solid rgba(0, 48, 75, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 48, 75, 0.2);
    backdrop-filter: blur(12px);
    z-index: 1100;
}

.navbar-light .admin-nav-menu.show {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.navbar-light .admin-nav-menu[data-bs-popper] {
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
}

.navbar-light .admin-nav-menu > li {
    list-style: none;
}

.navbar-light .admin-nav-menu .admin-nav-menu__section {
    min-width: 0;
}

.navbar-light .admin-nav-menu .admin-nav-menu__section .dropdown-divider {
    margin: 0 0 0.75rem;
    border-top-color: rgba(0, 48, 75, 0.1);
}

.navbar-light .admin-nav-menu .dropdown-header {
    margin: 0;
    padding: 0 0.85rem 0.45rem;
    color: var(--bosch-blue-100);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: normal;
}

.navbar-light .admin-nav-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.8rem;
    color: var(--bosch-text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: normal;
}

.navbar-light .admin-nav-menu .dropdown-item i {
    width: 1rem;
    flex: 0 0 auto;
    margin-right: 0;
    color: var(--bosch-service-blue);
    text-align: center;
}

.navbar-light .admin-nav-menu .dropdown-item:hover,
.navbar-light .admin-nav-menu .dropdown-item:focus {
    background-color: var(--light-gray);
    color: var(--bosch-blue-100);
}

.navbar-light .navbar-collapse.show .admin-nav-menu,
.navbar-light .navbar-collapse.collapsing .admin-nav-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 0.5rem 0 0;
    border: none;
    border-radius: 0;
    background: white;
    box-shadow: none;
    backdrop-filter: none;
}

.navbar-light .navbar-collapse.show .admin-nav-menu.show,
.navbar-light .navbar-collapse.collapsing .admin-nav-menu.show {
    grid-template-columns: 1fr;
    gap: 0;
}

.navbar-light .navbar-collapse.show .admin-nav-menu .dropdown-header,
.navbar-light .navbar-collapse.collapsing .admin-nav-menu .dropdown-header {
    padding: 0 20px 0.45rem;
}

.navbar-light .navbar-collapse.show .admin-nav-menu .dropdown-item,
.navbar-light .navbar-collapse.collapsing .admin-nav-menu .dropdown-item {
    padding: 0.85rem 20px;
    border-radius: 0;
}

/* OLD STYLES - Keeping for reference, will be removed */
.navbar-bosch {
    background-color: var(--bosch-service-petrol);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 135px;
}

/* Bosch Buttons - Official Brand Guidelines */

/* Call-to-Action Button (CTA) - Red gradient */
.btn-bosch, .btn-cta {
    height: 22px;
    padding: 0 15px;
    font-family: var(--font-body);
    font-size: var(--font-secondary);
    line-height: 22px;
    font-weight: normal;
    text-align: center;
    border: none;
    border-radius: 5px;
    background: linear-gradient(180deg, var(--bosch-service-red) 0%, #bc181e 100%);
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-bosch:hover, .btn-cta:hover {
    background: linear-gradient(180deg, var(--bosch-service-red) 0%, #5f000b 100%);
    color: white;
    text-decoration: none;
}

/* Navigation/Control Button - Blue gradient */
.btn-nav, .btn-control {
    height: 22px;
    padding: 0 15px;
    font-family: var(--font-body);
    font-size: var(--font-secondary);
    line-height: 22px;
    font-weight: normal;
    text-align: center;
    border: none;
    border-radius: 5px;
    background: linear-gradient(180deg, var(--bosch-service-blue) 0%, #5ba0de 50%, #1e629f 100%);
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-nav:hover, .btn-control:hover {
    background: linear-gradient(180deg, var(--bosch-service-blue) 0%, #0161b7 50%, var(--bosch-service-petrol) 100%);
    color: white;
    text-decoration: none;
}

/* Large Button variant (26px height) */
.btn-nav-large {
    height: 26px;
    line-height: 26px;
}

/* Icon Button - Blue with border */
.btn-icon {
    height: 22px;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: var(--font-secondary);
    line-height: 20px;
    font-weight: normal;
    border: 1px solid var(--bosch-service-blue);
    border-radius: 5px;
    background-color: transparent;
    color: var(--bosch-service-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-icon:hover {
    background-color: var(--bosch-service-petrol);
    border-color: var(--bosch-service-petrol);
    color: white;
}

/* Icon Button on dark background - white */
.btn-icon-dark {
    border-color: white;
    color: white;
}

.btn-icon-dark:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--bosch-service-petrol);
}

/* Legacy outline button */
.btn-bosch-outline {
    background-color: transparent;
    color: var(--bosch-service-blue);
    border: 2px solid var(--bosch-service-blue);
    padding: 10px 28px;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: var(--font-base);
}

.btn-bosch-outline:hover {
    background-color: var(--bosch-service-blue);
    color: white;
    border-color: var(--bosch-service-blue);
}

/* Homepage Banner - Bosch Brand Guidelines */
.hero-section {
    position: relative;
    width: 982px; /* Usable width */
    height: 320px;
    margin: 0 auto;
    border: 1px solid var(--gray-25);
    overflow: hidden;
    background: white;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, rgba(241, 241, 241, 0.95) 0%, rgba(241, 241, 241, 0.85) 80%, transparent 100%);
    z-index: 2;
}

/* Banner Typography */
.hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-h1);
    font-weight: 700;
    color: var(--bosch-blue-100);
    line-height: var(--line-h1);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-base);
    font-weight: normal;
    color: #000000;
    line-height: var(--line-base);
    margin-bottom: 20px;
}

.hero-subtitle strong {
    font-weight: bold;
}

/* Hero Buttons - Bosch Brand: Horizontal row on white background */
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

/* Text Links in Banner - Bosch Style */
.hero-link {
    color: var(--bosch-service-blue);
    text-decoration: none;
    font-size: var(--font-base);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.hero-link::before {
    content: '›';
    font-size: 14px;
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
}

.hero-link:hover {
    color: var(--bosch-service-petrol);
}

/* Mail Link */
.hero-mail-link {
    color: var(--bosch-service-blue);
    text-decoration: none;
    font-size: var(--font-base);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.hero-mail-link::before {
    content: '✉';
    font-size: 16px;
    display: inline-block;
}

.hero-mail-link:hover {
    color: var(--bosch-service-petrol);
}

/* Download Link */
.hero-download-link {
    color: var(--bosch-service-blue);
    text-decoration: none;
    font-size: var(--font-base);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.hero-download-link::before {
    content: '⬇';
    font-size: 12px;
    display: inline-block;
}

.hero-download-link:hover {
    color: var(--bosch-service-petrol);
}

/* CTA Button - Bosch Style */
.btn-cta {
    height: 22px;
    padding: 0 15px;
    border-radius: 5px;
    border: none;
    background: linear-gradient(180deg, var(--bosch-service-red) 0%, #bc181e 100%);
    color: white;
    font-family: var(--font-body);
    font-size: var(--font-secondary);
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    line-height: 22px;
}

.btn-cta:hover {
    background: linear-gradient(180deg, var(--bosch-service-red) 0%, #5f000b 100%);
    color: white;
    text-decoration: none;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-h1);
    font-weight: 700;
    color: var(--bosch-blue-100);
    margin-bottom: 50px;
    text-align: center;
    line-height: var(--line-h1);
}

.service-card {
    background: white;
    border: 1px solid var(--bosch-gray);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(76, 144, 205, 0.15);
    border-color: var(--bosch-service-blue);
}

.service-icon {
    font-size: 80px;
    color: var(--bosch-service-blue);
    margin-bottom: 25px;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-h3);
    font-weight: 700;
    color: var(--bosch-blue-100);
    margin-bottom: 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: var(--line-h3);
}

.service-card p {
    display: none;
    font-family: var(--font-body);
    font-size: var(--font-base);
    line-height: var(--line-base);
}

.service-card .btn {
    margin-top: auto;
    border-radius: 25px;    
    font-weight: 600;
}

.price-badge {
    display: none;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bosch-gray-light);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background-color: var(--bosch-service-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto 25px;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: var(--font-h3);
    font-weight: 700;
    color: var(--bosch-blue-100);
    margin-bottom: 12px;
    line-height: var(--line-h3);
}

.feature-box p {
    color: var(--bosch-text-gray);
    font-size: var(--font-base);
    line-height: var(--line-base);
    font-family: var(--font-body);
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: white;
}

.location-info {
    background-color: var(--bosch-gray-light);
    padding: 40px;
    border-radius: 4px;
}

.location-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.location-info .info-item i {
    color: var(--bosch-service-blue);
    font-size: var(--font-h3);
    width: 30px;
    margin-right: 15px;
    margin-top: 3px;
}

.location-info .info-item div {
    flex: 1;
}

.location-info .info-item strong {
    display: block;
    color: var(--bosch-blue-100);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    font-size: var(--font-base);
}

.location-info .info-item span {
    font-family: var(--font-body);
    font-size: var(--font-base);
    color: var(--bosch-text-gray);
}

.map-placeholder {
    background-color: var(--bosch-gray);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bosch-text-gray);
    font-size: var(--font-h3);
    font-family: var(--font-body);
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
    background-color: var(--bosch-gray-light);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-control:focus {
    border-color: var(--bosch-service-blue);
    box-shadow: 0 0 0 0.2rem rgba(76, 144, 205, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--bosch-blue-100);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: var(--font-base);
}

.form-control {
    font-family: var(--font-body);
    font-size: var(--font-base);
}

/* CTA Section */
.cta-section {
    background-color: var(--bosch-service-petrol);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: var(--font-h1);
    font-weight: 700;
    margin-bottom: 30px;
    color: white !important;
    line-height: var(--line-h1);
}

.cta-section .btn {
    margin: 0 10px;
}

.btn-call {
    background-color: white;
    color: var(--bosch-service-petrol);
    font-weight: 700;
}

.btn-call:hover {
    background-color: var(--light-gray);
    color: var(--bosch-service-petrol);
}

/* Footer */
footer {
    background-color: var(--bosch-service-petrol);
    color: white;
    padding: 60px 0 20px;
}

footer h5, footer h6 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: var(--font-h3);
    line-height: var(--line-h3);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-body);
    font-size: var(--font-base);
}

footer a:hover {
    color: white;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer p, footer li {
    font-family: var(--font-body);
    font-size: var(--font-base);
    line-height: var(--line-base);
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

footer .social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 400px;
    }
    
    .hero-content {
        width: 100%;
        background: rgba(241, 241, 241, 0.95);
        padding: 30px;
        position: relative;
    }
    
    .hero-image {
        position: relative;
        height: 250px;
    }
    
    .hero-title {
        font-size: var(--font-h2);
        line-height: var(--line-h2);
    }
    
    .navbar-bosch {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-bosch .navbar-brand img {
        width: 80px;
        height: 81px;
    }
    
    .navbar-bosch .brand-claim {
        font-size: 16px;
        padding: 3px 10px;
    }
    
    .navbar-bosch .nav-link {
        padding: 12px 15px !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        max-width: 100%;
        border-left: none;
        border-right: none;
    }
    
    .hero-title {
        font-size: var(--font-h3);
        line-height: var(--line-h3);
    }
    
    .section-title {
        font-size: var(--font-h2);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn,
    .btn-cta {
        width: 100%;
    }
    
    h1, .h1 {
        font-size: var(--font-h2);
        line-height: var(--line-h2);
    }
    
    h2, .h2 {
        font-size: var(--font-h3);
        line-height: var(--line-h3);
    }
    
    .navbar-bosch .brand-claim {
        display: none;
    }
}

/* Utilities */
.text-bosch-blue {
    color: var(--bosch-service-blue) !important;
}

.bg-bosch-blue {
    background-color: var(--bosch-service-blue) !important;
}

.bg-bosch-gray {
    background-color: var(--light-gray) !important;
}

.text-bosch-petrol {
    color: var(--bosch-service-petrol) !important;
}

.text-bosch-red {
    color: var(--bosch-service-red) !important;
}

.bg-bosch-petrol {
    background-color: var(--bosch-service-petrol) !important;
}

.bg-bosch-red {
    background-color: var(--bosch-service-red) !important;
}

html {
    scroll-behavior: smooth;
}
