:root {
    /* Primary Color Palette - 5 Colors */
    --primary-brown: #8B4513;
    --warm-cream: #F5F5DC;
    --forest-green: #228B22;
    --charcoal-gray: #36454F;
    --accent-gold: #DAA520;
    
    /* Light/Dark Shades */
    --light-brown: #CD853F;
    --dark-brown: #654321;
    --light-cream: #FFFEF7;
    --dark-cream: #DDDBB7;
    --light-green: #90EE90;
    --dark-green: #006400;
    --light-gray: #708090;
    --dark-gray: #2F4F4F;
    --light-gold: #FFD700;
    --dark-gold: #B8860B;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.125rem;
    --font-size-h6: 1rem;
    
    /* 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(--charcoal-gray);
    background-color: var(--light-cream);
}

/* Typography */
h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--charcoal-gray);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

h4, h5, h6 {
    color: var(--charcoal-gray);
    margin-bottom: 0.5rem;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Conservative navbar brand size */
.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-brown) !important;
}

/* Header Styles */
.navbar {
    background: var(--warm-cream);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    color: var(--charcoal-gray) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-brown) !important;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-brown), var(--primary-brown));
    color: white;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="4" fill="rgba(255,255,255,0.1)"/></svg>');
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.bg-light {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-cream) 100%) !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: 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 Cards */
.card-title {
    color: var(--primary-brown);
    font-weight: 600;
}

.card-text {
    color: var(--dark-gray);
}

/* Icon Styles */
.fas, .far {
    color: var(--accent-gold);
}

.text-primary {
    color: var(--primary-brown) !important;
}

.text-success {
    color: var(--forest-green) !important;
}

.text-warning {
    color: var(--accent-gold) !important;
}

.text-danger {
    color: var(--primary-brown) !important;
}

/* Swiper Styles */
.swiper {
    padding-bottom: 50px;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-brown);
}

/* Form Styles */
.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--light-gray);
    margin-bottom: 0.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-cream) 100%);
    color: var(--charcoal-gray);
    font-weight: 600;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-gold);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--light-gold) 100%);
    color: white;
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--charcoal-gray);
    color: var(--warm-cream);
}

footer a {
    color: var(--warm-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold);
}

/* Team Section */
#team .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Pricing Cards */
.border-primary {
    border: 3px solid var(--accent-gold) !important;
    position: relative;
}

.border-primary::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Breadcrumb */
nav[aria-label="breadcrumb"] {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-cream) 100%);
    border-bottom: 1px solid var(--light-gray);
}

/* Utility Classes */
.text-furniture-brown {
    color: var(--primary-brown) !important;
}

.bg-furniture-cream {
    background-color: var(--warm-cream) !important;
}

.bg-furniture-green {
    background-color: var(--forest-green) !important;
}

.text-furniture-gold {
    color: var(--accent-gold) !important;
} 