

/* Start:/bitrix/templates/yaharizma/styles.css?176007172713170*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #002C3E;
    /*--primary-teal: #0D515A;*/
    --primary-teal: #002C3E;
    --accent-gold: #FF8600;
    --accent-gold-light: #FF8600;
    --text-white: #FFFFFF;
    --text-light: #E8F4F6;
    --bg-light: #F8FAFB;
}

body {
    font-family: 'Montserrat Alternates', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    overflow-x: hidden;
}

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

header {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    color: var(--text-white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 71, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.logo-heart {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.logo-heart img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 40px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 165, 71, 0.3);
}

.cta-button:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 71, 0.4);
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto;
}

.services .section-title {
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 13px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto 60px;
}

.services .section-title h2 {
    margin-bottom: 15px;
}

.services {
    background-image: url('/bitrix/templates/yaharizma/img/IMG_0040.png');

    background-position: center;
    background-attachment: fixed;
    position: relative;
}


.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 15%);
    /* backdrop-filter: blur(2px); */
}

.services .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: 1px solid rgba(212, 165, 71, 0.15);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 71, 0.25);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--accent-gold);
    font-size: 3rem;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    color: var(--text-white);
}

.about-image img {
    width: 200px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.qualities {
    list-style: none;
    padding: 0;
}

.qualities li {
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact {
    background: var(--primary-dark);
    color: var(--text-white);
    text-align: center;
}

.contact .section-title h2 {
    color: var(--text-white);
}

.contact-info {
    margin-top: 50px;
}

.phone {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 2px;
    transition: color 0.3s;
}

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

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
}

.contact-method h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.contact-method p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
}

footer {
    background: #062830;
    color: var(--text-light);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .services {
        background-size: cover;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

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

    .services {
        background-attachment: scroll;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        gap: 40px;
    }

    .about-image {
        padding: 40px;
    }

    .about-image img {
        width: 150px;
        height: auto;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 12px 0;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transition: left 0.3s;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .logo-heart {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero h2 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }

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

    .section-title {
        margin-bottom: 40px;
    }

    .services {
        background-attachment: scroll;
    }

    .services .section-title {
        padding: 30px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

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

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image {
        padding: 35px 25px;
    }

    .about-image img {
        width: 120px;
        height: auto;
    }

    .qualities li {
        font-size: 1rem;
        padding: 12px 0;
    }

    .contact-methods {
        flex-direction: column;
        gap: 30px;
    }

    .phone {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .contact-method h4 {
        font-size: 1rem;
    }

    footer {
        padding: 25px 20px;
        font-size: 0.85rem;
    }
}

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

    .logo {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .logo-heart {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .hero h2 {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .services .section-title {
        padding: 25px 15px;
    }

    /*.services::before {*/
    /*    background: rgba(255, 255, 255, 0.95);*/
    /*}*/
    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-image {
        padding: 30px 20px;
    }

    .about-image img {
        width: 100px;
        height: auto;
        margin-bottom: 20px;
    }

    .qualities li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .contact-info {
        margin-top: 35px;
    }

    .phone {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .contact-methods {
        gap: 25px;
    }

    .contact-method h4 {
        font-size: 0.95rem;
    }

    .contact-method p {
        font-size: 0.9rem;
    }
}

/* End */
/* /bitrix/templates/yaharizma/styles.css?176007172713170 */
