*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary: #10B981;
    --primary-dark: #059669;
    --secondary: #333;
    --text: #333;
    --text-light: #666;
    --bg-gray: #f5f5f5;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden
}

html {
    scroll-behavior: smooth
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all .3s
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.5rem
}

.logo-image {
    height: 50px;
    width: auto;
    flex-shrink: 0
}

.logo span {
    color: var(--primary)
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color .3s;
    padding: .5rem 1rem;
    border-radius: 5px
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary)
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: .7rem 1.5rem !important
}

.nav-cta:hover {
    background: var(--primary-dark) !important
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all .3s
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px)
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px)
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-overlay {
    width: 100%
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem 0
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s .2s backwards
}

.hero-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s .4s backwards
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s .6s backwards
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all .3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    border: none
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white)
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px)
}

.btn-block {
    width: 100%
}

.features-bar {
    background: var(--secondary);
    padding: 2rem 0;
    color: var(--white)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700
}

.feature-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain
}

.section {
    padding: 5rem 0
}

.section-gray {
    background: var(--bg-gray)
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto
}

.about-content {
    display: grid;
    gap: 3rem
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light)
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15)
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem
}

.feature-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem
}

.feature-card p {
    color: var(--text-light)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all .3s
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem
}

.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem
}

.service-card p {
    color: var(--text-light)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all .3s
}

.process-step:hover {
    transform: translateY(-5px)
}

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

.process-step h3 {
    margin-bottom: 1rem
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all .3s
}

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

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.reviewer {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-light)
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem
}

.contact-info {
    max-width: 600px;
    width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.contact-icon {
    font-size: 2rem
}

.contact-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.contact-item h4 {
    margin-bottom: .3rem
}

.contact-item a {
    color: var(--primary);
    text-decoration: none
}

.contact-item a:hover {
    color: var(--primary-dark)
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.form-group {
    display: flex;
    flex-direction: column
}

.form-group label {
    margin-bottom: .5rem;
    font-weight: 600
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: .8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .3s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary)
}

.form-group textarea {
    resize: vertical
}

.valuation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center
}

.valuation-modal.active {
    display: flex
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px)
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn .3s;
    z-index: 10000
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s
}

.modal-close:hover {
    background: var(--bg-gray);
    color: var(--primary);
    transform: rotate(90deg)
}

.modal-title {
    font-size: 2rem;
    margin-bottom: .5rem
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem
}

.valuation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.valuation-form select:disabled {
    background: var(--bg-gray);
    cursor: not-allowed;
    opacity: .6
}

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 0 1rem
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem
}

.footer-section ul {
    list-style: none
}

.footer-section ul li {
    margin-bottom: .5rem
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color .3s
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px)
}

.social-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain
}

.inline-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 5px
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-bottom a {
    color: var(--white)
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 999
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px)
}

@media (max-width:768px) {
    .mobile-menu-btn {
        display: flex
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left .3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0
    }

    .nav-menu li {
        padding: 1rem 0
    }

    .nav-menu.active {
        left: 0
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: 1.2rem
    }

    .hero-text {
        font-size: 1rem
    }

    .section-title {
        font-size: 2rem
    }

    .contact-wrapper {
        grid-template-columns: 1fr
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        max-width: 300px
    }

    .modal-content {
        padding: 2rem 1.5rem
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .about-features,
    .services-grid {
        grid-template-columns: 1fr
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .hero {
        background-attachment: scroll !important;
        min-height: 100vh;
    }
}

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

    .features-grid {
        grid-template-columns: 1fr
    }
}