/* 
* BrightLedger ZA - Accounting Services Website
* Colors:
* - Primary: #00B4D8 (lazurnyy)
* - Secondary: #FF6B6B (korallovyy)
* - Background: #FAF3E0 (svetlyy pesochnyy)
* - Accent: #6C757D (dymchato-seryy)
* - Fonts: Montserrat, sans-serif
*/

/* Reset & Base Styles */
:root {
    --primary: #00B4D8;
    --secondary: #FF6B6B;
    --background: #FAF3E0;
    --accent: #6C757D;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark: #212529;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background: #0096b3;
    color: var(--white);
}

.btn--secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn--secondary:hover {
    background: #ff5252;
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.nav__list {
    display: flex;
    gap: 25px;
}

.nav__link {
    color: var(--dark);
    font-weight: 500;
}

.nav__link:hover {
    color: var(--primary);
}

.phone-link {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.phone-link:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300B4D8'%3E%3Cpath d='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1zM5.03 4.91h1.97c.1 1 .34 2.01.76 3.01l-1.63 1.63c-.72-1.44-1.05-3.04-1.1-4.64v0zM18.99 18.99c-1.6-.05-3.2-.38-4.64-1.1l1.63-1.63c1 .42 2.01.66 3.01.76v1.97 0z'/%3E%3C/svg%3E") no-repeat center center;
    margin-right: 7px;
}

.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    transition: var(--transition);
}

.burger-menu a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent);
    font-weight: 400;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about__inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about__image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about__content {
    flex: 1;
}

.about__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about__text {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.about__features {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.about__feature {
    text-align: center;
}

.about__feature-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.about__feature-text {
    font-size: 1rem;
    color: var(--accent);
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process__inner {
    display: flex;
    gap: 30px;
}

.process__step {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    top: 0;
}

.process__step:hover {
    top: -10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process__step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.2;
}

.process__step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.process__step-text {
    color: var(--accent);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-gray);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit__icon {
    margin-bottom: 20px;
}

.benefit__title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit__text {
    color: var(--accent);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service {
    display: flex;
    gap: 40px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service__image {
    flex: 0 0 40%;
    max-height: 300px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service__content {
    flex: 1;
    padding: 30px;
}

.service__title {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service__list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service__list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: var(--accent);
}

.service__list li:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300B4D8'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center center;
    position: absolute;
    left: 0;
    top: 4px;
}

.service__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials__inner {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial__content {
    position: relative;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial__content:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial__text {
    font-style: italic;
    color: var(--accent);
}

.testimonial__author-name {
    font-weight: 700;
    color: var(--dark);
}

.testimonial__author-company {
    font-size: 0.9rem;
    color: var(--primary);
}

/* Contact Form Section */
.contact {
    padding: 80px 0;
}

.contact__inner {
    display: flex;
    gap: 50px;
}

.contact__form {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact__info {
    flex: 1;
}

.contact__title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact__details {
    margin-bottom: 30px;
}

.contact__item {
    margin-bottom: 15px;
}

.contact__item-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact__item-content {
    color: var(--accent);
}

.contact__map {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.contact__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Styles */
.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form__checkbox {
    margin-top: 3px;
}

.form__checkbox-label {
    font-size: 0.9rem;
    color: var(--accent);
}

.form__checkbox-label a {
    text-decoration: underline;
}

.form__submit {
    margin-top: 30px;
}

/* Contact Map Section */
.contact-map {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-map__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-map__content {
    flex: 1;
}

.contact-map__image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.contact-map__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-map__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-map__text {
    color: var(--accent);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light-gray);
    padding: 60px 0 30px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer__col {
    flex: 1;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer__title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer__contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact a {
    color: var(--secondary);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__links a:hover {
    color: var(--secondary);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    text-align: center;
}

.thank-you__inner {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you__icon {
    margin-bottom: 30px;
}

.thank-you__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.thank-you__text {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 30px;
}

.thank-you__actions {
    margin-top: 30px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: opacity 0.3s ease;
    border: 2px solid var(--primary);
}

.cookie-popup__content h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.cookie-popup__content p {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.cookie-popup__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-popup__link {
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process__inner,
    .testimonials__inner {
        flex-direction: column;
    }
    
    .benefits__inner {
        grid-template-columns: 1fr;
    }
    
    .service {
        flex-direction: column;
    }
    
    .service__image {
        flex: 0;
        height: 250px;
    }
    
    .contact__inner,
    .contact-map__inner,
    .about__inner,
    .hero__inner {
        flex-direction: column;
    }
    
    .footer__inner {
        flex-wrap: wrap;
    }
    
    .footer__col {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
    }
    
    .header__contact {
        display: none;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .about,
    .process,
    .benefits,
    .services,
    .testimonials,
    .contact,
    .contact-map {
        padding: 50px 0;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 1.8rem;
    }
    
    .about__features {
        flex-direction: column;
        gap: 20px;
    }
    
    .process__step {
        padding: 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

/* Create SVG favicon code */
.favicon-svg {
    display: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 6px;
    border: 3px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0096b3;
} 