:root {
    --primary: #2d5016;
    --primary-dark: #1a3009;
    --primary-light: #4a7c2a;
    --accent: #8bc34a;
    --accent-light: #aed581;
    --accent-dark: #689f38;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #2d5016 0%, #4a7c2a 50%, #8bc34a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(74, 124, 42, 0.9) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.25rem 0;
}

.navbar::before {
    display: none;
}

.navbar.scrolled {
    background: rgba(51, 78, 51, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
}

.navbar.scrolled .logo img {
    height: 40px;
}

.navbar.scrolled .nav-menu a {
    font-size: 0.8rem;
}

.navbar.scrolled::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/1.webp') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.navbar.scrolled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(51, 78, 51, 0.9) 0%, rgba(45, 80, 22, 0.95) 100%);
    z-index: -1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover img {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn i {
    font-size: 0.875rem;
}

.navbar.scrolled .language-switcher {
    background: rgba(51, 78, 51, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/1.webp') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 auto 2rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--text-white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.services {
    padding: 6rem 0;
    background: url('../images/2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .section-header,
.services .section-badge,
.services .section-title,
.services .section-description {
    color: var(--text-white);
}

.services .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(51, 78, 51, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(45, 80, 22, 0.4) 100%);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(45, 80, 22, 0.6) 100%);
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex: 1;
    font-size: 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li i {
    color: var(--accent-light);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-light);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--text-white);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(3px);
}

.why-choose,
.quality-standards,
.faq-section {
    padding: 6rem 0;
    background: url('../images/2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.why-choose::before,
.quality-standards::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.why-choose .container,
.quality-standards .container,
.faq-section .container {
    position: relative;
    z-index: 2;
}

.why-choose .section-header,
.quality-standards .section-header,
.faq-section .section-header {
    text-align: center;
}

.why-choose .section-badge,
.quality-standards .section-badge,
.faq-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose .section-title,
.quality-standards .section-title,
.faq-section .section-title {
    color: var(--text-white);
    line-height: 1.2;
}

.why-choose .section-description,
.quality-standards .section-description,
.faq-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(51, 78, 51, 0.95);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
}

.feature-content {
    margin-top: 1rem;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.standard-card {
    background: rgba(51, 78, 51, 0.95);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.standard-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.standard-card:hover .standard-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(139, 195, 74, 0.3);
}

.standard-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
}

.standard-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-home {
    padding: 6rem 0;
    background: url('../images/2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-home .container {
    position: relative;
    z-index: 2;
}

.about-home .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-home .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-home .section-title {
    color: var(--text-white);
}

.about-home .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.about-home-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;


    background: rgba(51, 78, 51, 0.6);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}

.about-home-text {
    text-align: left;
}

.about-home-text p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 2;
    font-size: 1.125rem;
}

.about-home-text p strong {
    color: var(--accent-light);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: rgba(51, 78, 51, 0.95);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-feature-item i {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.about-feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
}

.about-feature-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-section {
    padding: 5rem 0;
    background: url('../images/2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(51, 78, 51, 0.95);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.news-section {
    padding: 6rem 0;
    background: url('../images/2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.news-section .container {
    position: relative;
    z-index: 2;
}

.news-section .section-header,
.news-section .section-badge,
.news-section .section-title {
    color: var(--text-white);
}

.news-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: rgba(51, 78, 51, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.news-date {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.news-day {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.news-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
}

.news-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-light);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    margin-top: auto;
}

.news-link:hover {
    gap: 0.75rem;
    color: var(--text-white);
}

.news-link i {
    transition: var(--transition);
}

.news-link:hover i {
    transform: translateX(3px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}

.faq-item {
    background: rgba(51, 78, 51, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i.fa-boxes,
.faq-question i.fa-shopping-cart,
.faq-question i.fa-truck,
.faq-question i.fa-certificate,
.faq-question i.fa-clock,
.faq-question i.fa-file-invoice-dollar {
    color: var(--accent-light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-toggle i {
    color: var(--accent-light);
    font-size: 0.875rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--accent-light);
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle i {
    color: var(--text-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 2rem 2rem 5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.footer {
    background: linear-gradient(135deg, rgba(26, 48, 9, 0.95) 0%, rgba(45, 80, 22, 0.9) 50%, rgba(51, 78, 51, 0.95) 100%);
    color: var(--text-white);
    padding: 3rem 0 0;
    position: relative;
    overflow: visible;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(26, 48, 9, 0.7) 0%, rgba(26, 48, 9, 0.4) 50%, transparent 100%), url('../images/footer.webp') center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 48, 9, 0.85) 0%, rgba(45, 80, 22, 0.8) 50%, rgba(51, 78, 51, 0.85) 100%);
    z-index: -1;
}

.footer .container {
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
    gap: 2.5rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.875rem;
    max-width: 420px;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-light);
    padding-left: 8px;
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-social a:hover {
    color: var(--accent-light);
    background: rgba(174, 213, 129, 0.25);
    border-color: var(--accent-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(174, 213, 129, 0.3);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-section {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-section i {
    color: var(--accent-light);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-section span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.8125rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

section.contact-section {
    padding: 120px 0 3rem;
    background: url('../images/2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

body.contact-page .footer {
    border-top: none;
}

section.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

section.contact-section .container {
    position: relative;
    z-index: 2;
}

section.contact-section .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

section.contact-section .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

section.contact-section .page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
}

section.contact-section .section-title {
    color: var(--text-white);
}

section.contact-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-wrapper .contact-info {
    padding-right: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(51, 78, 51, 0.6);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    background: rgba(51, 78, 51, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
    border-color: transparent;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    background: rgba(51, 78, 51, 0.95);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-wrapper .form-group label {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(174, 213, 129, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-wrapper .btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #4a7c2a 0%, #6b9f3a 50%, #aed581 100%);
}

.contact-form-wrapper .btn-primary:disabled,
.contact-form-wrapper .btn-primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.about-page {
    background: var(--bg-light);
}

body.about-page .about-home {
    padding: 6rem 0;
}

.cta-section {
    padding: 5rem 0;
    background: url('../images/2.webp') center/cover;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.cta-section .btn-primary {
    background: var(--text-white);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.cta-section .btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary);
    transform: translateY(-2px);
}

::selection {
    background: var(--accent-light);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--accent-light);
    color: var(--text-dark);
}

.contact-section a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition);
}

.contact-section a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.about-main-text {
    flex: 1;
}

.about-main-text p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1rem;
}

.about-main-text p:last-child {
    margin-bottom: 0;
}

.about-main-text p.lead {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-main-text p strong {
    color: var(--accent-light);
    font-weight: 600;
}

.about-philosophy-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.about-philosophy-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-philosophy-card .card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

.about-philosophy-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
}

.about-philosophy-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.875rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-philosophy-card p:last-child {
    margin-bottom: 0;
}

section.contact-section {
    margin-bottom: 0 !important;
    border: none !important;
    display: block !important;
}