/* [SITESECTION:1:variables] */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Merriweather:wght@400;700&display=swap');

:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --primary-rgb: 46, 125, 50;
    --secondary-color: #ff8f00;
    --secondary-dark: #e65100;
    --secondary-light: #ffb300;
    --accent-color: #00695c;
    --text-color: #2d3436;
    --text-light: #636e72;
    --text-muted: #b2bec3;
    --bg-color: #ffffff;
    --bg-light: #f8faf8;
    --bg-alt: #f0f4f0;
    --bg-dark: #1a2e1a;
    --border-color: #dfe6e9;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Merriweather', Georgia, serif;
    --container-width: 1200px;
    --header-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.15rem; }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

::selection {
    background: var(--primary-color);
    color: #fff;
}
/* [/SITESECTION:1] */

/* [SITESECTION:2:layout] */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 12px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
}

.required {
    color: #e74c3c;
    font-weight: 700;
    margin-left: 2px;
}
/* [/SITESECTION:2] */

/* [SITESECTION:3:header] */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    height: var(--header-height);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.site-header.scrolled .logo-text {
    color: var(--text-color);
}

.site-header.scrolled .logo-icon {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-list li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

.site-header.scrolled .nav-list li a {
    color: var(--text-color);
}

.site-header.scrolled .nav-list li a:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.site-header.scrolled .hamburger-line {
    background: var(--text-color);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
/* [/SITESECTION:3] */

/* [SITESECTION:4:hero] */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.pexels.com/photos/1072179/pexels-photo-1072179.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27,94,32,0.85) 0%, rgba(0,105,92,0.75) 50%, rgba(46,125,50,0.8) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg-color);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.92);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
/* [/SITESECTION:4] */

/* [SITESECTION:5:sections] */

/* === ABOUT === */
.about {
    padding: 80px 0 60px;
    background: var(--bg-color);
}

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

.about-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-text h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    margin: 1.5rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-color);
    font-weight: 500;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* === STATS === */
.stats {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
    min-width: 100px;
    display: inline-block;
}

.stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* === SERVICES === */
.services {
    padding: 80px 0 60px;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 35px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--primary-rgb),0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === DOCUMENTS === */
.documents {
    padding: 80px 0 60px;
    background: var(--bg-color);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.document-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.document-icon {
    margin-bottom: 1rem;
}

.document-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.document-card:hover .document-icon i {
    color: var(--secondary-color);
}

.document-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    font-family: var(--font-main);
    font-weight: 600;
}

.document-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.document-date {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(var(--primary-rgb), 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

/* === GALLERY === */
.gallery {
    padding: 80px 0 60px;
    background: var(--bg-light);
}

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

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.gallery-item:nth-child(2):hover img {
    transform: scale(1.05) rotate(1deg);
}

.gallery-item:nth-child(4):hover img {
    filter: saturate(1.3);
    transform: scale(1.06);
}

/* === CTA === */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: #fff;
    color: var(--secondary-dark);
    border-color: #fff;
}

.cta-content .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 80px 0 60px;
    background: var(--bg-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.testimonial-stars {
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

/* === FAQ === */
.faq {
    padding: 80px 0 60px;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}
/* [/SITESECTION:5] */

/* [SITESECTION:6:contact] */
.contact {
    padding: 80px 0 60px;
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item > i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--primary-rgb),0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-socials {
    margin-top: 10px;
}

.contact-socials h4 {
    font-family: var(--font-main);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--primary-rgb),0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--bg-color);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0;
}

.captcha-group img {
    height: 50px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.captcha-group input {
    flex: 1;
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--bg-color);
    transition: var(--transition);
    outline: none;
}

.captcha-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.captcha-refresh-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.4rem;
    padding: 10px 14px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh-btn:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: var(--primary-color);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 18px 0;
    padding: 5px 0;
}

.consent-group label {
    display: flex;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-light);
    font-weight: 400;
    align-items: flex-start;
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}
/* [/SITESECTION:6] */

/* [SITESECTION:7:footer] */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo i {
    font-size: 1.6rem;
    color: var(--primary-light);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.footer-about p {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-nav h4,
.footer-contacts h4 {
    color: #fff;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-nav ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contacts p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.footer-contacts p i {
    color: var(--primary-light);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}
/* [/SITESECTION:7] */

/* [SITESECTION:8:components] */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    transition: right 0.3s ease-out;
    font-size: 0.95rem;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.toast-notification.error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.site-modal .modal-content {
    background: #fff;
    max-width: 700px;
    width: 90%;
    border-radius: var(--border-radius-lg);
    padding: 36px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    color: var(--text-color);
}

.site-modal .modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    line-height: 1;
}

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
    font-size: 0.9rem;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    pointer-events: all;
    cursor: ew-resize;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid #333;
    transform: translateY(-50%);
}

.comparison-divider::before {
    left: 12px;
    border-left: 3px solid #333;
    transform: translateY(-50%) rotate(-45deg);
}

.comparison-divider::after {
    right: 12px;
    border-right: 3px solid #333;
    transform: translateY(-50%) rotate(45deg);
}

.footer-privacy-link {
    text-align: center;
    padding: 10px 0;
}

.footer-privacy-link a {
    color: rgba(255,255,255,0.6);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-privacy-link a:hover {
    opacity: 1;
    color: var(--primary-light);
}
/* [/SITESECTION:8] */

/* [SITESECTION:9:animations] */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll,
noscript ~ * .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
/* [/SITESECTION:9] */

/* [SITESECTION:10:responsive] */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }

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

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        padding: 100px 30px 40px;
        transition: right 0.35s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li a {
        color: rgba(255,255,255,0.85);
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: 8px;
        display: block;
    }

    .nav-list li a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

    .site-header.scrolled .nav-list li a {
        color: rgba(255,255,255,0.85);
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .documents-grid {
        grid-template-columns: 1fr;
    }

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-card {
        padding: 20px 10px;
    }

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

    .footer-about {
        grid-column: auto;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-group img {
        align-self: center;
    }

    .comparison-slider {
        max-width: 100%;
        border-radius: 8px;
    }

    .comparison-divider {
        width: 40px;
        height: 40px;
    }

    .comparison-label {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

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

    .about,
    .services,
    .documents,
    .gallery,
    .testimonials,
    .faq,
    .contact {
        padding: 60px 0 40px;
    }

    .section-subtitle {
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .site-modal .modal-content {
        width: 95%;
        padding: 24px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 32px);
    }

    .toast-notification.show {
        right: 16px;
    }
}
/* [/SITESECTION:10] */