:root {
    --primary: #6B8E7A;
    --secondary: #D8C3A5;
    --accent: #C97C5D;
    --background: #FAF8F5;
    --dark: #2F3A33;
    --text: #5A5A5A;
    --whitetext: #fff;
    --bs-primary: #6B8E7A;
    --bs-primary-rgb: 107, 142, 122;
    --bs-link-color: #6B8E7A;
    --bs-link-hover-color: #587565;
}

/* =========================================================
RESET & BASE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Segoe UI', sans-serif;
}

main {
    width: 100%;
}

/* =========================================================
NAVBAR
========================================================= */

.navbar-custom {
    background-color: #fff !important;
    padding: 20px 0;
    transition: box-shadow .3s ease, padding .3s ease;
}

.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    padding: 10px 0;
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    margin-left: 20px;
    position: relative;
    transition: .3s;
}

    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: .3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* =========================================================
HERO - HOME / CAROUSEL
========================================================= */

.hero-section {
    margin-top: 100px;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .15) );
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 650px;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--whitetext);
    line-height: 1.1;
}

.hero-title-secondary {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.hero-subtitle {
    margin-top: 24px;
    font-size: 1.25rem;
}

/* =========================================================
HERO - INTERNAL PAGES
========================================================= */

.page-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient( rgba(250, 248, 245, .92), rgba(250, 248, 245, .95) ), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   
}

/* =========================================================
SECTIONS
========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

/* =========================================================
BUTTONS
========================================================= */

.btn-brand {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    transition: .3s;
}

    .btn-brand:hover {
        background-color: #587565;
        color: white;
    }

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active {
        background-color: #587565;
        border-color: #587565;
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary:active,
    .btn-outline-primary.active {
        background-color: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

/* =========================================================
SERVICES
========================================================= */

.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.service-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

    .service-content h2,
    .service-content h3 {
        margin-top: 2rem;
        color: #2c5e53;
    }

.service-detail-hero img {
    transition: .3s;
}

    .service-detail-hero img:hover {
        transform: scale(1.02);
    }

/* =========================================================
FEATURE BOXES
========================================================= */

.feature-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

    .feature-box i {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

/* =========================================================
SPECIALTIES
========================================================= */

.specialty-card {
    background-color: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: .3s;
}

    .specialty-card:hover {
        transform: translateY(-5px);
    }

    .specialty-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

/* =========================================================
ABOUT
========================================================= */

.about-image-wrapper {
    position: relative;
}

    .about-image-wrapper img {
        width: 100%;
        min-height: 420px;
        object-fit: cover;
    }

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5f6b66;
}

.about-value-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 1rem;
    background: #f8faf9;
    border: 1px solid rgba(44, 94, 83, .08);
    transition: all .3s ease;
}

    .about-value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }

.about-value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(44, 94, 83, .1);
    color: var(--primary);
    font-size: 1.4rem;
}

.about-value-card h4 {
    margin-bottom: .75rem;
}

.about-value-card p {
    margin-bottom: 0;
    color: #6c757d;
    line-height: 1.7;
}

/* =========================================================
TESTIMONIALS
========================================================= */

.testimonial-card {
    height: 100%;
    padding: 35px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(107, 142, 122, .15);
    box-shadow: 0 10px 30px rgba(107, 142, 122, .12);
}

    .testimonial-card p {
        font-style: italic;
    }

.testimonial-comment {
    color: var(--text);
    line-height: 1.7;
}

.testimonial-role {
    color: var(--primary);
    font-weight: 500;
}

.rating-star {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Testimonial Carousel */

.testimonial-control {
    width: 45px;
}

    .testimonial-control .carousel-control-prev-icon,
    .testimonial-control .carousel-control-next-icon {
        padding: 20px;
        border-radius: 50%;
        background-color: var(--primary);
    }

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

/* =========================================================
BLOG
========================================================= */

.blog-content {
    font-size: 1.1rem;
    line-height: 1.9;
    align-content: stretch;
}

    .blog-content h2,
    .blog-content h3,
    .blog-content h4 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: #2c5e53;
    }

    .blog-content img {
        max-width: 100%;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .blog-content ul,
    .blog-content ol {
        padding-left: 1.5rem;
    }

    .blog-content blockquote {
        padding-left: 1rem;
        border-left: 4px solid #198754;
        color: #666;
        font-style: italic;
    }

/* =========================================================
CONTACT
========================================================= */

.contact-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient( rgba(250, 248, 245, .92), rgba(250, 248, 245, .95) ), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    
}

.contact-info-card,
.contact-form-card {
    padding: 40px;
    border-radius: 25px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

    .contact-item i {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(107, 142, 122, .1);
        color: var(--primary);
        font-size: 1.2rem;
    }

    .contact-item h6 {
        margin-bottom: 5px;
        color: var(--dark);
        font-weight: 700;
    }

/* MAP */

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* =========================================================
FORMS
========================================================= */

.form-control {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 15px;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .15rem rgba(107, 142, 122, .15);
    }

/* =========================================================
CTA
========================================================= */

.cta-section {
    padding: 100px 0;
    background-color: var(--primary);
    color: white;
}

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }

/* =========================================================
FOOTER
========================================================= */

.footer {
    padding: 60px 0;
    background-color: var(--dark);
    color: white;
}

    .footer h4 {
        font-weight: 700;
    }

/* =========================================================
WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    transition: .3s;
}

    .whatsapp-float:hover {
        transform: scale(1.08);
        color: white;
    }

/* =========================================================
TESTIMONIAL THANKS
========================================================= */

.testimonial-thanks {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

    .testimonial-thanks .card {
        border-radius: 24px;
    }

    .testimonial-thanks .bg-light {
        border-radius: 15px;
    }

.thanks-icon i {
    font-size: 80px;
    color: #198754;
}

/* =========================================================
ADMIN LOGIN
========================================================= */

.admin-login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.admin-login-container {
    width: 100%;
    max-width: 450px;
}

.admin-login-card {
    padding: 50px;
    border-radius: 25px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* =========================================================
ADMIN
========================================================= */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    padding: 40px 30px;
    background-color: var(--dark);
    color: white;
}

    .admin-sidebar a {
        display: block;
        margin-bottom: 20px;
        color: white;
        text-decoration: none;
        opacity: .85;
        transition: .3s;
    }

        .admin-sidebar a:hover {
            opacity: 1;
        }

.admin-content {
    flex: 1;
    padding: 40px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 768px) {
    .hero-image {
        height: 550px;
    }

    .hero-caption {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .admin-sidebar {
        width: 220px;
    }

    .admin-content {
        padding: 25px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }   
}
