

/* Start:/local/templates/akpp_center_landing/styles.css?175585132333707*/
:root {
    --primary: #1a3a5f;
    --secondary: #2c6c9c;
    --accent: #ff7a00;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #333333;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: var(--text);
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 12px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    margin-right: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    margin-left: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link.telegram {
    background-color: #0088cc;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.phone-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--accent);
}

.phone-link i {
    margin-right: 8px;
    color: var(--secondary);
}

.callback-btn {
    background: linear-gradient(to right, var(--accent), #ff9a3d);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.callback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.4);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

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

.hero-text {
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #ff8a1f;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    border: 0 solid rgba(255, 255, 255, 0.3);
}

/* Marquee Section (New) */
.marquee-section {
    background-color: var(--primary);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
}

.marquee-container {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 600;
}

.marquee-item i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section (New) */
.about-section {
    background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('https://a.d-cd.net/1ea30d2s-960.jpg');
    background-size: cover;
    padding: 100px 0;
    background-color: white;
    color: white;
}

.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;

}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
    border: 0 solid var(--primary);
}

.section-title {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
    align-items: center;
    gap: 50px;
}
.features .section-title h2 {color: white}

.about-container .section-title h2 {color: white}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.features-list {
    list-style-type: none;
    margin: 30px 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border-radius: 50%;
}

.guarantee-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--accent), #ff9a3d);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

/* Features Section (Old - Deleted in new) */
.features {
    padding: 100px 20px;
    background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('/local/templates/akpp_center_landing/images/11.jpg');
    background-size: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    text-align: center;
    padding: 30px 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--gray);
}

/* Responsive Design (Merged) */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 40px 0;
        transition: left 0.4s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
        text-align: center;
    }

    .nav-link {
        font-size: 18px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    .hero-image {
        margin-top: 40px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }

    .logo-text {
        font-size: 18px;
    }
    .hero-image {
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .section-title {display:block;}

    .section-title h2 {
        font-size: 2rem;
    }

    .marquee-item {
        font-size: 14px;
        padding: 0 15px;
    }

    .about-text p {
        font-size: 16px;
    }

    .features-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .marquee-container {
        animation: marquee 20s linear infinite;
    }
}

.pricing-section {
    padding: 100px 0;
    background-color: white;
}

.pricing-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.price span {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.time {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.time span {
    color: var(--secondary);
    font-weight: 600;
}

.pricing-card p {
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-btn {
    background: linear-gradient(to right, var(--accent), #ff9a3d);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.4);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .price span {
        font-size: 28px;
    }
}

.gallery-section {
   /* padding: 100px 0;*/
    background-color: #f8f9fa;
    position: relative;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    animation: carousel-scroll 30s linear infinite;
    width: calc(300px * 8);
}

.carousel-slide {
    flex: 0 0 auto;
    width: 300px;
    padding: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 0 0  rgba(0, 0, 0, 0.1);
    height: 200px;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-btn {
    background: var(--accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.3s;
}

.zoom-btn:hover {
    transform: scale(1.1);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-prev, .carousel-next {
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--secondary);
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 4));
    }
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    top: 50%;
    transform: translateY(-50%);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--accent);
}

/* Пауза анимации при наведении */
.gallery-carousel:hover .carousel-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .carousel-track {
        animation: carousel-scroll 20s linear infinite;
    }

    .carousel-slide {
        width: 250px;
    }

    .gallery-item {
        height: 180px;
    }
}

.pricing-blue-section {
    padding: 0;
    position: relative;
}

.blue-bg-wrapper {
    background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('/local/templates/akpp_center_landing/images/13.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
}

.pricing-grid-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s, background 0.3s;
}

.pricing-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.service-name {
    font-weight: 500;
    font-size: 16px;
}

.service-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
}

.brands-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: translateY(-5px);
}

.brand-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 992px) {
    .pricing-grid-two-col {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .brands-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-blue-section {
        padding: 60px 0;
    }

    .blue-bg-wrapper {
        padding: 60px 0;
    }

    .pricing-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .brands-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}.services-section {
     padding: 100px 0;
     background-color: #f8f9fa;
 }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.free-diagnostic {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

.service-title {
    color: var(--primary);
    margin: 20px 0;
    font-size: 18px;
    padding: 0 15px;
}

.service-btn {
    background: linear-gradient(to right, var(--accent), #ff9a3d);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.4);
}

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

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-image {
        height: 180px;
    }

    .service-title {
        font-size: 16px;
    }
}
.ratings-section {
    padding: 100px 0;
    background-color: white;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.rating-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.rating-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rating-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s;
}

.rating-card:hover .rating-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.rating-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.rating-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.rating-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

.rating-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s;
}

.rating-link:hover {
    color: var(--secondary);
}

.rating-link:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .ratings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ratings-section {
        padding: 60px 0;
    }

    .ratings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .rating-card {
        padding: 20px 15px;
    }

    .rating-logo {
        height: 50px;
        margin-bottom: 15px;
    }

    .rating-stars {
        font-size: 18px;
    }

    .rating-value {
        font-size: 16px;
    }
}.contacts-section {
     padding: 100px 0;
     background-color: #f8f9fa;
 }

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.contacts-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
}

