/* Main CSS for Eco-Friendly Office Cleaning Company */

:root {
    /* Eco-friendly pastel color palette */
    --primary-green: #85c596;
    --primary-blue: #79abc2;
    --primary-cream: #fffcf0;
    --primary-sage: #8eb090;
    --primary-earth: #a1998d;
    
    /* Light variants */
    --light-green: #b5e1bc;
    --light-blue: #d8f2ff;
    --light-cream: #faf9f5;
    --light-sage: #eaf4ed;
    --light-earth: #ffffff;
    
    /* Dark variants */
    --dark-green: #43794a;
    --dark-blue: #5d8bb8;
    --dark-cream: #d2d0c1;
    --dark-sage: #82a585;
    --dark-earth: #999085;
    
    /* Typography */
    --font-size-base: 0.95rem;
    --font-size-h1: 2rem;
    --font-size-h2: 1.6rem;
    --font-size-h3: 1.3rem;
    --navbar-brand-size: 1.2rem;
}

/* Base typography - conservative sizes */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #464646;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 600;
    color: var(--dark-green);
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 500;
    color: var(--dark-green);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
    color: var(--dark-sage);
}

/* Navbar conservative sizing */
.navbar-brand {
    font-size: var(--navbar-brand-size);
    font-weight: 600;
    color: var(--dark-green);
}

/* Hero section - fullscreen */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-cream), var(--light-green));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
}

/* Section styling */
.section {
    padding: 4rem 0;
}

.section-bg {
    background-color: var(--light-cream);
}

.section-bg-alt {
    background-color: var(--light-green);
}

/* Card styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(130, 207, 139, 0.10);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.card-eco {
    background: var(--light-cream);
    border-left: 4px solid var(--primary-green);
}

/* Buttons */
.btn-eco {
    background-color: var(--primary-green);
    border: none;
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-eco:hover {
    background-color: var(--dark-green);
    color: white;
    transform: translateY(-1px);
}

.btn-eco-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Services cards */
.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    height: 100%;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Team member cards */
.team-card {
    text-align: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--light-sage);
}

/* FAQ cards */
.faq-card {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
}

.faq-question {
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #6f6768;
    margin: 0;
}

/* Contact form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(132, 205, 133, 0.10);
}

.form-control {
    border: 1px solid var(--light-sage);
    border-radius: 8px;
    padding: 0.8rem;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(121, 185, 124, 0.25);
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--light-green);
}

.footer a {
    color: var(--light-cream);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: var(--light-sage);
    border-radius: 10px;
    overflow: hidden;
}

/* Price plan cards */
.price-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
}

.price-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 45%;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    width: 15px;
    height: 15px;
    background: var(--primary-green);
    border-radius: 50%;
    right: -37.5px;
}

.timeline-item:nth-child(even)::before {
    left: -37.5px;
    right: auto;
}

/* Process steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .card:hover {
        transform: none;
    }
    
    .btn-eco:hover {
        transform: none;
    }
}

/* Utility classes for spacing */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Breadcrumb styling */
.breadcrumb-container {
    padding: 1rem 0;
    background: var(--light-cream);
}

.breadcrumb-image {
    height: 20px;
    width: auto;
} 


/* 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;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
