/* Color Palette Variables */
:root {
    --primary-green: #316218;
    --secondary-sage: #8db27b;
    --accent-earth: #dbbf86;
    --neutral-cream: #edebe6;
    --contrast-charcoal: #2d2d2d;
    
    --primary-green-light: #437b28;
    --primary-green-dark: #0f2604;
    --secondary-sage-light: #9bbb81;
    --secondary-sage-dark: #80995d;
    --accent-earth-light: #cfb684;
    --accent-earth-dark: #bea366;
    --neutral-cream-light: #F9F7F2;
    --neutral-cream-dark: #f2eed9;
    --contrast-charcoal-light: #575353;
    --contrast-charcoal-dark: #171717;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--contrast-charcoal);
    background-color: var(--neutral-cream);
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.61rem;
    color: var(--primary-green);
}

h1 { font-size: 2.38rem; }
h2 { font-size: 1.93rem; }
h3 { font-size: 1.61rem; }
h4 { font-size: 1.31rem; }
h5 { font-size: 1.22rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--contrast-charcoal);
}

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--neutral-cream-dark) 100%);
    backdrop-filter: blur(19px);
    box-shadow: 0 10px 22px rgba(46, 69, 20, 0.10);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary-green) !important;
    text-decoration: none;
}

.nav-link {
    color: var(--primary-green) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-sage) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-sage-light) 0%, var(--accent-earth-light) 50%, var(--neutral-cream) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(15deg);
}

.hero-section img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(42, 76, 13, 0.20);
    max-height: 500px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Section Padding */
.section-padding {
    padding: 5rem 0;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 9px 110px rgba(41, 92, 24, 0.10);
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 30px rgba(40, 101, 21, 0.15);
}

.service-card, .brand-card, .cert-card, .career-card, .case-card, .blog-card, .review-card, .faq-card {
    height: 100%;
}

.service-card img, .brand-card img, .blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 17px 20px 0 0;
}

/* Price Cards */
.price-card {
    position: relative;
    transition: all 0.3s ease;
}

.price-card.featured {
    border: 2px solid var(--secondary-sage);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-sage);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.94rem;
    font-weight: 600;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--accent-earth-light);
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-sage));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Impact Cards */
.impact-card {
    padding: 2rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(40, 102, 21, 0.10);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.63rem;
}

/* Timeline */
.timeline-item {
    position: relative;
    padding: 1rem;
}

.timeline-year {
    background: var(--accent-earth);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Feature Boxes */
.feature-box, .material-card, .info-card, .action-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(42, 99, 21, 0.10);
}

.feature-box:hover, .material-card:hover, .info-card:hover, .action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 79, 29, 0.15);
}

/* Forms */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(34, 59, 17, 0.10);
}

.form-control {
    border: 2px solid var(--neutral-cream-dark);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-sage);
    box-shadow: 0 0 0 0.2rem rgba(128, 164, 112, 0.25);
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.90rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-sage));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--secondary-sage-dark));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 87, 21, 0.30);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Gallery */
#gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 2rem 0 1rem;
    margin-top: 80px;
}

.breadcrumb-icon {
    height: 30px;
    width: auto;
}

/* Space Section */
.space-section {
    min-height: 70vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neutral-cream), var(--neutral-cream-dark));
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green-light), var(--contrast-charcoal-light));
    color: var(--neutral-cream);
}

.footer a {
    color: var(--neutral-cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-earth-light);
}

.footer h5 {
    color: var(--accent-earth-light);
    margin-bottom: 1.61rem;
}

/* Background Variations */
.bg-light {
    background: linear-gradient(135deg, var(--neutral-cream-light) 0%, var(--neutral-cream) 100%) !important;
}

/* Utilities */
.text-primary {
    color: var(--primary-green) !important;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Page 2 Components */
.innovation-card, .circular-card {
    height: 100%;
    transition: all 0.3s ease;
}

.innovation-card:hover, .circular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(35, 57, 21, 0.15);
}

.impact-initiative {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(49, 81, 18, 0.10);
}

.impact-initiative:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(35, 85, 20, 0.15);
}

.research-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(35, 55, 13, 0.10);
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(36, 61, 13, 0.15);
}

.research-stage {
    font-size: 0.93rem;
    font-weight: 600;
}

.future-vision {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(61, 89, 30, 0.10);
}

.future-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(56, 97, 31, 0.15);
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #d62347;
    background-image: none;
}

.form-check-input.is-invalid {
    border-color: #ca425d;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-sage);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
