:root {
    --primary-color: #8B4513;
    --primary-light: #D2B48C;
    --primary-dark: #654321;
    --secondary-color: #F5E6D3;
    --accent-color: #E6C2A6;
    --text-dark: #2C1810;
    --text-muted: #6C5B4F;
    --bg-light: #FDFCFA;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

/* Custom Bootstrap theme */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    z-index: 1;
}

.hero-blob-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.3;
}

.hero-blob-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.4;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Pricing Cards */
.pricing-card {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.price-display {
    margin: 1.5rem 0;
}

/* Team Section */
.team-member img {
    object-fit: cover;
    border: 4px solid var(--secondary-color);
}

/* Review Cards */
.review-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rating {
    font-size: 1.2rem;
}

/* FAQ Cards */
.faq-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    padding: 12px 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

/* Footer - Enhanced Contrast */
#footer {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

#footer h5, #footer h6 {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

#footer p {
    color: #f0f0f0 !important;
    line-height: 1.6 !important;
    margin-bottom: 0.75rem !important;
}

#footer ul {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

#footer li {
    margin-bottom: 0.5rem !important;
    padding: 0.25rem 0 !important;
}

#footer small {
    color: #e0e0e0 !important;
    font-size: 0.875rem !important;
}

#footer a {
    color: #93c5fd !important;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #dbeafe !important;
    text-decoration: underline !important;
}

#footer a:focus {
    outline: 2px solid #93c5fd !important;
    outline-offset: 2px !important;
    color: #dbeafe !important;
}

/* Contact Information in Footer */
.contact-info {
    background: transparent !important;
    color: #ffffff !important;
    padding: 0 !important;
}

.contact-info p, .contact-info span, .contact-info div {
    color: #ffffff !important;
    background: transparent !important;
}

.contact-info i {
    color: #93c5fd !important;
    margin-right: 8px !important;
}

/* Footer disclaimer styling */
#footer .disclaimer {
    background: rgba(255, 255, 255, 0.05) !important;
    border-left: 4px solid #93c5fd !important;
    padding: 1rem !important;
    margin: 1rem 0 !important;
    border-radius: 4px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    #footer {
        background-color: #000000 !important;
        color: #ffffff !important;
    }
    
    #footer a {
        color: #ffffff !important;
        font-weight: bold !important;
    }
}

/* Ensure proper spacing between footer elements */
#footer .row > .col-lg-4 {
    margin-bottom: 1.5rem !important;
}

#footer hr {
    border-color: #404040 !important;
    margin: 2rem 0 !important;
}

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

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

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    gap: 2rem;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Job Cards */
.job-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

/* Education Cards */
.education-card {
    transition: transform 0.3s ease;
}

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

/* Newsletter */
.newsletter-form {
    background: var(--secondary-color);
}

.newsletter-benefit {
    text-align: center;
    margin-bottom: 2rem;
}

/* Custom Grid for 5 columns */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-lg-2-4 {
        width: 50%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .col-lg-2-4 {
        width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-blob-1,
    .hero-blob-2 {
        display: none;
    }
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-shapes,
    #header,
    #footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
