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

:root {
    --green: #10B981;
    --yellow: #FCD34D;
    --dark: #1F2937;
    --gray: #6B7280;
    --light: #F9FAFB;
    --white: #FFFFFF;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--green);
}

.btn-nav {
    background: var(--green);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #059669;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(252, 211, 77, 0.9));
    z-index: -2;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: 72px;
    margin-bottom: 24px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.btn-hero {
    background: var(--white);
    color: var(--green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background: var(--yellow);
    color: var(--dark);
}

.btn-cta:hover {
    background: #FBBF24;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
}

.btn-submit:hover {
    background: #059669;
}

/* Info Bar */
.info-bar {
    background: var(--dark);
    padding: 32px 0;
    margin-top: -1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--white);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.info-item span:last-child {
    font-size: 14px;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 56px;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-header p {
    font-size: 22px;
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-12px) rotate(-2deg);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-green .service-number {
    color: var(--green);
}

.service-yellow .service-number {
    color: #F59E0B;
}

.service-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-green h3 {
    color: var(--green);
}

.service-yellow h3 {
    color: #F59E0B;
}

.service-content > p {
    margin-bottom: 24px;
    color: var(--gray);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    padding-left: 28px;
    position: relative;
    color: var(--dark);
    font-weight: 700;
}

.service-green .service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
    font-size: 18px;
}

.service-yellow .service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: 800;
    font-size: 18px;
}

.service-cta {
    font-weight: 700;
    color: var(--green);
    cursor: pointer;
    transition: transform 0.3s;
}

.service-cta:hover {
    transform: translateX(8px);
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.why-image-side {
    position: relative;
}

.why-image-side img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: rotate(12deg);
}

.badge-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
}

.why-content-side h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--dark);
}

.why-intro {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--gray);
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--light);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--green);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    font-size: 15px;
}

.testimonial {
    background: var(--green);
    color: var(--white);
    padding: 32px;
    border-radius: 16px;
    transform: rotate(-1deg);
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
    z-index: -1;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.cta-wrapper {
    display: flex;
    justify-content: center;
}

.cta-box {
    background: var(--white);
    padding: 64px;
    border-radius: 32px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-box p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
}

.form-group textarea {
    resize: vertical;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-box {
    background: var(--green);
    color: var(--white);
    padding: 40px;
    border-radius: 24px;
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 15px;
    opacity: 0.95;
}

.service-area {
    background: var(--yellow);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
}

.service-area h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-area p {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 32px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray);
    font-size: 18px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: var(--gray);
}

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

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
