/* Color Variables */
:root {
    --primary-green: #4a7c59;
    --light-green: #8fbc8f;
    --dark-green: #2d4a2d;
    --cream-white: #faf8f3;
    --warm-beige: #e8dcc6;
    --accent-orange: #d2691e;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-white);
    overflow-x: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Header */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--warm-beige) 100%);
    padding-top: 80px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Sections */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--warm-beige) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Service Items */
.card-title {
    color: var(--primary-green);
    font-weight: 600;
}

.text-success {
    color: var(--success) !important;
}

.text-primary {
    color: var(--primary-green) !important;
}

/* Team Section */
.rounded-circle {
    border: 4px solid var(--light-green);
    transition: all 0.3s ease;
}

.rounded-circle:hover {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

/* Reviews Section */
.fas.fa-star {
    color: var(--warning);
}

/* Gallery */
#gallery img {
    transition: all 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* FAQ Cards */
#faq .card {
    border-left: 4px solid var(--primary-green);
}

/* Contact Form */
.form-control {
    border-radius: 10px;
    border: 2px solid var(--warm-beige);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

/* Footer */
#footer {
    background-color: var(--dark-green) !important;
    color: white;
}

#footer a {
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--light-green) !important;
}

/* Icons */
.fa-3x {
    font-size: 2.5rem;
}

.fa-2x {
    font-size: 1.8rem;
}

/* Process Steps */
.bg-primary {
    background-color: var(--primary-green) !important;
}

/* Timeline */
.timeline .bg-success {
    background-color: var(--success) !important;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item {
    font-size: 0;
}

/* Utilities */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Animation Classes */
.sal-animate {
    transition: all 0.5s ease;
}

/* Custom spacing */
.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Image responsiveness */
.img-fluid {
    border-radius: 10px;
}

/* Custom decorative elements */
.position-relative::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--light-green), var(--primary-green));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    top: -20px;
    right: -20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-buttons .btn {
        padding: 10px 25px;
        margin-bottom: 10px;
    }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
