@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700;900&display=swap');

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #C6EBC5;
    color: #333;
}

.header {
    background: #E25E3E;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.hero {
    background: #FF9B50;
    color: white;
    padding: 60px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 80% 92%, 50% 95%, 20% 92%, 0 85%);
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 18px 50px;
    background: #E25E3E;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(226, 94, 62, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(226, 94, 62, 0.6);
    background: #FF9B50;
}

.features {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.feature-card {
    background: linear-gradient(145deg, #A4C3A2, #C6EBC5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid #E25E3E;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #FF9B50;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #E25E3E;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.pricing {
    background: #C6EBC5;
    padding: 60px 20px;
}

.pricing h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(145deg, #A4C3A2, #C6EBC5);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #A4C3A2;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    border-color: #E25E3E;
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #E25E3E;
    background: #FF9B50;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #E25E3E;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.price-period {
    color: #666;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.order-button {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 15px;
    background: #E25E3E;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.order-button:hover {
    background: #FF9B50;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(226, 94, 62, 0.4);
}

.testimonials {
    background: #C6EBC5;
    padding: 60px 20px;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(145deg, #A4C3A2, #C6EBC5);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #E25E3E;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #333;
}

.how-it-works {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.how-it-works h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.step-card {
    background: #A4C3A2;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #E25E3E;
    margin-bottom: 15px;
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.step-card p {
    color: #333;
    line-height: 1.6;
}

.team {
    background: #fff;
    padding: 60px 20px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.team-member {
    background: #A4C3A2;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.team-member-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #FF9B50;
    margin: 0 auto 20px;
    font-size: 4rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.team-member-role {
    font-weight: bold;
    color: #E25E3E;
    margin-bottom: 10px;
}

.contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.contact-description {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #333;
}

.contact-details p {
    margin-top: 10px;
}

.contact-form {
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: #A4C3A2;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #C6EBC5;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.form-button {
    width: 100%;
}

.feature-button {
    margin-top: 20px;
    background: #333;
    transition: background 0.3s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

.feature-button:hover {
    background: #E25E3E;
}

.faq {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    color: #333;
    line-height: 1.6;
}

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

.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #333;
}

.services-header p {
    color: #333;
    font-size: 1.2rem;
}

.special-services {
    background: #fff;
    padding: 80px 20px;
}

.special-services-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.special-services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

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

.service-card {
    background: #A4C3A2;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #333;
    line-height: 1.6;
}

.about-section {
    padding: 80px 20px;
}

.about-history {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-history h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 30px;
}

.about-history p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-history p + p {
    margin-top: 20px;
}

.footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    transition: opacity 0.3s;
    display: block;
}

.footer-column a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 1.5rem;
}

.disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #A4C3A2;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.modal-content p {
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.close-modal {
    font-family: 'Montserrat', sans-serif;
    padding: 15px 40px;
    background: #E25E3E;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    transform: translateY(-2px);
    background: #FF9B50;
    box-shadow: 0 4px 15px rgba(226, 94, 62, 0.4);
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.hamburger-menu .hamburger-line {
    width: 2rem;
    height: 0.25rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger-menu.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background: #333;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-nav.is-active {
    left: 0;
    display: flex;
}

.mobile-nav a {
    padding: 1rem 0;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }

    .logo img {
        max-width: 150px;
    }
    
    .nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        padding: 60px 20px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .features, .how-it-works, .faq {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .pricing, .testimonials, .team, .special-services, .contact-section {
        padding: 60px 20px;
    }

    h2, .faq-title, .contact-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features, .pricing-cards, .testimonial-cards, .steps, .team-members, .footer-content, .service-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card, .pricing-card, .testimonial-card, .step-card, .team-member, .service-card, .contact-form {
        padding: 25px;
    }

    .price {
        font-size: 2.5rem;
    }

    .footer-content {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .modal-content {
        padding: 30px;
        width: 90%;
        max-width: 400px;
    }
}
