/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(45deg, #316899 0%, #0073ff 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    transform: translateY(0);
    min-width: 200px;
    text-align: center;
}

.btn::before {
    content: '🚴';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.btn::after {
    content: '🔧';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.btn:hover {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
    padding: 16px 60px;
}

.btn:hover::before {
    left: 15px;
    opacity: 1;
}

.btn:hover::after {
    right: 15px;
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:hover span {
    animation: glow 0.6s ease-in-out;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); }
}

.btn-primary {
    background: #2c4970;
}

.btn:hover {
    background: linear-gradient(45deg, #1a2b42 0%, #2c558c 100%);
    box-shadow: 0 15px 35px rgba(47, 101, 171, 0.289);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: unset;
}

.cookie-buttons .btn-primary {
    background-color: #3498db;
    color: white;
    box-shadow: none;
}

.cookie-buttons .btn-outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background-color: #2980b9;
    transform: none;
    padding: 8px 16px;
}

.cookie-buttons .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-policy-link {
    color: #74b9ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content p {
        text-align: center;
        margin-bottom: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
        padding: 10px 16px;
    }

    .cookie-buttons .btn-primary:hover {
        padding: 10px 16px;
    }

    .cookie-policy-link {
        text-align: center;
        display: block;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-content p {
        font-size: 13px;
    }

    .cookie-buttons button {
        font-size: 13px;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.lang-switch:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lang-flag {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 768px) {
    .language-switcher {
        margin: 0 10px;
    }
    
    .lang-switch {
        width: 35px;
        height: 35px;
    }
    
    .lang-flag {
        font-size: 18px;
    }
}

/* Header */
.header {
    background-color: #1a2b42;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #74b9ff;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.phone-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.hero-text h1 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Registration Form */
.registration-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.registration-form h3 {
    margin-bottom: 20px;
    color: #1a2b42;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1a2b42;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Service Types Section */
.service-types {
    padding: 80px 0;
    background-color: #1a2b42;
    color: white;
    text-align: center;
}

.service-types h2 {
    margin-bottom: 50px;
    font-size: 2rem;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.service-type-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: block;
}

.service-type h4 {
    font-size: 1.2rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a2b42;
    font-size: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

.review {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop layout */
@media (min-width: 769px) {
    /* First row: photo1, text1, photo2, text2 */
    .review:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        background-size: cover;
        background-position: center;
        background-image: url('../images/rev1.jpg');
    }

    .review:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        background-color: white;
        padding: 30px 25px;
    }

    .review:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
        background-size: cover;
        background-position: center;
        background-image: url('../images/rev2.jpg');
    }

    .review:nth-child(4) {
        grid-column: 4;
        grid-row: 1;
        background-color: white;
        padding: 30px 25px;
    }

    /* Second row: text3, photo3, text4, photo4 */
    .review:nth-child(5) {
        grid-column: 1;
        grid-row: 2;
        background-color: white;
        padding: 30px 25px;
    }

    .review:nth-child(6) {
        grid-column: 2;
        grid-row: 2;
        background-size: cover;
        background-position: center;
        background-image: url('../images/rev3.jpg');
    }

    .review:nth-child(7) {
        grid-column: 3;
        grid-row: 2;
        background-color: white;
        padding: 30px 25px;
    }

    .review:nth-child(8) {
        grid-column: 4;
        grid-row: 2;
        background-size: cover;
        background-position: center;
        background-image: url('../images/rev4.jpg');
    }

    /* Hide images when using background on desktop */
    .review:nth-child(1) .review-image,
    .review:nth-child(3) .review-image,
    .review:nth-child(6) .review-image,
    .review:nth-child(8) .review-image {
        display: none;
    }

    /* Hide text in photo blocks on desktop */
    .review:nth-child(1) .review-text,
    .review:nth-child(3) .review-text,
    .review:nth-child(6) .review-text,
    .review:nth-child(8) .review-text {
        display: none;
    }
}

/* Image sizing for proper display */
.review-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* Text styling */
.review-text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.review-text p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #555;
    font-size: 14px;
}

.review-text cite {
    font-weight: bold;
    color: #007bff;
    font-style: normal;
    font-size: 12px;
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        min-height: 800px;
    }
    
    .review:nth-child(1) { grid-column: 1; grid-row: 1; }
    .review:nth-child(2) { grid-column: 2; grid-row: 1; }
    .review:nth-child(3) { grid-column: 1; grid-row: 2; }
    .review:nth-child(4) { grid-column: 2; grid-row: 2; }
    .review:nth-child(5) { grid-column: 1; grid-row: 3; }
    .review:nth-child(6) { grid-column: 2; grid-row: 3; }
    .review:nth-child(7) { grid-column: 1; grid-row: 4; }
    .review:nth-child(8) { grid-column: 2; grid-row: 4; }
}

/* Mobile layout - like in the image */
@media (max-width: 768px) {
    .hero {
        padding: 40px 5px;
    }

    .reviews .container {
        padding: 0 !important;
    }
    
    .review-text-only {
        display: none !important;
    }
    
    .reviews {
        padding:  0;
    }
    
    .reviews h2 {
        margin-bottom: 40px;
        font-size: 1.8rem;
    }
    
    .reviews-grid {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    
    .review {
        display: flex;
        flex-direction: column;
       
    }
    
    /* Show all images and texts on mobile */
    .review .review-image {
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
    
    .review .review-text {
        display: flex;
        padding: 25px 20px;
        text-align: left;
        background-color: white;
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        min-height: auto;
    }
    
    /* Override desktop hiding rules for mobile */
    .review:nth-child(1) .review-image,
    .review:nth-child(3) .review-image,
    .review:nth-child(6) .review-image,
    .review:nth-child(8) .review-image {
        display: block !important;
    }
    
    .review:nth-child(1) .review-text,
    .review:nth-child(3) .review-text,
    .review:nth-child(6) .review-text,
    .review:nth-child(8) .review-text {
        display: flex !important;
    }
    
    /* Remove background images on mobile */
    .review:nth-child(1),
    .review:nth-child(3),
    .review:nth-child(6),
    .review:nth-child(8) {
        background-image: none !important;
    }
    
    /* Mobile text styling */
    .review-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .review-text cite {
        font-size: 12px;
        text-align: right;
        margin-top: auto;
    }
    
    /* Special sizing for different image orientations */
    .review:nth-child(1) .review-image,
    .review:nth-child(8) .review-image {
        height: 400px; /* Taller for portrait-oriented images */
    }
    
    .review:nth-child(3) .review-image {
        height: 300px; /* Shorter for landscape images */
    }
    
    .review:nth-child(6) .review-image {
        height: 500px; /* Medium height */
    }

}

/* Responsive adjustments */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        min-height: 800px;
    }


    
    .review:nth-child(1) { grid-column: 1; grid-row: 1; }
    .review:nth-child(2) { grid-column: 2; grid-row: 1; }
    .review:nth-child(3) { grid-column: 1; grid-row: 2; }
    .review:nth-child(4) { grid-column: 2; grid-row: 2; }
    .review:nth-child(5) { grid-column: 1; grid-row: 3; }
    .review:nth-child(6) { grid-column: 2; grid-row: 3; }
    .review:nth-child(7) { grid-column: 1; grid-row: 4; }
    .review:nth-child(8) { grid-column: 2; grid-row: 4; }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, auto);
        min-height: auto;
    }
    
    .review {
        min-height: 400px;
    }
    
    .review:nth-child(1) { grid-row: 1; }
    .review:nth-child(2) { grid-row: 2; }
    .review:nth-child(3) { grid-row: 3; }
    .review:nth-child(4) { grid-row: 4; }
    .review:nth-child(5) { grid-row: 5; }
    .review:nth-child(6) { grid-row: 6; }
    .review:nth-child(7) { grid-row: 7; }
    .review:nth-child(8) { grid-row: 8; }
    
    .review {
        grid-column: 1;
        
    }
    
    .review-text p {
        font-size: 14px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .review:nth-child(1),
    .review:nth-child(2),
    .review:nth-child(3),
    .review:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: column;
    }
    
    .review:nth-child(1) .review-image,
    .review:nth-child(2) .review-image,
    .review:nth-child(4) .review-image {
        width: 100%;
        height: 400px;
    }
    
    .review:nth-child(1) .review-text,
    .review:nth-child(2) .review-text,
    .review:nth-child(4) .review-text {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review {
        min-height: auto !important;
    }
    
    .review:nth-child(3) .review-image {
        height: 300px;
    }
    
    .review:nth-child(1) .review-text,
    .review:nth-child(2) .review-text,
    .review:nth-child(3) .review-text,
    .review:nth-child(4) .review-text {
        padding: 20px;
    }
    
    .review-text p {
        font-size: 14px;
    }
}

/* Price List Section */
.price-list {
    padding: 80px 0;
    background-color: #1a2b42;
    text-align: center;
}

.price-list h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Price Toggle Button */
#price-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(45deg, #316899 0%, #0073ff 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    min-width: 250px;
    text-align: center;
    justify-content: center;
}

