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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    line-height: 1.5;
    background-color: #fff;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    background: none;
}

.btn--primary {
    background-color: #179c29;
    color: white;
    box-shadow: 0 4px 12px rgba(23, 156, 41, 0.3);
}

.btn--primary:hover {
    background-color: #0f7a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(23, 156, 41, 0.4);
}

.btn--whatsapp {
    background-color: #25d366;
    color: white;
}

.btn--whatsapp:hover {
    background-color: #1da15b;
    transform: translateY(-2px);
}

.btn--outline {
    border: 2px solid #179c29;
    color: #179c29;
    background: transparent;
}

.btn--outline:hover {
    background-color: #179c29;
    color: white;
}

.btn--large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    max-width: 180px;
    height: auto;
}

.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav__link:hover {
    color: #179c29;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__phone {
    font-weight: 600;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background-color: #f9fafb;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero__content {
    flex: 1;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero__title span {
    color: #179c29;
}

.hero__text {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__info {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.hero__info i {
    margin-right: 5px;
    color: #179c29;
}

.hero__image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,1.1);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #179c29;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: #e5e7eb;
}

.service-card__icon {
    font-size: 3rem;
    color: #179c29;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #6b7280;
}

/* Vehicle Types */
.vehicle-types {
    padding: 80px 0;
    background-color: #f9fafb;
}

.vehicle-types__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.vehicle-card {
    text-align: center;
    max-width: 300px;
}

.vehicle-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    height: 220px;
}

.vehicle-card:hover img {
    transform: scale(1.02);
}

