:root {
    /* Beekeeping Color Palette - Pastel High Contrast */
    --primary-honey: #F4A460;
    --primary-amber: #FFBF00; 
    --primary-cream: #FFF8DC;
    --primary-sage: #87CEEB;
    --primary-earth: #8B4513;
    
    /* Light/Dark Shades */
    --honey-light: #F5DEB3;
    --honey-dark: #CD853F;
    --amber-light: #FFDB58;
    --amber-dark: #DAA520;
    --cream-light: #FFFEF7;
    --cream-dark: #F0E68C;
    --sage-light: #B0E0E6;
    --sage-dark: #4682B4;
    --earth-light: #D2B48C;
    --earth-dark: #654321;
    
    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-h6: 1rem;
    --font-size-h5: 1.125rem;
    --font-size-h4: 1.25rem;
    --font-size-h3: 1.375rem;
    --font-size-h2: 1.5rem;
    --font-size-h1: 1.75rem;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --element-margin: 1.5rem;
}

/* Typography - Conservative Sizes */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--earth-dark);
    overflow-x: hidden;
}

h1 { font-size: var(--font-size-h1); font-weight: 600; }
h2 { font-size: var(--font-size-h2); font-weight: 600; }
h3 { font-size: var(--font-size-h3); font-weight: 500; }
h4 { font-size: var(--font-size-h4); font-weight: 500; }
h5 { font-size: var(--font-size-h5); font-weight: 500; }
h6 { font-size: var(--font-size-h6); font-weight: 500; }

.navbar-brand {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

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

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-decoration-1 {
    width: 200px;
    height: 200px;
    background: var(--amber-dark);
    top: 20%;
    right: 10%;
}

.hero-decoration-2 {
    width: 150px;
    height: 150px;
    background: var(--sage-dark);
    bottom: 30%;
    left: 5%;
}

/* Section Spacing */
section {
    padding: var(--section-padding);
}

.section-title {
    color: var(--earth-dark);
    margin-bottom: var(--element-margin);
}

.section-subtitle {
    color: var(--sage-dark);
    margin-bottom: var(--element-margin);
}

/* Services Cards */
.service-card {
    background: var(--cream-light);
    border: 1px solid var(--honey-light);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.service-price {
    color: var(--amber-dark);
    font-weight: 600;
    font-size: var(--font-size-xl);
}

/* Features Grid */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--sage-light);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--earth-dark);
    margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

/* Reviews */
.review-card {
    background: white;
    border-left: 4px solid var(--amber-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.review-author {
    color: var(--earth-dark);
    font-weight: 500;
}

/* FAQ Cards */
.faq-card {
    background: var(--cream-light);
    border: 1px solid var(--honey-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
}

.faq-question {
    color: var(--earth-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--sage-dark);
}

/* Contact Form */
.contact-form {
    background: var(--cream-light);
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-control {
    border: 1px solid var(--honey-light);
    border-radius: 0.375rem;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: var(--amber-dark);
    box-shadow: 0 0 0 0.2rem rgba(255, 191, 0, 0.25);
}

.btn-primary {
    background-color: var(--amber-dark);
    border-color: var(--amber-dark);
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--honey-dark);
    border-color: var(--honey-dark);
}

/* Gallery */
.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: var(--honey-light);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--sage-light);
}

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

.footer h5 {
    color: var(--amber-light);
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: var(--cream-light);
}

.footer a:hover {
    color: var(--amber-light);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: var(--earth-dark);
    font-weight: 500;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--amber-dark);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

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

/* Timeline */
.timeline-item {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--sage-dark);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Case Studies */
.case-study-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-3px);
}

/* Career Cards */
.career-card {
    background: var(--sage-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

/* Core Info */
.core-info-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
}

.core-info-icon {
    font-size: 2.5rem;
    color: var(--amber-dark);
    margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
    background: white;
    border: 2px solid var(--honey-light);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.price-card:hover {
    border-color: var(--amber-dark);
    transform: translateY(-5px);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--amber-dark);
}

/* Additional Page Sections */
.add-page-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--honey-light);
}

.add-page-section:last-child {
    border-bottom: none;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

/* Space Page */
#space {
    min-height: 70vh;
    background: var(--cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .service-card:hover,
    .team-card:hover,
    .blog-card:hover,
    .case-study-card:hover,
    .career-card:hover,
    .price-card:hover {
        transform: none;
    }
} 

.hero-section h1 {
    padding-top: 150px;
}


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