/* Custom CSS Variables - Warm, Welcoming Color Palette */
:root {
    --warm-brown: #8b6f47;
    --deep-brown: #6b5438;
    --terracotta: #c17a5f;
    --warm-cream: #f7f3ed;
    --soft-beige: #ede8df;
    --warm-tan: #d4c4a8;
    --sage-green: #9caf88;
    --muted-green: #7a9471;
    --text-dark: #3a3a3a;
    --text-light: #6b6b6b;
    --text-warm: #5a4a3a;
    --bg-warm: #faf8f4;
    --bg-white: #ffffff;
    --border-warm: #e8e0d4;
    --border-color: #e8e0d4;
    --shadow-warm: rgba(139, 111, 71, 0.1);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--bg-warm);
    font-weight: 400;
    padding-top: 76px;
}

/* Navigation */
.navbar {
    background: var(--bg-white) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--deep-brown) !important;
    letter-spacing: -0.3px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    font-size: 0.95rem;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--terracotta) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(45, 45, 45, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1619441207978-3d326c46e2c9?q=80&w=1738&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-dark);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.3) 0%, rgba(107, 84, 56, 0.5) 100%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--warm-cream);
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--warm-cream);
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Section Styles */
.section-title {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--deep-brown);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Service Cards */
.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-warm);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px var(--shadow-warm);
}

/* .service-card:hover {
    border-color: var(--terracotta);
    box-shadow: 0 4px 16px var(--shadow-warm);
    transform: translateY(-2px);
} */

.service-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.service-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-details {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.service-details a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}

.service-details a:hover {
    text-decoration: underline;
}

.discovery-call-content {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--border-warm);
}

.discovery-call-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-warm);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* .about-image-wrapper:hover .about-image {
    transform: scale(1.02);
} */

.about-content {
    padding-left: 2rem;
}

.about-text {
    color: var(--text-warm);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* Recommended Contacts Section */
.recommended-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-warm);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px var(--shadow-warm);
    display: flex;
    flex-direction: column;
}

.recommended-card:hover {
    border-color: var(--terracotta);
    box-shadow: 0 4px 16px var(--shadow-warm);
    transform: translateY(-2px);
}

.recommended-name {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.recommended-title {
    font-size: 1rem;
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.recommended-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.recommended-contact {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-warm);
}

.recommended-contact p {
    color: var(--text-warm);
    font-size: 0.9rem;
    line-height: 1.6;
}

.recommended-contact a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.recommended-contact a:hover {
    color: var(--warm-brown);
    text-decoration: underline;
}

.recommended-contact strong {
    color: var(--deep-brown);
    font-weight: 500;
}

/* Contact Section */
.contact-info {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-warm);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-warm);
}

.contact-form .form-label {
    color: var(--deep-brown);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 1px solid var(--border-warm);
    border-radius: 6px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.contact-form .form-control:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 0.2rem rgba(193, 122, 95, 0.15);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-light);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid {
    border-color: var(--sage-green);
}

.contact-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.btn-primary {
    background-color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background-color: var(--deep-brown);
    border-color: var(--deep-brown);
}
.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
}

#formMessage {
    min-height: 50px;
}

.alert {
    border-radius: 0;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: rgba(193, 122, 95, 0.1);
    color: var(--deep-brown);
    border-left: 3px solid var(--terracotta);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 3px solid #dc3545;
}

/* Footer */
.footer {
    background: var(--deep-brown);
    color: var(--warm-cream);
    border-top: 1px solid var(--border-warm);
}

.footer p {
    font-size: 0.9rem;
    color: var(--warm-tan);
    font-weight: 300;
    margin: 0;
}

/* Background Colors */
.bg-warm {
    background-color: var(--bg-warm) !important;
    background-image: url('https://images.unsplash.com/photo-1619441207978-3d326c46e2c9?q=80&w=1738&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.bg-warm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(218, 211, 197, 0.85);
    z-index: 0;
}

.bg-warm > .container {
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-image {
        height: 350px;
    }

    .recommended-card {
        padding: 2rem 1.5rem;
    }

    .bg-warm {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}
