/* ============================================
   DNA HERITAGE - Premium Company Profile
   Author: DNA Heritage
   ============================================ */

/* CSS Variables */
:root {
    --color-cream: #f5efe5;
    --color-brown: #794211;
    --color-green: #355e2f;
    --color-green-light: #4a7a42;
    --color-gold: #b7863d;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0d5c5;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-green);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-view {
    background-color: var(--color-brown);
    color: var(--color-white);
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 6px;
}

.btn-view:hover {
    background-color: #5e3310;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background-color: var(--color-green-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp i {
    font-size: 20px;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-green);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title-small {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.section-title-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-gold);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    height: 68px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 52px;
    width: auto;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--color-brown);
}

.nav-link.active {
    color: var(--color-green);
    font-weight: 600;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f6f2;
    padding: 6px 12px;
    border-radius: 8px;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-item img {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-item.active {
    color: var(--color-green);
    font-weight: 600;
    background: var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-green);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    z-index: 999;
    padding: 16px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-list a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: var(--color-cream);
    color: var(--color-green);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 450px; 
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.35);
}

.hero-content {
    position: relative;
	margin-left:6%;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.3s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    z-index: 20;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content {
    padding-top: 8px;
}

.about-text {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-vision,
.about-mission {
    margin-bottom: 24px;
}

.about-vision h4,
.about-mission h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-vision h4 i,
.about-mission h4 i {
    font-size: 15px;
    color: var(--color-gold);
}

.about-vision p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    padding-left: 24px;
}

.about-mission ul {
    padding-left: 24px;
}

.about-mission li {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.about-mission li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.about-benefits {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    font-size: 22px;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-4px);
}

.benefit-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 10px;
}

.product-info h3 .normal {
    font-weight: 400;
    color: var(--color-text);
}

.product-info p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
    padding: 100px 0;
    background: var(--color-cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--color-green);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--color-green);
    color: var(--color-white);
    transform: scale(1.1);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-green);
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: var(--color-green);
    color: var(--color-white);
}

.service-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 8px;
}

.service-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   PURCHASE PROCESS SECTION
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.process-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.process-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-white);
}

.process-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 6px;
}

.process-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--color-white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.testimonial-meta h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-green);
}

.testimonial-meta span {
    font-size: 13px;
    color: var(--color-text-light);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.testimonial-rating i {
    font-size: 12px;
    color: var(--color-gold);
}

.testimonial-quote {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--color-gold);
}

/* Testimonial Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    font-size: 14px;
    z-index: 10;
    transition: var(--transition);
}

.testimonial-arrow:hover {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 28px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-cream);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.footer-contact i {
    font-size: 16px;
    color: var(--color-green);
    margin-top: 2px;
    min-width: 18px;
}

.footer-contact a {
    color: var(--color-text-light);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-green);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
}

.footer-hours li {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: var(--color-green);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 94, 47, 0.7);
}

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

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
}

.about-page {
    padding: 80px 0;
}

.about-full {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.about-full p {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--color-green);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.team-section {
    text-align: center;
    margin-top: 60px;
}

.team-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-green);
    margin-bottom: 12px;
}

.team-section > p {
    color: var(--color-text-light);
    margin-bottom: 40px;
}

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

.team-member {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--color-gold);
}

.team-member h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-green);
    margin-bottom: 4px;
}

.team-member span {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page {
    padding: 80px 0;
}

.products-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.products-intro p {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.8;
}

.product-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-detail-card.reverse {
    direction: rtl;
}

.product-detail-card.reverse > * {
    direction: ltr;
}

.product-detail-image {
    height: 400px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-detail-card:hover .product-detail-image img {
    transform: scale(1.03);
}

.product-detail-info {
    padding: 40px;
}

.product-detail-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 16px;
}

.product-detail-info h3 span {
    font-weight: 400;
    color: var(--color-text);
}

.product-detail-info p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-specs {
    margin-bottom: 28px;
}

.product-specs h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs h4 i {
    color: var(--color-gold);
}

.product-specs ul li {
    font-size: 14px;
    color: var(--color-text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.product-specs ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-size: 12px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
    padding: 80px 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.8;
}

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

.service-detail-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
}

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

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--color-green);
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background: var(--color-green);
    color: var(--color-white);
    transform: scale(1.1);
}

.service-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 16px;
}

.service-detail-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: 80px 0;
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-green);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    min-width: 52px;
}

.contact-item-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-green);
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 14px;
    color: var(--color-text-light);
}

.contact-item-text a:hover {
    color: var(--color-green);
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-green);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(53, 94, 47, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-green);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-section {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-list {
        gap: 4px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-main {
        height: 360px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-card {
        grid-template-columns: 1fr;
    }
    
    .product-detail-card.reverse {
        direction: ltr;
    }
    
    .product-detail-image {
        height: 300px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 68px;
    }
    
    .hero {
        margin-top: 68px;
        height: 500px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .lang-switch {
        display: none;
    }
    
    .logo img {
        height: 42px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 36px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        padding: 0 40px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .about-benefits {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .benefit-item {
        flex: 1 1 calc(50% - 10px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta {
        height: auto;
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-card {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-img-main {
        height: 260px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
