:root {
    --eco-green: #2d5016;
    --eco-light-green: #7cb342;
    --eco-sage: #9caf88;
    --eco-earth: #8d6e63;
    --eco-sky: #81c784;
    --eco-green-light: rgba(45, 80, 22, 0.1);
    --eco-sage-light: rgba(156, 175, 136, 0.2);
    --eco-earth-light: rgba(141, 110, 99, 0.15);
    --eco-sky-light: rgba(129, 199, 132, 0.2);
    --eco-green-dark: #1b2e0d;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--eco-green);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--eco-earth);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--eco-green);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--eco-green-light) 0%, var(--eco-sage-light) 100%);
    position: relative;
    overflow: hidden;
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eco-green);
    margin-bottom: 1rem;
}

#hero .lead {
    font-size: 1.25rem;
    color: var(--eco-earth);
    margin-bottom: 1rem;
}

#hero p {
    color: #666;
    font-size: 1rem;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape-blob-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--eco-sky-light);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--eco-earth-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styling */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 1rem;
}

section .lead {
    font-size: 1.1rem;
    color: var(--eco-earth);
    margin-bottom: 0.5rem;
}

section p {
    color: #666;
    font-size: 0.95rem;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-header {
    border: none;
    font-weight: 600;
}

/* Services Section */
#services .card-img-top {
    height: 200px;
    object-fit: cover;
}

#services .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eco-green);
    margin-top: 1rem;
}

#services ul {
    list-style: none;
    padding: 0;
}

#services ul li {
    padding: 0.25rem 0;
    color: #666;
}

#services ul li:before {
    content: "✓";
    color: var(--eco-light-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Features Section */
.feature-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Price Plan Section */
#priceplan .card {
    position: relative;
}

#priceplan .card.border-success:before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--eco-light-green);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

#priceplan .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--eco-green);
}

#priceplan ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

#priceplan ul li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.team-member h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.25rem;
}

.team-member p {
    font-size: 0.85rem;
    color: var(--eco-earth);
    margin: 0;
}

/* Reviews Section */
#reviews .card-body p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

#reviews .blockquote-footer cite {
    font-size: 0.85rem;
    color: var(--eco-earth);
}

/* Process Section */
.process-step {
    padding: 1.5rem 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--eco-light-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

/* Timeline Section */
.timeline-item {
    text-align: center;
    padding: 1rem;
}

.timeline-year {
    background: var(--eco-earth);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

/* Career Section */
#career .card-body h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.75rem;
}

#career .card-body p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

#career .text-muted {
    font-size: 0.8rem;
}

/* Core Info Section */
.info-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Gallery Section */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
#faq .card {
    transition: box-shadow 0.3s ease;
}

#faq .card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#faq h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.75rem;
}

#faq p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Blog Section */
#blog .card-img-top {
    height: 200px;
    object-fit: cover;
}

#blog h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--eco-green);
}

#blog p {
    font-size: 0.9rem;
    color: #666;
}

.btn-outline-success {
    border-color: var(--eco-light-green);
    color: var(--eco-light-green);
}

.btn-outline-success:hover {
    background-color: var(--eco-light-green);
    border-color: var(--eco-light-green);
}

/* Contact Section */
#contacts .form-label {
    font-weight: 600;
    color: var(--eco-green);
}

.contact-info {
    padding: 2rem 0;
}

.contact-info div {
    margin-bottom: 1rem;
}

.contact-info span {
    font-size: 0.95rem;
    color: #666;
}

.btn-success {
    background-color: var(--eco-light-green);
    border-color: var(--eco-light-green);
    font-weight: 600;
}

.btn-success:hover {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
}

/* Footer */
#footer {
    background-color: var(--eco-green-dark);
}

#footer h5, #footer h6 {
    color: var(--eco-sky);
    font-weight: 600;
}

#footer p, #footer small {
    color: #ccc;
}

#footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--eco-sky);
}

/* Additional Page Styles */
.breadcrumb-section {
    padding-top: 6rem;
}

.breadcrumb-item img {
    opacity: 0.7;
}

/* Mission Items */
.mission-item {
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.mission-item p {
    font-size: 0.85rem;
    color: #666;
}

/* Story Milestones */
.story-milestone {
    text-align: center;
    padding: 1rem;
}

.year-badge {
    background: var(--eco-sage);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.story-milestone h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.story-milestone p {
    font-size: 0.8rem;
    color: #666;
}

/* Initiative Cards */
.initiative-card {
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
}

.initiative-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.initiative-card p {
    font-size: 0.85rem;
    color: #666;
}

/* Impact Stats */
.impact-stat {
    padding: 1.5rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eco-light-green);
    margin-bottom: 0.5rem;
}

.impact-stat h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    font-size: 0.85rem;
    color: #666;
}

/* Award Items */
.award-item {
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.award-item p {
    font-size: 0.85rem;
    color: #666;
}

/* Page 2 Specific Styles */
.workspace-option, .amenity-item, .tech-feature, .benefit-item {
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.workspace-option:hover, .amenity-item:hover, .tech-feature:hover, .benefit-item:hover {
    transform: translateY(-5px);
}

.workspace-option h6, .amenity-item h6, .tech-feature h6, .benefit-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.workspace-option p, .amenity-item p, .tech-feature p, .benefit-item p {
    font-size: 0.85rem;
    color: #666;
}

/* Booking Steps */
.booking-step {
    padding: 1.5rem 1rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--eco-earth);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.booking-step h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
}

.booking-step p {
    font-size: 0.85rem;
    color: #666;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape-blob-1, .shape-blob-2 {
        animation: none;
    }
}

/* Focus States */
.btn:focus, .form-control:focus, .nav-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--eco-light-green);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Skip Link */
.sr-only-focusable:focus {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 0.5rem 1rem;
    background: var(--eco-green);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --eco-green: #000;
        --eco-earth: #333;
        --eco-light-green: #006600;
    }
    
    .card {
        border: 2px solid #000;
    }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
