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

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-600: #0d9488;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 1rem;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.logo-circle {
    fill: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled .logo-circle {
    fill: var(--emerald-600);
}

.logo-leaf {
    fill: var(--emerald-600);
    transition: all 0.3s ease;
}

.header.scrolled .logo-leaf {
    fill: var(--white);
}

.logo-vein {
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.header.scrolled .logo-vein {
    stroke: rgba(16, 185, 129, 0.2);
}

.logo-stem, .logo-small-leaf {
    fill: none;
    stroke: var(--emerald-600);
    transition: all 0.3s ease;
}

.header.scrolled .logo-stem,
.header.scrolled .logo-small-leaf {
    stroke: var(--white);
}

.logo-text {
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--white), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled .logo-text {
    background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--white);
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header.scrolled .nav-item {
    color: var(--gray-700);
}

.header.scrolled .nav-item:hover {
    background-color: var(--emerald-50);
    color: var(--emerald-600);
}

.mobile-menu-button {
    display: flex;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: var(--white);
}

.header.scrolled .mobile-menu-button {
    color: var(--gray-700);
}

.mobile-menu-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header.scrolled .mobile-menu-button:hover {
    background-color: var(--emerald-50);
}

.menu-icon {
    display: block;
}

.close-icon {
    display: none;
}

.mobile-menu-open .menu-icon {
    display: none;
}

.mobile-menu-open .close-icon {
    display: block;
}

/* Mobile Menu */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.mobile-menu-backdrop.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 4rem;
    right: 0;
    bottom: 0;
    width: 16rem;
    background-color: var(--white);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 950;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-item {
    text-align: left;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    background-color: var(--emerald-50);
    color: var(--emerald-600);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--emerald-50), var(--white), var(--teal-50));
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(64px);
    opacity: 0.3;
}

.hero-bg-circle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: var(--emerald-200);
    animation: float1 8s ease-in-out infinite;
}

.hero-bg-circle-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: var(--teal-200);
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-600);
}

.break-sm {
    display: none;
}

.mobile-space {
    display: inline;
}

.hero-button {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--emerald-600);
    color: var(--white);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: var(--emerald-700);
    transform: scale(1.05);
}

.hero-button:active {
    transform: scale(0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--emerald-600);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* About Section */
.about {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-divider {
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-top: 1.5rem;
}

.about-description {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-description p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, var(--emerald-50), var(--teal-50));
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--emerald-600);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-description {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Business Section */
.business {
    background: linear-gradient(to bottom, var(--white), var(--emerald-50));
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.business-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.business-image-container {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.business-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.business-content {
    padding: 1.5rem;
}

.business-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.business-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Company Info Section */
.company-info {
    background-color: var(--white);
}

.company-card {
    max-width: 64rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, var(--emerald-50), var(--teal-50));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.company-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--emerald-200);
    margin-bottom: 1.5rem;
}

.company-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.company-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--emerald-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-content {
    flex: 1;
    min-width: 0;
}

.company-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.company-value {
    font-size: 1.125rem;
    color: var(--gray-900);
    word-wrap: break-word;
}

.company-extra {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--emerald-200);
}

.company-extra-item {
    margin-bottom: 1.5rem;
}

.company-extra-item:last-child {
    margin-bottom: 0;
}

.company-extra-item .company-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.company-extra-item .company-value {
    font-size: 1rem;
    color: var(--gray-700);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--emerald-50), var(--white));
}

.contact-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-item-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.contact-link {
    font-size: 1rem;
    color: var(--emerald-600);
    transition: color 0.3s ease;
    word-break: break-all;
    display: inline-block;
}

.contact-link:hover {
    color: var(--emerald-700);
}

.contact-text {
    font-size: 1rem;
    color: var(--gray-700);
    word-wrap: break-word;
}

.contact-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
    color: var(--white);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-container {
    max-width: 48rem;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.required {
    color: #ef4444;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    resize: none;
    font-family: inherit;
}

.form-submit {
    text-align: center;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
    color: var(--white);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.footer-info {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-list {
    list-style: none;
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    overflow-y: auto;
}

.modal-header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    z-index: 10;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--emerald-600);
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--emerald-700);
}

.business-detail-content {
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--white), var(--emerald-50));
}

.detail-hero {
    padding: 3rem 1.5rem;
}

.detail-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.detail-hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.detail-divider {
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
    margin-bottom: 1.5rem;
}

.detail-hero-text p {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.detail-hero-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.detail-hero-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.detail-sections {
    padding: 3rem 1.5rem;
}

.detail-sections-content {
    max-width: 80rem;
    margin: 0 auto;
}

.detail-section {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.detail-section:last-of-type {
    background: linear-gradient(to bottom right, var(--emerald-50), var(--teal-50));
}

.detail-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray-700);
}

.detail-text p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--emerald-600);
}

.feature-item span {
    font-size: 1.125rem;
    color: var(--gray-700);
}

.detail-cta {
    margin-top: 3rem;
    text-align: center;
}

.detail-cta p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.detail-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
    color: var(--white);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.detail-cta a:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 6rem 1.5rem;
    }

    .header-container {
        height: 5rem;
    }

    .logo {
        width: 2.5rem;
        height: 2.5rem;
    }

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

    .nav-item {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .break-sm {
        display: block;
    }

    .mobile-space {
        display: none;
    }

    .section-title {
        font-size: 3rem;
    }

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

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

    .business-image-container {
        height: 12rem;
    }

    .business-content {
        padding: 1.5rem;
    }

    .business-title {
        font-size: 1.125rem;
    }

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

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

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

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

    .detail-hero-image img {
        height: 20rem;
    }

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

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-button {
        display: none;
    }

    .hero-title {
        font-size: 5rem;
    }

    .contact-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        gap: 0.5rem;
    }

    .nav-item {
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .detail-hero-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .detail-hero-image img {
        height: 24rem;
    }
}
