:root {
    /* Primary Color Palette - 5 colors plus shades */
    --primary-green: #2d8659;
    --primary-green-light: #4fb887;
    --primary-green-dark: #1e5c3e;
    
    --accent-orange: #ff7b47;
    --accent-orange-light: #ff9e75;
    --accent-orange-dark: #e85d2b;
    
    --warm-cream: #f8f1e4;
    --warm-cream-light: #fcf9f2;
    --warm-cream-dark: #e6d9c3;
    
    --deep-blue: #1e3a8a;
    --deep-blue-light: #3b82f6;
    --deep-blue-dark: #1e40af;
    
    --earthy-brown: #8b4513;
    --earthy-brown-light: #a0522d;
    --earthy-brown-dark: #654321;
    
    /* Typography - Conservative sizes */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --h1-size: 2.25rem;
    --h2-size: 1.875rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --navbar-brand-size: 1.5rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--earthy-brown-dark);
    background: var(--warm-cream-light);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1 { font-size: var(--h1-size); font-weight: 700; }
h2 { font-size: var(--h2-size); font-weight: 600; }
h3 { font-size: var(--h3-size); font-weight: 600; }
h4 { font-size: var(--h4-size); font-weight: 500; }

.navbar-brand {
    font-size: var(--navbar-brand-size) !important;
    font-weight: 700;
    color: var(--primary-green) !important;
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-cream-light) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    color: var(--earthy-brown) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FAM_images/fbhh_hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-orange-light), var(--accent-orange));
    opacity: 0.2;
}

.blob-1 { width: 300px; height: 300px; top: 20%; right: 10%; }
.blob-2 { width: 200px; height: 200px; top: 60%; right: 30%; }
.blob-3 { width: 150px; height: 150px; top: 40%; right: 50%; }

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-title {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

.section-desc {
    color: var(--earthy-brown);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: var(--warm-cream);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid var(--primary-green-light);
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--warm-cream-light) 0%, white 100%);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
    margin-bottom: 2rem;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--earthy-brown);
    border-bottom: 1px solid var(--warm-cream);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    background: var(--deep-blue-dark);
    color: white;
}

.team-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent-orange);
}

/* Reviews Section */
.reviews-section {
    background: var(--warm-cream);
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.review-stars {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    color: white;
}

.process-step {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.process-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-item {
    border: 1px solid var(--warm-cream-dark);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: var(--warm-cream);
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-green-dark);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--warm-cream-dark);
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    color: var(--earthy-brown);
    border-top: 1px solid var(--warm-cream-dark);
}

/* Contact Section */
.contact-section {
    background: var(--earthy-brown-dark);
    color: white;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-control {
    border: none;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: none;
    background: white;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,123,71,0.4);
}

/* Footer */
.footer {
    background: var(--earthy-brown-dark);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--accent-orange);
    font-size: var(--h4-size);
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--warm-cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-orange);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--warm-cream);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Price Plan */
.priceplan-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-dark) 100%);
    color: white;
}

.price-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin: 1rem 0;
}

/* Case Study */
.casestudy-section {
    background: var(--warm-cream-light);
}

.case-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-green);
}

/* Timeline */
.timeline-section {
    background: white;
}

.timeline-item {
    background: var(--warm-cream);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    border-left: 4px solid var(--accent-orange);
}

/* Career */
.career-section {
    background: var(--primary-green-light);
    color: white;
}

.career-card {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* Core Info */
.coreinfo-section {
    background: var(--earthy-brown);
    color: white;
}

.coreinfo-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* Blog */
.blog-section {
    background: white;
}

.blog-card {
    background: var(--warm-cream-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.blog-link:hover {
    color: var(--primary-green-dark);
}

/* Breadcrumb */
.breadcrumb-container {
    background: var(--warm-cream);
    padding: 1rem 0;
}

.breadcrumb-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* Space page */
#space {
    min-height: 80vh;
    background: var(--warm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,134,89,0.4);
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-orange) 50%, transparent 100%);
    margin: 3rem 0;
} 