:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --success-color: #2ecc71;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-strong: 0 10px 25px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4.8rem;
    font-weight: 700;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Container & Section Styles */
.section-header {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-header h2:after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.8rem;
}

section {
    padding: 10rem 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.6rem;
    position: relative;
    z-index: 5; /* Ensure clickability */
}

.primary-btn {
    background-color: var(--primary-color);
    color: white !important; /* Ensure text color */
    border: none;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color) !important; /* Ensure text color */
    border: 2px solid var(--primary-color);
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo-text {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-dot {
    width: 0.8rem;
    height: 0.8rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-left: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 3rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links a:before {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover:before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 5rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.nav-cta:before {
    display: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 2.5rem;
    height: 0.3rem;
    background-color: var(--text-color);
    margin: 0.5rem;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 8rem;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
    max-width: 60rem;
}

.hero-text h1 {
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.price-highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.4rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--success-color);
    margin-right: 0.8rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 10; /* Ensure buttons are above other elements */
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 50rem;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 2;
}

.hero-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -2rem;
    right: -2rem;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* Features Section */
.features {
    background-color: white;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--light-gray);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(2rem);
}

.feature-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-strong);
}

.feature-appear {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 7rem;
    height: 7rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    flex: 1;
    min-width: 30rem;
    max-width: 40rem;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-strong);
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.pricing-header p {
    opacity: 0.9;
    font-size: 1.6rem;
}

.price {
    margin: 2rem 0;
}

.currency {
    font-size: 2.4rem;
    vertical-align: top;
    position: relative;
    top: 0.5rem;
}

.amount {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1.6rem;
}

.pricing-features {
    padding: 3rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-feature i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.8rem;
}

.pricing-cta {
    padding: 0 3rem 3rem;
    text-align: center;
}

.pricing-note {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    font-size: 1.4rem;
}

.pricing-note a {
    font-weight: 600;
}

.pricing-extra {
    flex: 1;
    min-width: 30rem;
    max-width: 40rem;
    margin: 0 auto;
}

.pricing-extra h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-extra p {
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.extra-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.extra-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.extra-feature-info h4 {
    margin-bottom: 0.5rem;
}

.extra-feature-info p {
    margin-bottom: 0;
    color: var(--dark-gray);
    font-size: 1.4rem;
}

.extra-feature-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid var(--medium-gray);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 50rem;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-icon i {
    transition: var(--transition);
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    max-width: 120rem;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 30rem;
}

.contact-form {
    background-color: white;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--medium-gray);
    border-radius: 0.5rem;
    font-family: var(--font-main);
    font-size: 1.6rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-info {
    flex: 1;
    min-width: 30rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 2rem;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h3 {
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

.contact-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 8rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo, .footer-links, .footer-services {
    flex: 1;
    min-width: 25rem;
}

footer h3 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

footer h3:after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 1rem;
}

footer a {
    color: var(--light-color);
}

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

/* Simplified Contact Section */
.simplified-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-centered {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    background-color: white;
    padding: 5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.contact-heading {
    margin-bottom: 4rem;
}

.contact-heading h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

/* Only keep email contact, remove phone and location */
.email-contact {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.email-contact i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.email-contact a {
    font-size: 2rem;
    font-weight: 500;
}

.contact-cta {
    margin-top: 3rem;
}

.seo-badge {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    margin: 0.5rem 0;
}

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

.combined-legal a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5rem;
    transition: var(--transition);
}

.combined-legal a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Media query adjustments for simplified contact */
@media screen and (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info-centered {
        padding: 3rem;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 0;
    }
    
    .burger {
        display: block;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 4rem;
    }
}

/* Animation for nav links */
.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Burger animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Animation for features */
@keyframes featureAppear {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-appear {
    animation: featureAppear 0.5s forwards;
}