/* Variables and reset */
:root {
    --saffron: #ff9933;
    --white: #ffffff;
    --green: #138808;
    --dark: #333333;
    --light-bg: #f8f8f8;
    --grey: #666666;
    --light-grey: #eeeeee;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

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

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

section {
    padding: 70px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--grey);
}

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

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--saffron), var(--green));
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    width: 200px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--saffron), var(--green));
    transition: var(--transition);
}

.main-nav ul li a:hover {
    color: var(--saffron);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
    z-index: 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-svg {
    max-width: 100%;
    height: auto;
}

.hero h1 {
    background: linear-gradient(to right, var(--saffron), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.hero h2 {
    color: var(--grey);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--saffron), var(--green));
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.5);
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    position: relative;
}

.features::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(19, 136, 8, 0.05);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    z-index: 1;
    position: relative;
}

.feature-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

/* Process Section */
.process {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--saffron), var(--green));
    z-index: 0;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--saffron), var(--green));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(19, 136, 8, 0.3);
}

.step-content {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    position: relative;
}

.testimonial-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 4rem;
    font-family: serif;
    line-height: 1;
    color: var(--saffron);
    opacity: 0.3;
}

.quote {
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: var(--dark);
}

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

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

.faq-item {
    border-bottom: 1px solid var(--light-grey);
    margin-bottom: 15px;
}

.faq-question {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--saffron);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--saffron), var(--green));
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--saffron);
}

.cta-section .cta-button:hover {
    background: var(--dark);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand p {
    color: var(--white);
    opacity: 0.7;
    margin-top: 15px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--saffron), var(--green));
}

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

.footer-links ul li a {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--saffron);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    .hero-flex {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial {
        min-width: 100%;
    }
    
    .feature-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
    
    section {
        padding: 50px 0;
    }
}