.contacts-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.contacts-title {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.contacts-list {
    list-style: none;
}

.contacts-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.contacts-list li:before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.contacts-list li:last-child {
    border-bottom: none;
}

.contacts-phones {
    margin-bottom: 25px;
}

.phone-link {
    display: flex;
    align-items: center;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;

    transition: color 0.3s;
}

.phone-link i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 16px;
}

.phone-link:hover {
    color: var(--accent);
}

.socials-title {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.social-link.whatsapp {
    background-color: #25D366;
}

.social-link.viber {
    background-color: #7360F2;
}

.social-link.telegram {
    background-color: #0088cc;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

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

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Футер */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 20px;

}

.footer .container {  

    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contacts p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.footer-contacts .footer-socials i {
    margin-right: 0;}

.footer-contacts i {
    margin-right: 10px;
    color: var(--accent);
}
.footer-contacts a:hover i {color: white;}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-socials .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-socials .social-link:hover {
    background: var(--accent);
}

.footer-callback {
    display: flex;
    flex-direction: column;
}

.footer-phone {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    opacity: 0.7;
}

.footer-policy a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policy a:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 60px 0;
    }

    .contacts-card {
        padding: 20px;
    }

    .socials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* Контейнер для модального окна записи */
.appointment-modal-wrapper .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.appointment-modal-wrapper .modal-content {
    position: relative;
    background: white;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    width: 100%;
    box-sizing: border-box;
    min-height: auto;
}

.appointment-modal-wrapper .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-modal-wrapper .modal-close:hover {
    color: var(--accent);
}

.appointment-modal-wrapper .modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.appointment-modal-wrapper .modal-header h2 {
    color: var(--primary);
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 5px;
    line-height: 1.2;
}

.appointment-modal-wrapper .modal-header h3 {
    color: var(--accent);
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 15px;
    line-height: 1.2;
}

.appointment-modal-wrapper .modal-header p {
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 500;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.3;
}

.appointment-modal-wrapper .modal-subtitle {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--gray) !important;
    font-style: italic;
    line-height: 1.3;
}

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

.appointment-modal-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

.appointment-modal-wrapper .form-group input,
.appointment-modal-wrapper .form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.appointment-modal-wrapper .form-group input:focus,
.appointment-modal-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.appointment-modal-wrapper .submit-btn {
    background: linear-gradient(to right, var(--accent), #ff9a3d);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    width: 100%;
    -webkit-appearance: none;
}

.appointment-modal-wrapper .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.4);
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .appointment-modal-wrapper .modal-overlay {
        padding: 15px;
    }

    .appointment-modal-wrapper .modal-content {
        padding: 35px 25px 25px;
        margin: 20px auto;
    }

    .appointment-modal-wrapper .modal-close {
        top: 12px;
        right: 12px;
        font-size: 24px;
    }

    .appointment-modal-wrapper .appointment-form {
        gap: 18px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 576px) {
    .appointment-modal-wrapper .modal-overlay {
        padding: 10px;
    }

    .appointment-modal-wrapper .modal-content {
        padding: 30px 20px 20px;
        margin: 15px auto;
        border-radius: 10px;
    }

    .appointment-modal-wrapper .modal-close {
        top: 10px;
        right: 10px;
        font-size: 22px;
        width: 25px;
        height: 25px;
    }

    .appointment-modal-wrapper .modal-header {
        margin-bottom: 25px;
    }

    .appointment-modal-wrapper .appointment-form {
        gap: 15px;
    }

    .appointment-modal-wrapper .form-group input,
    .appointment-modal-wrapper .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Фиксированный размер для iOS */
    }

    .appointment-modal-wrapper .submit-btn {
        padding: 14px;
        font-size: 16px; /* Фиксированный размер для iOS */
    }
}

/* Адаптивность для очень маленьких устройств */
@media (max-width: 375px) {
    .appointment-modal-wrapper .modal-overlay {
        padding: 5px;
    }

    .appointment-modal-wrapper .modal-content {
        padding: 25px 15px 15px;
        margin: 10px auto;
    }

    .appointment-modal-wrapper .modal-header {
        margin-bottom: 20px;
    }

    .appointment-modal-wrapper .form-group input,
    .appointment-modal-wrapper .form-group textarea {
        padding: 10px;
    }

    .appointment-modal-wrapper .submit-btn {
        padding: 12px;
    }
}

/* Предотвращение масштабирования на iOS */
@supports (-webkit-touch-callout: none) {
    .appointment-modal-wrapper .form-group input,
    .appointment-modal-wrapper .form-group textarea {
        font-size: 16px !important; /* Фиксированный размер шрифта для iOS */
    }
}

/* Для очень высоких экранов */
@media (min-height: 800px) {
    .appointment-modal-wrapper .modal-content {
        margin: 40px auto;
    }
}

/* Для landscape ориентации на мобильных */
@media (max-height: 500px) and (orientation: landscape) {
    .appointment-modal-wrapper .modal-overlay {
        padding: 5px;
    }

    .appointment-modal-wrapper .modal-content {
        margin: 5px auto;
        padding: 20px 15px 15px;
        max-height: 95vh;
        overflow-y: auto;
    }

    .appointment-modal-wrapper .modal-header {
        margin-bottom: 15px;
    }

    .appointment-modal-wrapper .form-group textarea {
        min-height: 70px;
    }
}
/* End */
/* /local/templates/akpp_center_landing/styles.css?175585132333707 */
