/* Plant Walls Pro - Main CSS */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Color Palette - Pastel High-Contrast */
    --primary-green: #719753;
    --primary-mint: #96ce8c;
    --primary-sage: #b3bea6;
    --primary-forest: #3f5d39;
    --primary-lime: #addab4;
    
    /* Light Shades */
    --light-green: #f9fffa;
    --light-mint: #F0FAF0;
    --light-sage: #F5F8F2;
    --light-forest: #eef3eb;
    --light-lime: #F8FDF8;
    
    /* Dark Shades */
    --dark-green: #426632;
    --dark-mint: #69a15f;
    --dark-sage: #707c64;
    --dark-forest: #3f5535;
    --dark-lime: #b9e9b7;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #202821;
    --gray-light: #F8F9FA;
    --gray-medium: #6d777e;
    --gray-dark: #383b3e;
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --container-padding: 1rem;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(115, 153, 89, 0.10);
    --shadow-medium: 0 4px 20px rgba(99, 123, 87, 0.15);
    --shadow-heavy: 0 8px 30px rgba(90, 125, 72, 0.20);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--black);
    background-color: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-forest);
}

h1 {
    font-size: 2.34rem;
}

h2 {
    font-size: 1.89rem;
}

h3 {
    font-size: 1.53rem;
}

h4 {
    font-size: 1.29rem;
}

h5 {
    font-size: 1.15rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--dark-green);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    padding: 0.5rem 1rem;
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-mint) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--primary-mint) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.hero h1 {
    font-size: 2.64rem;
    font-weight: 700;
    color: var(--dark-forest);
    margin-bottom: 1rem;
    padding-top: 100px;
}

.hero h2 {
    font-size: 1.62rem;
    color: var(--primary-green);
    margin-bottom: 1.65rem;
}

.hero p {
    font-size: var(--font-size-lg);
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

/* ===== SECTIONS ===== */
.page-section,
section:not(.hero) {
    padding: var(--section-padding);
}

section:nth-child(even) {
    background-color: var(--light-green);
}

/* ===== CARDS ===== */
.card {
    border: none;
    box-shadow: var(--shadow-light);
    transition: var(--transition-base);
    height: 100%;
    background-color: var(--white);
}

.card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.card-title {
    color: var(--dark-forest);
    font-weight: 600;
}

.card-text {
    color: var(--gray-dark);
}

/* ===== SERVICES SECTION ===== */
.services .card-img-top {
    height: 200px;
    object-fit: cover;
}

.price {
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid var(--light-green);
}

/* ===== FEATURES SECTION ===== */
.feature-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: var(--transition-base);
}

.feature-box:hover {
    box-shadow: var(--shadow-medium);
}

.feature-box i {
    margin-bottom: 1.73rem;
    color: var(--primary-green);
}

/* ===== PRICING SECTION ===== */
.pricing-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
}

.pricing-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 1.02rem;
}

.pricing-card.featured .card-body {
    padding-top: 3rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 1.64rem;
}

/* ===== TEAM SECTION ===== */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--light-green);
    transition: var(--transition-base);
}

.team-member img:hover {
    border-color: var(--primary-green);
}

.team-member h5 {
    font-size: 1rem;
    margin-bottom: 0.46rem;
}

.team-member p {
    font-size: 0.98rem;
    color: var(--gray-medium);
}

/* ===== REVIEWS SECTION ===== */
.review-card {
    background-color: var(--light-mint);
    border-left: 4px solid var(--primary-green);
}

.review-card h6 {
    color: var(--dark-forest);
    font-weight: 600;
    margin-bottom: 0.98rem;
}

/* ===== PROCESS SECTION ===== */
.process-step {
    position: relative;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.28rem;
    margin: 0 auto 1rem;
}

/* ===== TIMELINE SECTION ===== */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    background-color: var(--white);
    padding: 1.5rem;
    margin-bottom: 1.63rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-green);
}

.timeline-item h5 {
    color: var(--dark-forest);
    margin-bottom: 0.64rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--light-sage);
}

.contact-info {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-light);
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-green);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: var(--primary-green);
}

.contact-item h6 {
    margin-bottom: 0.49rem;
    color: var(--dark-forest);
}

/* ===== FORMS ===== */
.form-control {
    border: 2px solid var(--light-green);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(94, 136, 73, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-forest);
    margin-bottom: 0.55rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* ===== GALLERY ===== */
.gallery img {
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* ===== FAQ SECTION ===== */
.faq .card {
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-green);
}

.faq .card h6 {
    color: var(--dark-forest);
    font-weight: 600;
    margin-bottom: 0.88rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-lime);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5, .footer h6 {
    color: var(--primary-mint);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--light-green);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer a:hover {
    color: var(--primary-mint);
}

.footer hr {
    border-color: var(--primary-green);
    margin: 2rem 0 1rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    padding: 2rem 0 1rem;
    background-color: var(--light-green);
    margin-top: 4rem;
}

.breadcrumb-img {
    max-height: 50px;
    opacity: 0.7;
}

/* ===== INFO CARDS ===== */
.info-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-light);
    border-top: 3px solid var(--primary-green);
    height: 100%;
    transition: var(--transition-base);
}

.info-card:hover {
    box-shadow: var(--shadow-medium);
}

.info-card h5 {
    color: var(--dark-forest);
    margin-bottom: 1rem;
}

/* ===== ANIMATIONS & ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== UTILITIES ===== */
.text-primary {
    color: var(--primary-green);
}

.bg-primary {
    background-color: var(--primary-green);
}

.border-primary {
    border-color: var(--primary-green);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    padding-top: 100px;
}
    
    .hero h2 {
        font-size: 1.27rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 2rem 0;
    }
    
    .hero {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.79rem;
    padding-top: 100px;
}
    
    .contact-info {
        margin-top: 2rem;
    }
}

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
} 


/* 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);
}

.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;
    }
}
