:root {
    --primary-color: #0E8388;
    --primary-hover: #0e777a;

    --text-primary: #000;
    --text-secondary: #777777;
    --text-light: #ffffff;

    --bg-light: #E9F8F9;
    --bg-light-alt: #F2F3ED;
    --bg-white: #ffffff;
    --bg-footer: #C0EEF2;

    --border-light: rgba(0, 0, 0, 0.1);
    --border-gray: #ddd;
    --shadow-color: rgba(0, 0, 0, 0.1);

    --accent-blue: #0E8388;
    --placeholder-color: #999;
    --pricing-primary: #FF2E63;
    --pricing-secondary: #fff2f4;
}

/* #### Generated By: http://font.download #### */
@font-face {
    font-family: 'Agustina Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Agustina Regular'), url('Agustina.woff') format('woff');
}

* {
    color: var(--text-primary);
    letter-spacing: 0.4px;
    font-family: "Inter", sans-serif;
}

body {
    background-color: var(--bg-light);
}

/* Navbar Contact Styles */
nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow-color);
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i,.navbar-nav .nav-link:hover span {
    color: var(--primary-color) !important;
}


.navbar-nav .nav-link:hover i {
    transform: scale(1.05);
}

/* Desktop specific styles */
@media (min-width: 992px) {
    .navbar-nav {
        gap: 1rem;
    }

    .nav-link[title]:hover::after {
        content: attr(title);
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--bg-dark);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 0.8rem;
        white-space: nowrap;
        z-index: 1000;
    }
}

/* Mobile specific styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--bg-white);
        padding: 1rem;
    }

    .navbar-nav {
        width: 100%;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .d-flex .nav-link {
        justify-content: flex-start;
    }
}

/* Banner Section */
.hero-banner {
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    height: calc(100vh - 80px);
}

.hero-text {
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 10px 25px;
    font-weight: 500;
}

.hero-buttons-mobile {
    display: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: transparent !important;
    color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.hero-image {
    display: flex;
    justify-content: right;
    align-items: center;
}

.hero-image img {
    max-width: 80%;
    align-self: flex-end;
    height: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-banner {
        margin-top: 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        margin-bottom: 20px;
    }

    .hero-image {
        display: flex;
        justify-content: right;
        align-items: center;
    }

    .hero-image img {
        max-width: 100%;
        align-self: flex-end;
        height: auto;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: none;
    }

    .hero-buttons-mobile {
        margin-top: 30px;
        display: flex;
        align-items: center;
    }

    .hero-buttons-mobile .btn {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

/* Quality Features Section */
.quality-section {
    background-color: var(--bg-light-alt);
}

.quality-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.quality-section p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.service-card .fa-2x {
    color: var(--text-primary);
}

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

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quality-section h1 {
        font-size: 2rem;
    }

    .quality-section p {
        font-size: 1.1rem;
    }
}

/* Features Section */
.features-section {
    background-color: var(--bg-light);
}

.feature-card {
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.feature-card h3 {
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card ul li {
    padding: 8px 0;
}

.feature-card ul li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }

    .feature-card:last-child {
        margin-bottom: 0;
    }
}

/* Services Section */
.services-section {
    background-color: var(--bg-white);
}

.services-section h2 {
    letter-spacing: 3px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.services-section h1 {
    font-size: 2.2rem;
    color: var(--text-primary);
}

.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.table tbody td {
    padding: 1.25rem;
    vertical-align: middle;
    background-color: var(--bg-white);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color) !important;
}

.card-title {
    color: var(--text-primary);
    font-weight: 600;
}

.list-unstyled i {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-section h1 {
        font-size: 1.8rem;
    }

    .table thead th,
    .table tbody td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .table-responsive {
        border: 0;
    }

    .table thead {
        display: none;
    }

    .table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        overflow: hidden;
    }

    .table tbody td {
        display: block;
        text-align: left;
        padding-left: 40%;
        position: relative;
        border: none;
        border-bottom: 1px solid var(--border-gray);
    }

    .table tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        padding-right: 1rem;
        font-weight: 600;
        text-align: left;
        color: var(--accent-blue);
    }

    .table tbody td:last-child {
        border-bottom: 0;
    }

    /* Add data-labels for mobile */
    .table tbody td:nth-child(1):before {
        content: "STRUCTURE";
    }

    .table tbody td:nth-child(2):before {
        content: "FLOORING";
    }

    .table tbody td:nth-child(3):before {
        content: "PASTERING";
    }

    .table tbody td:nth-child(4):before {
        content: "PAINT";
    }

    .table tbody td:nth-child(5):before {
        content: "WINDOWS";
    }

    .table tbody td:nth-child(6):before {
        content: "ELECTRICAL";
    }
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-section .card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.pricing-section .card h2,
.pricing-section .card h2 i,
.pricing-section .card h2 small {
    color: var(--bg-white);
}

.pricing-section .card h2 small {
    color: var(--bg-white);
    font-weight: normal;
    font-size: 0.8rem;
}

.pricing-section .card:hover {
    transform: translateY(0px);
    box-shadow: 0 10px 30px var(--shadow-color) !important;
}

.pricing-section .card-header {
    border-radius: 8px 8px 0 0 !important;
    background-color: var(--bg-light);
}

.pricing-section .card-header.bg-primary {
    background-color: var(--pricing-primary) !important;
}

.pricing-section .card-header.bg-secondary {
    background-color: var(--primary-color) !important;
}

.pricing-section .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-section .accordion-button {
    font-weight: 500;
    padding: 1rem;
    background-color: transparent;
    box-shadow: none;
    color: var(--text-secondary);
    border-bottom: 1px solid #dadada;
}

.pricing-section .accordion-icon {
    color: var(--text-secondary);
}

.pricing-section .accordion-button:not(.collapsed) {
    color: var(--text-secondary);
    background-color: rgba(85, 185, 200, 0.05);
}

.pricing-section .accordion-button::after {
    display: none;
}

.pricing-section .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
    background-color: var(--bg-light);
}

