/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Updated color palette */
:root {
    --primary-color: #FFFFFF; /* Primary */
    --primary-accent: #19B65E; /* Primary Accent */
    --primary-accent-2: #00D850; /* Primary Accent 2 */
    --secondary-color: #FFFFFF; /* Secondary */
    --secondary-bg: #DCEAF7; /* Secondary background */
    --solid-accent: #00D850; /* Solid Accent */
    --solid-accent-low: #C7ECD5; /* Solid Accent Low */
    --border-color: #D6D6D6; /* Border */
    --warning-color: #FA7376; /* Warning */
    --primary-text: #090909; /* Primary Text */
    --secondary-text: #232323; /* Secondary Text */
    --white: #FFFFFF;
    --max-width: 1200px;
    --section-padding: 6rem 0;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body {
    background: var(--primary-color);
    font-family: 'Poppins', 'Segoe UI', 'Inter', Arial, sans-serif;
    color: var(--primary-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
header {
    background: var(--primary-color);
    box-shadow: 0 2px 10px var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-accent-2);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent-2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-accent-2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-accent-2);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Main Content */
main {
    margin-top: 80px; /* Height of fixed header */
}

/* Hero Section */
.custom-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 5rem 1rem 3rem 1rem;
    background: var(--primary-color);
    overflow: hidden;
}

.custom-hero-shape {
    position: absolute;
    right: -120px;
    top: 30px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 60% 40%, #00D85022 0%, #19B65E11 80%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Additional decorative circles */
.custom-hero::before, .custom-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.custom-hero::before {
    width: 120px;
    height: 120px;
    left: -60px;
    top: 80px;
    background: radial-gradient(circle, #19B65E22 60%, transparent 100%);
    filter: blur(2px);
}

.custom-hero::after {
    width: 80px;
    height: 80px;
    left: 40vw;
    bottom: -40px;
    background: radial-gradient(circle, #00D85033 60%, transparent 100%);
    filter: blur(1.5px);
}

/* Extra small circle for more depth */
.custom-hero .custom-hero-extra {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 10vw;
    top: 30vh;
    background: radial-gradient(circle, var(--solid-accent-low) 60%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(1px);
}

.custom-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

.custom-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-accent-2);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.custom-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-text);
    margin-bottom: 2.2rem;
    line-height: 1.5;
}

.custom-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    background: var(--primary-accent-2);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.custom-btn-primary:hover {
    background: var(--primary-accent);
    color: var(--primary-color);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.03);
}

.custom-features {
    background: var(--primary-color);
    padding: 4rem 1rem 6rem 1rem;
    text-align: center;
}

.custom-features h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-accent-2);
    margin-bottom: 2.5rem;
}

.custom-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.custom-feature-card {
    background: var(--secondary-bg);
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid var(--border-color);
    color: var(--primary-text);
}

.custom-feature-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.04);
    border-color: var(--primary-accent-2);
}

.custom-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--solid-accent);
    background: var(--solid-accent-low);
}

.custom-feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-accent-2);
}

.custom-feature-card p {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .custom-hero {
        padding: 3rem 1rem 2rem 1rem;
        min-height: 40vh;
    }
    .custom-hero-content h1 {
        font-size: 2rem;
    }
    .custom-features h2 {
        font-size: 1.5rem;
    }
    .custom-feature-card {
        padding: 1.2rem 0.8rem;
    }
    .custom-hero-shape {
        width: 220px;
        height: 220px;
        right: -60px;
        top: 10px;
    }
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.feature-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--primary-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-accent-2);
    color: var(--primary-color);
}

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

/* Modern Footer Styles */
footer {
    background: linear-gradient(90deg, var(--primary-accent-2) 0%, var(--primary-accent) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: none;
    overflow: hidden;
}
.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    z-index: 1;
    position: relative;
}
.footer-section h3 {
    color: var(--white);
}
.footer-section p,
.footer-section a {
    color: #e6ffe6;
    transition: color 0.2s;
}
.footer-section a:hover {
    color: var(--primary-accent-2);
}
.footer-bottom {
    background: transparent;
    color: var(--white);
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 2rem 0;
    z-index: 1;
    position: relative;
}
.footer-bottom p {
    color: var(--white);
}
.footer-decor {
    background: var(--primary-color);
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: 80px;
    height: 80px;
    opacity: 0.25;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 40px 10px var(--primary-accent-2);
}
/* Remove old color overrides for footer */
.footer-section h3,
.footer-section p,
.footer-section a,
.footer-bottom,
.footer-bottom p {
    color: unset;
}
/* Footer Top Wave Divider */
.footer-wave-divider {
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 2;
}
.footer-wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    nav {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none; /* Hide by default on mobile */
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background: var(--primary-color);
        box-shadow: 0 2px 10px var(--border-color);
        padding: 1rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .feature-grid {
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card i {
        font-size: 2.5rem;
    }

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

    .feature-card p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card {
    animation: fadeIn 1s ease-out;
}

/* Features Page Styles */
.features-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #c3cfe2 100%);
    text-align: center;
}

.features-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.features-hero p {
    font-size: 1.2rem;
    color: var(--primary-text);
    max-width: 600px;
    margin: 0 auto;
}

.feature-details {
    padding: 5rem 0;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse .feature-content {
    direction: ltr;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary-text);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .features-hero h1 {
        font-size: 2.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--secondary-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--primary-text);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--primary-text);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: var(--primary-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent-2);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-accent-2);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

.contact-section-modern {
    background: var(--primary-color);
    padding: 4rem 1rem 6rem 1rem;
}

.contact-container-modern {
    display: flex;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form-modern {
    flex: 1 1 320px;
    background: var(--primary-color);
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 280px;
}

.contact-form-modern h2 {
    color: var(--primary-accent-2);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #E1EEBC;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fa;
    resize: none;
    color: var(--primary-text);
}

.contact-form-modern textarea {
    min-height: 100px;
}

.contact-form-modern button {
    margin-top: 0.5rem;
}

.contact-info-modern {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 220px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--primary-color);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1.2rem 1rem;
    border: 1px solid #E1EEBC;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--solid-accent);
    background: #E1EEBC;
    flex-shrink: 0;
}

.contact-info-card h3 {
    margin: 0 0 0.2rem 0;
    color: var(--primary-accent-2);
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-info-card p {
    margin: 0;
    color: var(--secondary-text);
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .contact-container-modern {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
    }
} 

/* Decorative SVG Blob Styles */
.decorative-blob {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    filter: blur(1px);
    animation: floatBlob 8s ease-in-out infinite;
}
.blob-top-left {
    top: -60px;
    left: -80px;
    width: 220px;
    height: 180px;
}

/* Floating Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    animation: floatCircle 6s ease-in-out infinite alternate;
}
.circle-bottom-right {
    width: 100px;
    height: 100px;
    right: 2vw;
    bottom: -40px;
    background: radial-gradient(circle, #00D85033 60%, transparent 100%);
}
.circle-top-right {
    width: 60px;
    height: 60px;
    right: 8vw;
    top: -30px;
    background: radial-gradient(circle, #19B65E33 60%, transparent 100%);
}

/* Wave Divider */
.wave-divider {
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    position: relative;
    margin-top: -2rem;
    z-index: 1;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Gradient Button */
.custom-btn.custom-btn-primary {
    background: linear-gradient(90deg, var(--primary-accent-2) 0%, var(--primary-accent) 100%);
    color: var(--primary-color);
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.custom-btn.custom-btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-2) 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px) scale(1.04);
}

/* Floating Animation */
@keyframes floatBlob {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes floatCircle {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-12px) scale(1.03); }
} 