#price-toggle-btn:hover {
    background: linear-gradient(45deg, #4a7eb8 0%, #2985ff 100%);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
    transform: translateY(-2px);
}

/* Arrow Icon */
.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

#price-toggle-btn.active .arrow-icon {
    transform: rotate(180deg);
}

/* Price List Dropdown */
.price-list-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    margin-top: 30px;
}

.price-list-dropdown.active {
    max-height: fit-content;
}

.price-list-inner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1) 0.1s;
}

.price-list-dropdown.active .price-list-inner {
    opacity: 1;
    transform: translateY(0);
}

.price-list-inner h3 {
    color: #1a2b42;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Price Introduction */
.price-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #0073ff;
}

.price-intro p {
    color: #495057;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

/* Price Categories */
.price-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.price-category {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.price-category h4 {
    color: #1a2b42;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0073ff;
    text-align: center;
}

/* Price Items */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.price-item .service {
    color: #495057;
    font-size: 16px;
    flex: 1;
    text-align: left;
}

.price-item .price {
    color: #0073ff;
    font-weight: 600;
    font-size: 18px;
    min-width: 80px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-list-inner {
        padding: 20px;
        border-radius: 15px;
    }
    
    .price-list-inner h3 {
        font-size: 2rem;
    }
    
    .price-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-category {
        padding: 20px;
    }
    
    .price-item .service {
        font-size: 14px;
    }
    
    .price-item .price {
        font-size: 16px;
        min-width: 70px;
    }
    
    #price-toggle-btn {
        min-width: 200px;
        font-size: 16px;
        padding: 14px 30px;
    }
}

/* Zero Emissions Zone Form Group */
.zero-emissions-group {
    margin-bottom: 25px;
}

.label-with-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a2b42;
    font-size: 16px;
}

