/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cherry-red: #C41E3A;
    --light-green: #E8F5E9;
    --dark-green: #1B5E20;
    --medium-green: #2E7D32;
    --cream: #FFF8E1;
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Typography Updates */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Amatic', 'SC';
}

.section-label,
.btn,
.nav-menu li a,
.logo-text,
p {
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--cherry-red) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container A {
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 1rem;
    font-weight: 900;
    color: var(--medium-green);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    animation: slideInRight 0.8s ease;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cherry-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 2px;
    background-color: transparent;
    border: none;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Page Hero */
.page-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--dark-green) 30%, var(--cherry-red) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z" fill="%23E8F5E9" opacity="0.1"/></svg>') repeat-x bottom;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1200px 0;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
    padding: 0 20px;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-light);
    font-family: 'Helvetica', 'Arial', sans-serif;
    word-wrap: break-word;
}

/* Services Introduction */
.services-intro {
    padding: 4rem 0;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.intro-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
    padding: 0 20px;
}

.section-label {
    color: var(--cherry-red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Main Services */
.main-services {
    padding: 4rem 0;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.main-services.alt {
    background: var(--light-green);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse>* {
    direction: ltr;
}

.service-content {
    animation: slideInLeft 1s ease;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

.service-block.reverse .service-content {
    animation: slideInRight 1s ease;
}

.service-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--cherry-red);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1;

}

.service-content h3 {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}



.service-features {
    list-style: none;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    word-wrap: break-word;
    max-width: 100%;
}

.service-features li:hover {
    padding-left: 2.5rem;
    color: var(--cherry-red);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--cherry-red);
    font-size: 1.3rem;
}

.service-image {
    animation: slideInRight 1s ease;
    width: 100%;
    max-width: 100%;
}

.service-block.reverse .service-image {
    animation: slideInLeft 1s ease;
}

/* Service Content */
.coming-soon-badge {
    display: inline-block;
    background: var(--cherry-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(196, 30, 58, 0);
    }
}

.btn-coming-soon {
    opacity: 0.6;
    cursor: not-allowed;

}

.btn-coming-soon:hover {
    transform: none;
    background: var(--cherry-red);
}

/* Additional Services Coming Soon Badge */
.additional-card {
    background: var(--light-green);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    border: 3px solid transparent;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.coming-soon-mini {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cherry-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.image-placeholder {
    width: 100%;
    max-width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

/* Additional Services */
.additional-services {
    padding: 5rem 0;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
}

.additional-card:hover {
    transform: translateY(-10px);
    background: white;
    border-color: var(--cherry-red);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.additional-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    color: var(--cherry-red);
}

.additional-card:nth-child(2) .additional-icon {
    animation-delay: 0.2s;
}

.additional-card:nth-child(3) .additional-icon {
    animation-delay: 0.4s;
}

.additional-card:nth-child(4) .additional-icon {
    animation-delay: 0.6s;
}

.additional-card:nth-child(5) .additional-icon {
    animation-delay: 0.8s;
}

.additional-card:nth-child(6) .additional-icon {
    animation-delay: 1s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.additional-card h4 {
    font-size: 1.4rem;
    color: var(--cherry-red);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.additional-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-green) 0%, white 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
    max-width: 100%;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--cherry-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(196, 30, 58, 0.4);
}

.step-icon {
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
    animation: float 3s ease-in-out infinite;
    color: var(--cherry-red);
}

.process-step:nth-child(odd) .step-icon {
    animation-delay: 0s;
}

.process-step:nth-child(even) .step-icon {
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 0.8rem;
    word-wrap: break-word;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.process-arrow {
    font-size: 2rem;
    color: var(--cherry-red);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.pricing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
    padding: 0 20px;
}

.pricing-content h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.pricing-content>p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

.pricing-feature {
    padding: 1.5rem;
    background: var(--light-green);
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.pricing-feature:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cherry-red);
}

.pricing-feature h4 {
    font-size: 1.2rem;
    color: var(--cherry-red);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.pricing-feature p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--cherry-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #A01828;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--text-light);
    color: var(--dark-green);
}

.btn-light:hover {
    background: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-green) 30%, var(--cherry-red) 100%);
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.cta-content {
    animation: fadeInUp 0.8s ease;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-green) 30%, var(--cherry-red) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--cherry-red);
    padding-left: 5px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-green) 30%, var(--cherry-red) 100%);
        width: 40%;
        border-bottom-left-radius: 50px;
        text-align: center;
        margin-inline-start: 60%;
        border-top-left-radius: 50px;
        transition: all 0.5s ease;
        padding: 0.5rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .process-arrow {
        display: none;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-step {
        min-width: 100%;
        max-width: 100%;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {


    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-header h2,
    .intro-content h2,
    .service-content h3,
    .pricing-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .service-number {
        font-size: 2rem;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
    }


    .container {
        padding: 0 15px;
    }

    .process-step {
        padding: 1.5rem 0.8rem;
        min-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}