:root {
    --color-primary: #ff6b00;
    --color-text-dark: #222222;
    --color-text-medium: #555555;
    --color-bg-light: #f5f5f5;
    --color-white: #ffffff;
    --color-black: #000000
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

ul {
    list-style: none
}

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

.section {
    padding: 100px 0
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-primary)
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-medium);
    max-width: 700px;
    margin: 0 auto
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px #ff6b004d
}

.btn-primary:hover {
    background-color: #e55f00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #ff6b0066
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-text-dark)
}

.btn-outline:hover {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    transform: translateY(-3px)
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 10px #0000001a;
    padding: 15px 0;
    transition: all .3s ease
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-medium)
}

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

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative
}

.nav-menu a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width .3s ease
}

.nav-menu a:hover:after {
    width: 100%
}

.nav-menu a.btn {
    padding: 8px 20px;
    margin-left: 15px
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-text-dark);
    border-radius: 3px;
    transition: all .3s ease
}

.nav-toggle span:nth-child(1) {
    top: 0
}

.nav-toggle span:nth-child(2) {
    top: 8px
}

.nav-toggle span:nth-child(3) {
    top: 16px
}

.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url(https://images.unsplash.com/photo-1517836357463-d25dfeac3438?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8Z3ltfGVufDB8fDB8fHww&auto=format&fit=crop&w=1500&q=80);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white)
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000c, #0006)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden
}

.cta-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff3;
    transition: all .5s ease
}

.cta-button:hover:before {
    left: 100%
}

.benefits {
    background-color: var(--color-bg-light)
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.benefit-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px #0000000d;
    text-align: center;
    transition: all .3s ease
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #0000001a
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px
}

.benefit-card p {
    color: var(--color-text-medium)
}

.testimonials {
    background-color: var(--color-white)
}

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

.testimonial-card {
    background-color: var(--color-bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px #0000000d;
    transition: all .3s ease
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px #0000001a
}

.testimonial-photo {
    width: 100%;
    height: 200px;
    overflow: hidden
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.1)
}

.testimonial-content {
    padding: 25px
}

.testimonial-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px
}

.stars {
    color: var(--color-primary);
    margin-bottom: 15px
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text-medium)
}

.pricing {
    background-color: var(--color-bg-light)
}

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

.pricing-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px #0000000d;
    transition: all .3s ease;
    position: relative
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px #0000001a;
    border: 2px solid var(--color-primary);
    z-index: 1
}

.pricing-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 15px;
    font-size: .8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px
}

.pricing-header {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 30px 20px;
    text-align: center
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px
}

.pricing-value {
    display: flex;
    justify-content: center;
    align-items: baseline
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 5px
}

.value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1
}

.period {
    font-size: 1rem;
    color: #ffffffb3;
    margin-left: 5px
}

.pricing-content {
    padding: 30px
}

.pricing-content ul {
    margin-bottom: 30px
}

.pricing-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.pricing-content ul li i {
    margin-right: 10px;
    font-size: 1rem
}

.pricing-content ul li i.fa-check {
    color: var(--color-primary)
}

.pricing-content ul li i.fa-times {
    color: #999
}

.pricing-content .btn {
    width: 100%
}

.gallery {
    background-color: var(--color-white)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b3;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .3s ease
}

.gallery-overlay h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: all .3s ease;
    cursor: default
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0)
}

.faq {
    background-color: var(--color-bg-light)
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px #0000000d;
    overflow: hidden
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600
}

.faq-icon {
    color: var(--color-primary);
    transition: all .3s ease
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.footer {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 80px 0 30px
}

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

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px
}

.footer-column p {
    color: #ffffffb3;
    margin-bottom: 20px
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px
}

.footer-column h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary)
}

.social-media {
    display: flex
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff1a;
    border-radius: 50%;
    margin-right: 10px;
    transition: all .3s ease
}

.social-media a:hover {
    background-color: var(--color-primary);
    transform: translateY(-5px)
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: #ffffffb3;
    transition: all .3s ease
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ffffffb3
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--color-primary);
    margin-top: 5px
}

.footer-contact li a {
    color: #ffffffb3;
    transition: all .3s ease
}

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

.map {
    border-radius: 10px;
    overflow: hidden
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #ffffff80;
    font-size: .9rem
}

@media (max-width: 1024px) {
    .section {
        padding: 80px 0
    }

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

@media (max-width: 1177px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all .3s ease;
        box-shadow: 0 5px 10px #0000001a
    }

    .nav-menu.active {
        left: 0
    }

    .nav-menu li {
        margin: 15px 0
    }

    .nav-toggle {
        display: block
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px)
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0
    }

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

    .pricing-card.featured {
        transform: scale(1)
    }

    .footer-grid {
        gap: 30px
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0
    }

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

    .hero {
        min-height: 600px
    }

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

    .benefits-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr))
    }

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

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

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

.fade-in {
    animation: fadeIn .8s ease forwards
}

.fade-in-1 {
    animation-delay: .2s
}

.fade-in-2 {
    animation-delay: .4s
}

.fade-in-3 {
    animation-delay: .6s
}

.fade-in-4 {
    animation-delay: .8s
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Montserrat Regular"), local("Montserrat-Regular"), url(fonts/monserrat.woff2) format("woff2")
}

:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

/*# sourceMappingURL=outfile.css.map */