.pricing-section .accordion-body {
    transition: min-height 0.3s ease;
}

.accordion-collapse {
    transition: height 0.3s ease;
}

.pricing-section .accordion-body ul li {
    margin-bottom: 0.5rem;
}

.pricing-section .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35em 0.65em;
}

.pricing-section .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.pricing-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.pricing-section .list-unstyled b {
    color: var(--text-secondary)
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-section .card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-section .display-5 {
        font-size: 2rem;
    }
}

/* Milestones Section */
.milestones-section {
    background-color: var(--bg-light-alt);
}

.milestones-section h2 {
    letter-spacing: 3px;
    font-size: 1rem;
    color: var(--primary-color);
}

.milestones-section h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.milestone-card {
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.icon-wrapper {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.milestone-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.milestone-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .milestones-section h1 {
        font-size: 2rem;
    }

    .milestone-card {
        margin-bottom: 20px;
    }

    .d-flex.justify-content-center {
        flex-direction: column;
        align-items: center;
    }

    .d-flex.justify-content-center .btn {
        margin-bottom: 10px;
        width: 200px;
    }
}

/* Progress Timeline Section */
.progress-timeline {
    position: relative;
    background-color: var(--bg-white);
}

.progress-timeline h2 {
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.progress-timeline h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.progress-timeline .lead {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    padding-left: 60px;
}

.timeline-line {
    position: relative;
    top: 25px;
    width: 1px;
    height: 100%;
    background-color: var(--text-primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: -50px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.timeline-content {
    padding: 0 0 10px 10px;
}

.timeline-content h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .progress-timeline .col-lg-5 {
        margin-bottom: 50px;
    }

    .timeline-wrapper {
        padding-left: 50px;
    }

    .timeline-icon {
        left: -50px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .progress-timeline h1 {
        font-size: 2rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }

    .btn,
    .btn-outline-primary {
        width: 100%;
    }
}

/* Get Started Section */
.get-started-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.get-started-section h2 {
    letter-spacing: 2px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.get-started-section h1 {
    font-size: 2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.get-started-section .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-form label {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 14px;
}

.contact-form .form-control {
    background-color: var(--bg-white);
    border: 1px solid var(--border-gray);
    padding: 10px 15px;
    margin-bottom: 1rem;
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary span {
    color: var(--text-light);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .get-started-section {
        padding: 60px 0;
    }

    .get-started-section h1 {
        font-size: 2rem;
    }

    .get-started-section .lead {
        font-size: 1.1rem;
    }

    .d-flex.justify-content-center {
        flex-direction: column;
        align-items: center;
    }

    .get-started-section .btn {
        width: 200px;
        margin-bottom: 10px;
    }
}

/* Footer Section */
.footer-section {
    background-color: var(--bg-footer) !important;
    border-top: 1px solid var(--border-light);
}

.footer-section h3,
.footer-section h4,
.footer-section h5 {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-section a,
i {
    text-decoration: none;
    transition: color 0.1s ease;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color) !important;
}

.contact-form .form-control {
    background-color: var(--bg-white);
    border: 1px solid var(--border-gray);
    color: var(--text-secondary);
    padding: 5px 15px;
    margin-bottom: 15px;
}

.contact-form .form-control:focus {
    outline-color: var(--primary-hover);
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: var(--placeholder-color);
    font-size: 14px;
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
}

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

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.address-info span {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.social-icons a:hover i {
    color: var(--text-light) !important;
    transition: all 0.3s ease;
}

.get-directions i,
.get-directions a,
.get-directions a:hover {
    color: var(--text-light) !important;
}

.footer-brand {
    color: var(--text-primary) !important;
    display: block;
    justify-self: start;
    padding-top: 10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2.5rem;
    -webkit-transform: rotate(-5deg) !important;
    transform: rotate(-5deg) !important;
    font-weight: 500;
    font-family: 'Agustina Regular';
    font-weight: normal;
    font-size: 36px !important;
}

.footer-brand:hover {
    color: var(--text-primary) !important;
}

#formSuccessMessage {
    transition: all 0.3s ease;
}