/* How We Work */
.how-we-work {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.step__number {
    width: 50px;
    height: 50px;
    background-color: #179c29;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.how-we-work__cta {
    text-align: center;
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background-color: white;
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Video Gallery */
.video-gallery {
    padding: 80px 0;
    background-color: #f9fafb;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.video-card {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card__preview {
    position: relative;
    aspect-ratio: 16/9;
}

.video-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(23, 156, 41, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.2s;
}

.video-card:hover .play-btn {
    background-color: #179c29;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Why Us */
.why-us {
    padding: 80px 0;
    background-color: #4e849370;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.reason-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 24px;
    transition: all 0.3s;
}

.reason-card i {
    font-size: 3rem;
    color: #179c29;
    margin-bottom: 20px;
}

.reason-card h3 {
    margin-bottom: 12px;
}

.why-us__review-link {
    text-align: center;
}

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

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.review-card__text {
    font-style: italic;
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.6;
}

.review-card__author {
    font-weight: 600;
    color: #179c29;
}

/* CTA Form */
.cta-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #179c29 0%, #0f7a1f 100%);
    color: white;
}

.cta-form__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-form__content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-form__content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    background-color: white;
    outline: none;
}

.form__group textarea {
    border-radius: 24px;
    resize: vertical;
}

.form__policy {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.7;
}

.form__policy a {
    text-decoration: underline;
    color: white;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 60px 0 20px;
}

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

.footer__logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer__col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer__col p {
    margin-bottom: 12px;
}

.footer__col a {
    transition: color 0.2s;
}

.footer__col a:hover {
    color: #179c29;
}

.footer__social {
    display: inline-block;
    margin-top: 10px;
    background-color: #25d366;
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
}

.footer__social:hover {
    background-color: #1da15b;
    color: white;
}

.footer__legal {
    text-align: center;
    font-size: 0.7rem;
    border-top: 1px solid #1f2937;
    padding-top: 20px;
    margin-top: 20px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal__content {
    background-color: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
}

.modal__close:hover {
    color: #179c29;
}

.video-modal__content {
    max-width: 800px;
    background: black;
    padding: 0;
    overflow: hidden;
}

.video-container {
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.5rem;
    }
    .nav__list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header__actions {
        display: contents;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        padding: 30px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 999;
    }
    .nav.active {
        left: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .hero__container {
        flex-direction: column;
        text-align: center;
    }
    .hero__buttons {
        justify-content: center;
    }
    .hero__info {
        justify-content: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .steps {
        flex-direction: column;
    }
}
@media (max-width: 420px) {
    .header__actions {
        display: none;
    }
}
/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.advantages__row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.advantages__row:last-child {
    margin-bottom: 0;
}

.advantages__row--reverse {
    flex-direction: row-reverse;
}

.advantages__content {
    flex: 1;
}

.advantage-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.advantage-item:last-child {
    margin-bottom: 0;
}

.advantage-item__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(23, 156, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #179c29;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-item__icon {
    background-color: #179c29;
    color: white;
    transform: scale(1.05);
}

.advantage-item p {
    flex: 1;
    color: #374151;
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 40px;
}

.advantages__image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantages__image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

.advantages__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.advantages__image:hover img {
    transform: scale(1.02);
}

/* Адаптив для преимуществ */
@media (max-width: 768px) {
    .advantages__row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .advantages__row--reverse {
        flex-direction: column;
    }
    
    .advantages__content {
        width: 100%;
    }
    
    .advantages__image {
        width: 100%;
        order: -1;
    }
    
    .advantages__row--reverse .advantages__image {
        order: -1;
    }
    
    .advantage-item {
        gap: 15px;
    }
    
    .advantage-item__icon {
        width: 45px;
        height: 45px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .advantage-item {
        flex-direction: row;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .advantage-item p {
        text-align: left;
        margin-left: 30px;
    }
}

/* Mechanic Callout Section */
.mechanic-callout {
    margin-top: 60px;
    background: linear-gradient(135deg, #f0f4f9 0%, #e8edf5 100%);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(23, 156, 41, 0.2);
}

.mechanic-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23,156,41,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mechanic-callout__content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.mechanic-callout__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #179c29 0%, #0f7a1f 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.mechanic-callout__icon i {
    font-size: 2rem;
    color: white;
}

.mechanic-callout__text {
    flex: 2;
}

.mechanic-callout__text h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 12px;
}

.mechanic-callout__text p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mechanic-callout__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
}

.mechanic-callout__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #374151;
}

.mechanic-callout__list li i {
    color: #179c29;
    font-size: 1rem;
}

.mechanic-callout__action {
    flex-shrink: 0;
    text-align: center;
    min-width: 200px;
}

.btn--secondary {
    background-color: #ff8c42;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.btn--secondary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4);
}

.mechanic-callout__note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 12px;
}

/* Modal для автомеханика */
.modal__icon {
    text-align: center;
    margin-bottom: 20px;
}

.modal__icon i {
    font-size: 2.5rem;
    color: #ff8c42;
    margin: 0 5px;
}

.modal__subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Адаптив */
@media (max-width: 992px) {
    .mechanic-callout {
        padding: 30px;
    }
    
    .mechanic-callout__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mechanic-callout__list {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mechanic-callout__list li {
        justify-content: flex-start;
    }
    
    .mechanic-callout__action {
        width: 100%;
    }
    
    .mechanic-callout__icon {
        width: 70px;
        height: 70px;
    }
    
    .mechanic-callout__icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mechanic-callout {
        padding: 20px;
    }
    
    .mechanic-callout__text h3 {
        font-size: 1.4rem;
    }
}

.btn--max {
    background: linear-gradient(135deg, #2b3b8c 0%, #1a2a6c 100%);
    color: white;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(43, 59, 140, 0.3);
}

.btn--max:hover {
    background: linear-gradient(135deg, #3a4e9e 0%, #2a3a7e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 59, 140, 0.4);
}

.btn--max i {
    font-size: 1.1rem;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.fab-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #179c29 0%, #0f7a1f 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(23, 156, 41, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    z-index: 2;
    animation: pulse 2s infinite;
}

.fab-button i {
    font-size: 1.3rem;
    animation: rotateIcon 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(23, 156, 41, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(23, 156, 41, 0.7);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 8px 20px rgba(23, 156, 41, 0.4);
        transform: scale(1);
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    40% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(-5deg);
    }
    80% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.fab-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1dae31 0%, #179c29 100%);
    box-shadow: 0 10px 25px rgba(23, 156, 41, 0.5);
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fab-container.open .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1f2937;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid #e5e7eb;
}

.fab-option:hover {
    transform: translateX(5px);
    border-color: #179c29;
    color: #179c29;
}

.fab-option i {
    font-size: 1.2rem;
}

.fab-option:first-child i {
    color: #179c29;
}

.fab-option:last-child i {
    color: #ff8c42;
}

/* Quick Modal */
.quick-modal__content {
    max-width: 450px;
}

.quick-modal__icon {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
}

.quick-modal__icon i {
    background: linear-gradient(135deg, #179c29 0%, #0f7a1f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Адаптив для FAB */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        left: 20px;
    }
    
    .fab-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .fab-button i {
        font-size: 1.1rem;
    }
    
    .fab-option {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .fab-option i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fab-button span {
        display: none;
    }
    
    .fab-button {
        padding: 15px;
        border-radius: 50%;
    }
    
    .fab-button i {
        margin: 0;
        font-size: 1.3rem;
    }
    
    .fab-options {
        margin-left: 0;
    }
}

/* Call Selector Button */
.call-selector {
    position: relative;
    display: inline-block;
}

.btn--call {
    background-color: #1f2937;
    color: white;
    gap: 8px;
}

.btn--call:hover {
    background-color: #374151;
    transform: translateY(-2px);
}

.btn--call i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.call-selector.open .btn--call i:last-child {
    transform: rotate(180deg);
}

.call-selector__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.call-selector.open .call-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-selector__option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.call-selector__option:last-child {
    border-bottom: none;
}

.call-selector__option:hover {
    background-color: #f8fafc;
}

.call-selector__option i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 12px;
}

.call-selector__option:first-child i {
    color: #179c29;
}

.call-selector__option:last-child i {
    color: #ff8c42;
}

.call-selector__option-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.call-selector__option-info strong {
    font-size: 1rem;
    color: #1f2937;
}

.call-selector__option-info span {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Адаптив для call-selector */
@media (max-width: 768px) {
    .call-selector__dropdown {
        left: auto;
        right: 0;
        min-width: 240px;
    }
    
    .call-selector__option {
        padding: 12px 15px;
    }
    
    .call-selector__option i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .call-selector__option-info strong {
        font-size: 0.9rem;
    }
    
    .call-selector__option-info span {
        font-size: 0.75rem;
    }
}

/* Master Selector (вызов мастера с выбором) */
.master-selector {
    position: relative;
    display: inline-block;
}

.master-selector .btn--primary {
    background-color: #179c29;
    gap: 8px;
}

.master-selector .btn--primary i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.master-selector.open .btn--primary i:last-child {
    transform: rotate(180deg);
}

.master-selector__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.master-selector.open .master-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.master-selector__option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.master-selector__option:last-child {
    border-bottom: none;
}

.master-selector__option:hover {
    background-color: #f8fafc;
}

.master-selector__option i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 12px;
}

.master-selector__option:first-child i {
    color: #179c29;
}

.master-selector__option:last-child i {
    color: #ff8c42;
}

.master-selector__option-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.master-selector__option-info strong {
    font-size: 1rem;
    color: #1f2937;
}

.master-selector__option-info span {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Адаптив */
@media (max-width: 768px) {
    .master-selector__dropdown,
    .call-selector__dropdown {
        left: auto;
        right: 0;
        min-width: 260px;
    }
    
    .master-selector__option {
        padding: 12px 15px;
    }
    
    .master-selector__option i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .master-selector__option-info strong {
        font-size: 0.9rem;
    }
    
    .master-selector__option-info span {
        font-size: 0.75rem;
    }
}

/* Appointment Selector */
.appointment-selector {
    position: relative;
    display: inline-block;
}

.btn--appointment {
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    color: white;
    gap: 8px;
}

.btn--appointment:hover {
    background: linear-gradient(135deg, #ff9b5a 0%, #f39c12 100%);
    transform: translateY(-2px);
}

.appointment-selector__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.appointment-selector.open .appointment-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.appointment-selector__option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.appointment-selector__option:last-child {
    border-bottom: none;
}

.appointment-selector__option:hover {
    background-color: #f8fafc;
}

.appointment-selector__option i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 12px;
}

.appointment-selector__option:first-child i {
    color: #179c29;
}

.appointment-selector__option:last-child i {
    color: #ff8c42;
}

.form__row {
    display: flex;
    gap: 15px;
}

.form__row .form__group {
    flex: 1;
}

.form__group select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    background-color: white;
    outline: none;
    appearance: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form__row {
        flex-direction: column;
        gap: 20px;
    }
    
    .appointment-selector__dropdown {
        left: auto;
        right: 0;
    }
}

/* CTA Buttons */
.cta-form__content {
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-selector {
    position: relative;
    display: inline-block;
}

.cta-selector__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.cta-selector.open .cta-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta-selector__option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.cta-selector__option:last-child {
    border-bottom: none;
}

.cta-selector__option:hover {
    background-color: #f8fafc;
}

.cta-selector__option i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 12px;
}

.cta-selector__option:first-child i {
    color: #179c29;
}

.cta-selector__option:last-child i {
    color: #ff8c42;
}

.cta-selector__option-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.cta-selector__option-info strong {
    font-size: 1rem;
    color: #1f2937;
}

.cta-selector__option-info span {
    font-size: 0.8rem;
    color: #6b7280;
}

.btn--appointment {
    background: linear-gradient(135deg, #ff8c42 0%, #e67e22 100%);
    color: white;
    gap: 8px;
}

.btn--appointment:hover {
    background: linear-gradient(135deg, #ff9b5a 0%, #f39c12 100%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-selector {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-selector button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-selector__dropdown {
        left: auto;
        right: 0;
    }
}