/* Info Icon */
.info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #6c757d;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.info-icon:hover {
    background-color: #0073ff;
    transform: scale(1.1);
}

.info-icon svg {
    width: 14px;
    height: 14px;
}

/* Tooltip */
.tooltip {
    position: fixed;
    background: #1a2b42;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1a2b42;
}

/* Radio Buttons Group */
.radio-buttons-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    min-width: 120px;
    position: relative;
}

.radio-option:hover {
    background: #e3f2fd;
    border-color: #0073ff;
    color: #1a2b42;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: #0073ff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #0073ff;
    background: white;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-option input[type="radio"]:checked {
    + .radio-custom {
        border-color: #0073ff;
    }
}

.radio-option:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #0073ff;
    color: #1a2b42;
    box-shadow: 0 4px 15px rgba(0, 115, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .radio-buttons-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .radio-option {
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }
    
    .label-with-info {
        font-size: 15px;
    }
    
    .tooltip {
        max-width: 250px;
        font-size: 13px;
    }
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background-color: white;
}

.brands h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a2b42;
    font-size: 2rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand {
    text-align: center;
    padding: 20px;
}

.brand img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.brand span {
    font-weight: bold;
    color: #666;
}

/* Footer */
.footer {
    background-color: #1a2b42;
    color: white;
    padding: 50px 15px 20px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links img {
    width: 32px;
    height: 32px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    .services .container {
        grid-template-columns: 1fr;
    }
    
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    

    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Page Specific Styles */
.page-header {
    background-color: #1a2b42;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    color: #1a2b42;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-content ul {
    margin: 15px 0 15px 30px;
}

.page-content li {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}



/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    border-radius: 10px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #1a2b42;
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item h3 {
    color: #1a2b42;
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 5px;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-item small {
    color: #666;
    font-style: italic;
}

.contact-form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    margin-bottom: 30px;
    color: #1a2b42;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1a2b42;
}

.contact-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 2px;
}

.service-areas {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a2b42;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.area-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.area-item h3 {
    color: #1a2b42;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.area-item ul {
    list-style: none;
    padding: 0;
}

.area-item li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.area-item li:last-child {
    border-bottom: none;
}

.areas-note {
    text-align: center;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
    z-index: 2001;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

/* Sticky Button Styles */
@media (max-width: 768px) {
    .hero-form {
        display: none;
    }

    .btn-primary.sticky {
        position: fixed;
        top: 80px; /* Height of the header */
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        width: 250px;
        height: 50px;
        min-width: unset;
        padding: 0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }

    .btn-primary.sticky span {
        display: none;
    }

    .btn-primary.sticky::before {
        content: '🔧';
        position: static;
        opacity: 1;
        font-size: 24px;
        left: auto;
        top: auto;
        transform: none;
    }

    .btn-primary.sticky::after {
        display: none;
    }

    /* Adjust hero section padding to prevent button overlap */
    .hero {
        padding-top: 60px;
    }
}