/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD93D;
    --primary-orange: #FF8C42;
    --light-blue: #6BB6FF;
    --sky-blue: #A8DADC;
    --sand-beige: #F1E4C3;
    --palm-green: #4A7C59;
    --text-dark: #2D3436;
    --text-gray: #636E72;
    --white: #FFFFFF;
    --light-bg: #FFF9F0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(255, 217, 61, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: var(--primary-orange);
    font-size: 1.75rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.btn-apply {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 140, 66, 0.3);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFF5E6 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
}

/* Hero Graphic */
.sun-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.sun-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-yellow) 30%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.delivery-van {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.palm-tree {
    position: absolute;
    bottom: 20%;
    font-size: 3rem;
    z-index: 1;
}

.palm-left {
    left: 10%;
    animation: sway-left 4s ease-in-out infinite;
}

.palm-right {
    right: 10%;
    animation: sway-right 4s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -60%);
    }
}

@keyframes sway-left {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes sway-right {
    0%, 100% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
}

/* Requirements Section */
.requirements {
    padding: 80px 0;
    background: var(--white);
}

.requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.req-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.req-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.15);
    border-color: var(--primary-yellow);
}

.req-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.req-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.req-card ul {
    list-style: none;
}

.req-card li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.req-card li:before {
    content: "☀️";
    position: absolute;
    left: 0;
}


/* Process Section */
.process {
    padding: 80px 0;
    background: var(--light-bg);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.step-arrow {
    color: var(--primary-orange);
    font-size: 2rem;
    margin: 0 1rem;
}

/* Earnings Section */
.earnings {
    padding: 80px 0;
    background: var(--white);
}

.earnings h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.earnings-content {
    display: block;
}

.earnings-calculator {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.earnings-calculator h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculator-input {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calculator-input label {
    flex: 0 0 120px;
    color: var(--text-gray);
}

.calculator-input input[type="range"] {
    flex: 1;
    margin: 0;
}

.calculator-input span {
    flex: 0 0 80px;
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.earnings-display {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.earning-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid #eee;
}

.earning-item:last-child {
    border-right: none;
}

.earning-item span {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.earning-item strong {
    color: var(--primary-orange);
    font-size: 1.25rem;
    display: block;
}

.earnings-benefits h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.earnings-benefits ul {
    list-style: none;
}

.earnings-benefits li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.earnings-benefits li:last-child {
    border-bottom: none;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-gray);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-primary.large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.btn-primary.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 750px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.modal-content h2 {
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary-orange);
}

/* Form Styles */
.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-yellow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.2);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-grid label,
.checkbox-single label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-grid input[type="checkbox"],
.checkbox-single input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(255, 217, 61, 0.2);
}

.contact-form .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 130px;
    transition: all 0.3s;
}

.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.2);
}

.form-checkboxes {
    margin: 2rem 0;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-orange);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

.form-disclaimer a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #3D4447 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.app-btn {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 217, 61, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .sun-graphic {
        width: 200px;
        height: 200px;
    }
    
    .delivery-van {
        font-size: 4rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .earnings-display {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .earning-item:nth-child(2) {
        border-right: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-buttons {
        align-items: center;
    }
}