/* ==========================================================================
   Основные стили для сайта Expert Comptable
   ========================================================================== */

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Основные стили */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #212121;
    background-color: #FFF8E1;
    overflow-x: hidden;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header и Navigation
   ========================================================================== */

.header {
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(26, 35, 126, 0.2);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Menu mobile */
.menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%);
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #FF8F00;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.main-content {
    margin-top: 80px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 50%, #F57C00 100%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Section Commune
   ========================================================================== */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 50px;
    position: relative;
}

.section-title.centered {
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    border-radius: 2px;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1A237E, #303F9F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 8px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Advantages Section
   ========================================================================== */

.advantages {
    background: linear-gradient(135deg, #FFF8E1 0%, #F3E5F5 100%);
}

.advantages-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #1A237E, #303F9F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 15px;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    transform: scale(1.05);
    border: 3px solid #FF8F00;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.1rem;
    color: #666;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF8F00;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF8F00;
    font-weight: bold;
}

.service-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #1A237E, #303F9F);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
    background: linear-gradient(135deg, #FFF8E1 0%, #F3E5F5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.05;
}

.bg-image {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}

.bg-image-1 {
    top: 10%;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.bg-image-2 {
    bottom: 10%;
    left: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

.testimonial-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #FF8F00;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 5px;
}

.author-company {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #FF8F00;
    font-size: 1.2rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 25px 30px;
    font-weight: 600;
    color: #1A237E;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #FFF8E1;
}

.faq-arrow {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #FF8F00;
}

.faq-toggle:checked + .faq-question .faq-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.contact-form {
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%);
    color: white;
}

.contact-form .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text a {
    color: #FF8F00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: white;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1A237E;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF8F00;
    box-shadow: 0 0 0 3px rgba(255, 143, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkboxes {
    margin-bottom: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.form-checkbox {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #FF8F00;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.checkbox-label a {
    color: #1A237E;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: #1A237E;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF8F00;
}

.footer-description {
    line-height: 1.6;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-label {
    font-weight: 600;
    color: white;
    min-width: 80px;
}

.contact-link {
    color: #FF8F00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: white;
}

.contact-text {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF8F00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    opacity: 0.7;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet portrait: 600px and below */
@media (max-width: 600px) {
    .about-content {
        gap: 35px;
    }
    
    .about-description {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 35px;
    }
    
    .about-features {
        gap: 22px;
    }
    
    .feature-item {
        gap: 18px;
    }
    
    .feature-icon {
        min-width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .feature-title {
        font-size: 1.15rem;
    }
    
    .feature-description {
        font-size: 0.98rem;
    }
    
    .about-img {
        height: 320px;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #1A237E;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-toggle:checked ~ .nav {
        max-height: 300px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        text-align: center;
    }
    
    /* Hero mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Section mobile */
    .section-title {
        font-size: 2rem;
    }
    
    /* About mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .about-features {
        gap: 20px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .about-img {
        height: 300px;
    }
    
    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    /* Contact mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    /* Gallery mobile */
    .advantages-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* About section - small mobile */
    .about-content {
        gap: 25px;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .about-features {
        gap: 18px;
    }
    
    .feature-item {
        gap: 12px;
        align-items: center;
    }
    
    .feature-icon {
        min-width: 45px;
        height: 45px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-img {
        height: 280px;
        border-radius: 15px;
    }
    
    .advantages-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0 40px;
    }
    
    .gallery-img {
        height: 150px;
    }
    
    .bg-image {
        width: 200px;
        height: 200px;
    }
    
    .bg-image-1 {
        right: -100px;
    }
    
    .bg-image-2 {
        left: -100px;
    }
    
    .advantage-card,
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Extra small screens: 350px and below */
@media (max-width: 350px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header adjustments */
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    /* Hero section */
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 40px;
        height: 3px;
    }
    
    /* About section - extra small mobile */
    .about-content {
        gap: 20px;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .feature-item {
        gap: 10px;
        align-items: flex-start;
    }
    
    .feature-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 3px;
        line-height: 1.3;
    }
    
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .about-img {
        height: 220px;
        border-radius: 12px;
    }
    
    /* Advantages */
    .advantages-gallery {
        margin: 20px 0 30px;
        gap: 10px;
    }
    
    .gallery-img {
        height: 120px;
    }
    
    .advantage-card {
        padding: 20px 15px;
    }
    
    .advantage-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .advantage-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .advantage-description {
        font-size: 0.9rem;
    }
    
    /* Services */
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-header {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-price {
        font-size: 0.95rem;
    }
    
    .service-price .price {
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-features li {
        padding: 6px 0;
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    .service-button {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .popular-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
        right: 15px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-company {
        font-size: 0.8rem;
    }
    
    .testimonial-rating {
        font-size: 1rem;
    }
    
    .bg-image {
        width: 150px;
        height: 150px;
    }
    
    .bg-image-1 {
        right: -75px;
        top: 5%;
    }
    
    .bg-image-2 {
        left: -75px;
        bottom: 5%;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-arrow {
        right: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
    
    /* Contact form */
    .contact-content {
        gap: 30px;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-text strong {
        font-size: 0.9rem;
    }
    
    .contact-text a,
    .contact-text span {
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .checkbox-group {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .form-checkbox {
        width: 16px;
        height: 16px;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .form-submit {
        padding: 12px;
        font-size: 1rem;
        border-radius: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    /* Cookie banner */
    .cookie-content {
        padding: 15px;
        gap: 15px;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Navigation mobile */
    .nav {
        top: 70px;
    }
    
    .nav-list {
        padding: 15px;
        gap: 8px;
    }
    
    .menu-btn {
        padding: 8px;
    }
    
    .menu-btn span {
        width: 20px;
        height: 2px;
    }
} 