/* About Page Specific Styles */

:root {
    --primary-green: #4CAF50;
    --dark-green: #388E3C;
    --light-green: #C8E6C9;
    --accent-green: #66BB6A;
    --text-dark: #2E7D32;
    --text-light: #757575;
    --background-light: #F1F8E9;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --deep-shadow: rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    background-image: 
        linear-gradient(rgba(76, 175, 80, 0.8), rgba(56, 142, 60, 0.8)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Company Introduction */
.company-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.company-tagline {
    margin-bottom: 2rem;
}

.tagline-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-text {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.mission-statement {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    font-style: italic;
    border-left: 4px solid var(--primary-green);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.intro-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Mission and Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--background-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: var(--background-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 30px;
    height: 30px;
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-lead, .vision-lead {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.commitments {
    margin-top: 2.5rem;
}

.commitments h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.commitment-grid {
    display: grid;
    gap: 1.5rem;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
}

.commitment-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    flex-shrink: 0;
}

.commitment-content h5 {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.commitment-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vision-image {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* Products and Services */
.products-services {
    padding: 80px 0;
    background: var(--white);
}

.products-services h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.product-card {
    background: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px var(--shadow);
}

.product-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--deep-shadow);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin: 1.5rem 2rem 1rem;
    font-weight: 600;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 2rem 2rem;
}

/* Sustainable Practices */
.sustainable-practices {
    padding: 80px 0;
    background: var(--background-light);
}

.sustainable-practices h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.practice-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 5px 15px var(--shadow);
}

.practice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--deep-shadow);
}

.practice-image {
    height: 180px;
    overflow: hidden;
}

.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.practice-item:hover .practice-image img {
    transform: scale(1.05);
}

.practice-item h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 1.5rem 2rem 1rem;
    font-weight: 600;
}

.practice-item p {
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 2rem 2rem;
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background: var(--white);
}

.our-team h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.team-member {
    background: var(--background-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--deep-shadow);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 175, 80, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    background: var(--primary-green);
    color: var(--white);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-info h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-role {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Carbon Sequestration Section - Complete Styling */
:root {
    --primary-green: #2e8b57;
    --primary-green-light: #3cb371;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --background-light: #f7fafc;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --deep-shadow: rgba(0, 0, 0, 0.15);
}

.carbon-section {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carbon-header {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    margin-bottom: 5rem;
    min-height: 28rem;
}

.carbon-image-container {
    flex: 0 0 42%;
    min-width: 0;
    display: flex;
    position: relative;
}

.carbon-image {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem var(--shadow);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.carbon-image:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.75rem 3.5rem var(--deep-shadow);
}

.carbon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.carbon-image:hover img {
    transform: scale(1.04);
}

.carbon-intro-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
}

.carbon-intro-text h2 {
    color: var(--text-dark);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    letter-spacing: -0.5px;
}

.carbon-intro {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 90%;
}

.carbon-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.carbon-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.carbon-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 100%;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.carbon-benefit-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-color: rgba(46, 139, 87, 0.2);
}

.carbon-benefit-card:hover::before {
    width: 0.5rem;
}

.benefit-icon {
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 1rem;
    flex-shrink: 0;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.carbon-benefit-card:hover .benefit-icon {
    background: var(--primary-green);
    color: white;
    transform: rotate(5deg) scale(1.05);
}

.benefit-content h3 {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .carbon-header {
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
    }
    
    .carbon-image-container {
        flex: 1;
        width: 100%;
        height: 24rem;
    }
    
    .carbon-intro-text {
        padding: 0;
    }
    
    .carbon-intro {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .carbon-section {
        padding: 4rem 0;
    }
    
    .carbon-intro-text h2 {
        font-size: 2.25rem;
    }
    
    .carbon-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .carbon-header {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .carbon-benefit-card {
        flex-direction: column;
        padding: 1.75rem;
    }
    
    .benefit-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .carbon-image-container {
        height: 20rem;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carbon-benefit-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.carbon-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.carbon-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.carbon-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.carbon-benefit-card:nth-child(4) { animation-delay: 0.4s; }
.carbon-benefit-card:nth-child(5) { animation-delay: 0.5s; }
.carbon-benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--white);
}

.applications-section h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.application-card {
    background: var(--background-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--deep-shadow);
}

.app-image {
    height: 220px;
    overflow: hidden;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.application-card:hover .app-image img {
    transform: scale(1.1);
}

.application-card h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 2rem 1rem;
}

.application-card p {
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.biostimulant-benefits ul {
    list-style: none;
    padding: 0 2rem 2rem;
    margin: 0;
}

.biostimulant-benefits li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.biostimulant-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-content,
    .carbon-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .practices-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-text h2,
    .carbon-text h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .company-intro,
    .mission-vision,
    .products-services,
    .sustainable-practices,
    .our-team,
    .carbon-section,
    .applications-section {
        padding: 60px 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .carbon-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card,
    .product-card,
    .practice-item,
    .team-member {
        margin: 0 10px;
    }
    
    .member-info,
    .carbon-benefit {
        padding: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}