body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

:root {
    --primary-color: #0056b3; /* Dark Blue */
    --secondary-color: #6c757d; /* Silver */
    --accent-color: #ffffff; /* White */
    --dark-blue: #002e6d;
    --light-silver: #e9ecef;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.bg-light-silver {
    background-color: var(--light-silver) !important;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #004085;
    border-color: #004085;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.btn-outline-light {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

/* Responsive Typography for Headings */
.section-title {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

h1.hero-headline {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    position: relative;
}

.site-name {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    h1.hero-headline {
        font-size: 3.5rem;
    }
    .site-name {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (min-width: 1024px) {
    h1.hero-headline {
        font-size: 4.5rem;
    }
    .site-name {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px; /* Adjust for fixed header */
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-headline .floating-text {
    display: inline-block;
    animation: floatText 3s ease-in-out infinite;
}

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

.emoji-highlight {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeInOut 4s infinite ease-in-out;
}

.emoji-1 {
    top: -10px;
    left: -20px;
    animation-delay: 0.5s;
}

.emoji-2 {
    bottom: -10px;
    right: -20px;
    animation-delay: 1.5s;
}

.emoji-3 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    animation-delay: 2.5s;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

.trust-badge {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* About Us / How it Works Section */
.about-item {
    background-color: var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.about-item .icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-item .item-title {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.4rem;
}

/* Plans Section */
.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.plan-card.popular {
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.3) !important;
}

.plan-card .card-title {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.6rem;
}

.plan-card ul {
    padding-left: 0;
}

.plan-card ul li {
    margin-bottom: 10px;
}

/* Simulator Section */
.form-range::-webkit-slider-thumb {
    background-color: var(--primary-color);
}

.form-range::-moz-range-thumb {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact-section .section-title {
    color: var(--accent-color) !important;
}

.contact-form,
.sidebar-contact-info {
    background-color: var(--accent-color);
    color: #333;
}

.sidebar-contact-info .fa-solid,
.sidebar-contact-info .fa-brands {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.map-embed {
    height: 400px;
}

.map-embed iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* Testimonials */
.testimonial-card {
    border-radius: 10px;
}

.testimonial-card .avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* Corporate Section */
.corporate-fleet-image {
    max-height: 400px;
    object-fit: cover;
}

/* Promotions */
.promotion-card img {
    height: 200px;
    object-fit: cover;
}

.promotion-card .card-title {
    font-weight: 600;
    color: var(--dark-blue);
}

.promotion-card .btn-primary {
    width: 100%;
}

/* Claim Process */
.process-step {
    background-color: var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.process-step .icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-title {
    font-weight: 600;
    color: var(--dark-blue);
}

.blog-card .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-card .btn-link:hover {
    color: #004085;
    text-decoration: underline;
}

/* Footer */
.footer-section {
    background-color: var(--dark-blue);
    color: var(--accent-color);
}

.footer-section .cta-bar {
    background-color: var(--primary-color);
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.footer-section .cta-bar .btn-light {
    color: var(--primary-color);
}

.footer-link {
    transition: color 0.3s ease;
    text-decoration: none;
}
#corporate ul{
    padding: 0;
}
#corporate li{
    list-style: none;
}

.footer-link:hover {
    color: var(--accent-color) !important;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
}

.language-selector .form-select {
    background-color: var(--dark-blue);
    color: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.2);
}

.language-selector .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* Modals */
.modal-content {
    border-radius: 10px;
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-header {
    background-color: var(--dark-blue);
    color: var(--accent-color);
    border-bottom: none;
}

#cookieConsentModal .modal-title {
    color: var(--accent-color);
}

#cookieConsentModal .modal-footer {
    border-top: none;
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#cookieConsentModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

#cookieConsentModal #customizeCookies {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

#cookieConsentModal #customizeCookies:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

#cookieConsentModal #rejectAllCookies {
    background-color: #dc3545;
    border-color: #dc3545;
}

#cookieConsentModal #rejectAllCookies:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-control:invalid:not(:placeholder-shown) ~ .invalid-feedback {
    display: block;
}

.form-check-input:invalid:not(:checked) ~ .invalid-feedback {
    display: block;
}

.form-check-input:invalid:not(:checked) {
    border-color: #dc3545;
}

/* Custom scrollbar for modals */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
    background: #004085;
}/* New stock styles for .complianceCoreSlot and its children */

.complianceCoreSlot {
    /* Container padding for top and sides */
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 30px; /* Added for symmetrical bottom padding */
    padding-left: 20px;
}

.complianceCoreSlot h1 {
    /* Heading 1 styles: moderately sized, with top and bottom margins */
    font-size: 28px;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.complianceCoreSlot h2 {
    /* Heading 2 styles: slightly smaller than h1 */
    font-size: 24px;
    line-height: 1.25;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: bold;
}

.complianceCoreSlot h3 {
    /* Heading 3 styles: good for sub-sections */
    font-size: 20px;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.complianceCoreSlot h4 {
    /* Heading 4 styles: close to paragraph text, but bold and with more spacing */
    font-size: 18px;
    line-height: 1.35;
    margin-top: 15px;
    margin-bottom: 8px;
    font-weight: bold;
}

.complianceCoreSlot h5 {
    /* Heading 5 styles: smaller than paragraph, but bold for distinction */
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.complianceCoreSlot p {
    /* Paragraph styles: standard readable font size and line height */
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0; /* Reset default browser margin-top */
    margin-bottom: 16px; /* Spacing between paragraphs */
}

.complianceCoreSlot ul {
    /* Unordered list styles: default bullet points with indentation and vertical spacing */
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 25px; /* Indentation for list markers */
    list-style-type: disc; /* Default bullet style */
}

.complianceCoreSlot ol {
    /* Ordered list styles: default numbering with indentation and vertical spacing */
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 25px; /* Indentation for list markers */
    list-style-type: decimal; /* Default numbering style */
}

.complianceCoreSlot li {
    /* List item styles: spacing between individual items */
    margin-bottom: 8px;
    line-height: 1.5; /* Ensure good readability for list item text */
}

/* Optional: Remove bottom margin from the last element within the slot to prevent extra space */
.complianceCoreSlot p:last-child,
.complianceCoreSlot ul:last-child,
.complianceCoreSlot ol:last-child,
.complianceCoreSlot li:last-child {
    margin-bottom: 0;
}


#headerButton{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
#headerButton button{

}
/* По умолчанию бургер скрыт (как у Bootstrap) */
.navbar-expand-xl-custom .navbar-toggler {
  display: none;
}

/* Когда ширина <= 1300px — включаем бургер */
@media (max-width: 1400px) {
    .navbar-expand-xl-custom{
padding: 0px 10px;
    }
  .navbar-expand-xl-custom .navbar-toggler {
    display: block;
    
  }

  .navbar-expand-xl-custom .navbar-collapse {
    display: none !important;
  }

  .navbar-expand-xl-custom .navbar-collapse.collapse.show {
    display: block !important;
  }
  main{
    overflow: hidden;
  }
}