:root {
    /* Primary Color Palette - 5 main colors plus shades */
    --primary-green: #2d7a5a;
    --primary-orange: #e67e22;
    --primary-purple: #8e44ad;
    --primary-teal: #1abc9c;
    --primary-coral: #ff6b6b;
    
    /* Light Shades */
    --light-green: #52c085;
    --light-orange: #f39c12;
    --light-purple: #9b59b6;
    --light-teal: #48c9b0;
    --light-coral: #ff8a80;
    
    /* Dark Shades */
    --dark-green: #1e4d3a;
    --dark-orange: #d35400;
    --dark-purple: #6c3483;
    --dark-teal: #138d75;
    --dark-coral: #e74c3c;
    
    /* Neutral Colors */
    --neutral-light: #f8f9fa;
    --neutral-medium: #6c757d;
    --neutral-dark: #343a40;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
    --gradient-secondary: linear-gradient(135deg, var(--primary-orange), var(--primary-coral));
    --gradient-accent: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    
    /* Conservative Font Sizes */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Base Styles */
body {
  overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--neutral-dark);
    overflow-x: hidden;
}

/* Typography - Conservative Sizes */
.navbar-brand {
    font-size: var(--font-size-xl) !important;
    font-weight: 700;
}

h1, .h1 {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    color: var(--dark-green);
}

h2, .h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-green);
}

h3, .h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

/* Header Styling */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
  font-size: 10px !important;
    font-weight: 500;
    color: var(--neutral-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../PRO_images/hero-background.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: var(--font-size-lg);
    opacity: 0.9;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, var(--neutral-light), white);
}

.services-card {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* About Section Features */
.about-feature {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: var(--gradient-accent);
    color: white;
}

.about-feature i {
    margin-bottom: var(--spacing-md);
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 122, 90, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb */
.breadcrumb-container {
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-img {
    height: 24px;
    width: auto;
    opacity: 0.7;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green)) !important;
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Section Backgrounds */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
}

.section-divider {
    height: 1px;
    background: var(--gradient-primary);
    margin: var(--spacing-xl) 0;
}

/* Custom Color Variants */
.text-primary {
    color: var(--primary-green) !important;
}

.text-success {
    color: var(--primary-teal) !important;
}

.text-warning {
    color: var(--primary-orange) !important;
}

.text-info {
    color: var(--light-teal) !important;
}

.text-danger {
    color: var(--primary-coral) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-success {
    background: var(--gradient-accent) !important;
}

.bg-warning {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange)) !important;
}

.bg-info {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal)) !important;
}

.bg-danger {
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral)) !important;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
}

/* Team Section */
.team-member {
    text-align: center;
    padding: var(--spacing-lg);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--spacing-md);
    border: 4px solid var(--primary-green);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

/* FAQ Accordion */
.accordion-button {
    background: var(--neutral-light);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: var(--spacing-lg);
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
} 