/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Custom Variables */
:root {
    --primary-color: #8B4513; /* Rust color */
    --primary-dark: #6B3B0A;
    --cream: #F5F5DC;
    --cream-dark: #E8E8CC;
    --charcoal: #2C3E50;
    --charcoal-light: #34495E;
    --sky-blue: #87CEEB;
    --sky-blue-light: #B0E0E6;
}

/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
}

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

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

/* Avatar circles for trust indicators */
.avatar-circle {
    font-weight: bold;
    font-size: 14px;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Benefit Cards */
.benefit-card {
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.benefit-card:hover .icon-wrapper {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

/* City Items */
.city-item:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 70px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}

/* Animation classes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

/* Custom shadows */
.shadow-soft {
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
}

.shadow-card {
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
}


