/* ========================================
   Sarvadnya Krishi Foods - Fresh Unique Design
   Organic, flowing, nature-inspired
   ======================================== */

/* CSS Variables */
:root {
    --green-dark: #1a4d1a;
    --green-primary: #2d5a27;
    --green-light: #4a8c3f;
    --green-pale: #e8f5e3;

    --orange-primary: #e67e22;
    --orange-dark: #d35400;
    --gold: #f1c40f;
    --turmeric: #f39c12;

    --earth-dark: #5d4e37;
    --earth-medium: #8b7355;
    --earth-light: #d4c4a8;
    --cream: #fefcf6;
    --white: #ffffff;

    --text-dark: #1a1a1a;
    --text-medium: #555555;
    --text-light: #888888;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --shadow-soft: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-medium: 0 15px 40px rgba(0,0,0,0.12);
    --shadow-strong: 0 20px 50px rgba(0,0,0,0.18);

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { color: var(--text-medium); }

a {
    text-decoration: none;
    color: inherit;
}

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

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

.container-fluid {
    padding: 0 60px;
}

/* ========================================
   Organic Shapes & Decorations
   ======================================== */
.blob-shape {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: var(--green-pale);
    opacity: 0.5;
    animation: blob-morph 15s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

.leaf-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-8 8-12 20-8 30 2 5 8 10 8 10s6-5 8-10c4-10 0-22-8-30z' fill='%232d5a27' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ========================================
   Header - Unique Floating Design
   ======================================== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1400px;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: var(--shadow-soft);
}

.header.scrolled .header-inner {
    padding: 12px 30px;
    box-shadow: var(--shadow-medium);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 30px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    opacity: 0.9;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-dark);
}

.logo-text span {
    color: var(--orange-primary);
    font-weight: 400;
}

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

.nav-link {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--green-primary);
    background: var(--green-pale);
}

.nav-link.active {
    color: var(--green-primary);
}

.nav-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.35);
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.45);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark)) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 2px 0;
}

.mobile-toggle span {
    height: 3px;
    background: var(--green-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ========================================
   Hero - Split Creative Design
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1600px;
    width: 100%;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 140px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 30px;
    width: fit-content;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    color: var(--green-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--orange-primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--gold);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
}

/* Hero Stats - Horizontal */
.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    position: relative;
    padding-left: 20px;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--orange-primary), var(--gold));
    border-radius: 3px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 80px 80px 60px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.hero-image-wrapper {
    position: relative;
    width: 80%;
    max-width: 500px;
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    right: -40px;
    animation-delay: 2s;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--green-pale);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.3rem;
}

.floating-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.floating-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange-primary);
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--green-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
}

.section-header {
    margin-bottom: 70px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ========================================
   About Section - Unique Layout
   ======================================== */
.about {
    background: var(--white);
    overflow: hidden;
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img.main {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img.secondary {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 8px solid var(--white);
}

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

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

.experience-tag {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    z-index: 4;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-tag .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-tag .text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content .section-label::before {
    display: none;
}

.about-text {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--cream);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--green-pale);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.feature-box span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Products Section - Card Grid
   ======================================== */
.products {
    background: linear-gradient(180deg, var(--cream) 0%, var(--green-pale) 100%);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.filter-btn:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.filter-btn.active {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

/* Product Card - Unique Design */
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

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

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-visual {
    height: 220px;
    background: linear-gradient(135deg, var(--green-pale) 0%, #d4e8cf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    top: -25%;
    left: -25%;
}

.product-icon {
    font-size: 5rem;
    color: var(--green-primary);
    opacity: 0.7;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-info {
    padding: 30px;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.benefit {
    padding: 6px 14px;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-primary);
}

.product-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-body);
}

.product-action {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.product-action:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.view-all-wrapper {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   Services Section - Horizontal Cards
   ======================================== */
.services {
    background: var(--white);
}

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

.service-card {
    padding: 50px 40px;
    background: var(--cream);
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.service-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.25);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-list {
    text-align: left;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--green-primary);
    font-size: 0.9rem;
}

/* ========================================
   Why Choose Us - Grid with Icons
   ======================================== */
.why-us {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.why-us .section-label {
    color: var(--gold);
}

.why-us .section-label::after {
    background: var(--gold);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-desc {
    color: rgba(255,255,255,0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--white);
}

.why-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Testimonials - Modern Slider
   ======================================== */
.testimonials {
    background: var(--cream);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-quote {
    font-size: 5rem;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--green-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--earth-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.t-dot.active {
    background: var(--green-primary);
    transform: scale(1.3);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--orange-primary);
}

.cta .btn-primary:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 30px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--white);
    color: var(--green-primary);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    padding: 50px;
    background: var(--cream);
    border-radius: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.newsletter-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   Products Page Specific
   ======================================== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--gold);
}

/* Products Filter Bar */
.filter-bar {
    background: var(--white);
    padding: 25px 0;
    position: sticky;
    top: 90px;
    z-index: 100;
    box-shadow: var(--shadow-soft);
}

.filter-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--cream);
    border-radius: 50px;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    color: var(--text-light);
}

.search-box input {
    border: none;
    background: none;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

/* Product Category Section */
.product-section {
    padding: 80px 0;
}

.product-section:nth-child(even) {
    background: var(--white);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--green-pale);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.category-info h2 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-info p {
    color: var(--text-medium);
    margin: 0;
}

/* ========================================
   Animations & Utilities
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .header {
        width: calc(100% - 40px);
        top: 15px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-strong);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    .hero-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 150px 40px 80px;
        text-align: center;
        align-items: center;
    }

    .hero-badge {
        margin: 0 auto 30px;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        padding: 40px;
    }

    .hero-floating-card {
        display: none;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 450px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .filter-bar-inner {
        flex-direction: column;
    }

    .search-box {
        max-width: 100%;
    }

    .products-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .header-inner {
        padding: 12px 20px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 130px 20px 60px;
    }

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

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

    .about-images {
        height: 350px;
    }

    .about-img.secondary {
        width: 50%;
        height: 45%;
    }

    .experience-tag {
        right: 10%;
        padding: 20px;
    }

    .experience-tag .number {
        font-size: 2.2rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }
}
