/* ============================================
   golive123 — Static HTML/CSS/JS
   Dark Professional Theme
   ============================================ */

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

:root {
    --bg-dark: #0f1419;
    --bg-darker: #0a0e13;
    --bg-card: #141b24;
    --text-light: #f2f2f2;
    --text-muted: #a8b0b8;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --border: #1e293b;
    --success: #10b981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.5px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
}

.logo-text {
    color: white;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.85);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: var(--accent);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-hover);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 1.25rem;
    height: 0.125rem;
    background-color: rgba(242, 242, 242, 0.95);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.85);
}

.mobile-menu a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-button {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(19, 31, 48, 0.85);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.accent-text {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'IBM Plex Sans', sans-serif;
}

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

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

.btn-outline {
    background-color: transparent;
    color: rgba(242, 242, 242, 0.85);
    border: 1px solid rgba(61, 77, 82, 1);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Fade-up animations */
.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.fade-up-delay-1 {
    animation-delay: 0.1s;
}

.fade-up-delay-2 {
    animation-delay: 0.2s;
}

.fade-up-delay-3 {
    animation-delay: 0.3s;
}

.fade-up-delay-4 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    background-color: var(--bg-card);
    padding: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.why-label {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.65);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(19, 31, 48, 0.9);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.cta-title {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 2rem;
}

.cta-section-alt {
    background-color: var(--bg-card);
    padding: 5rem 0;
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section-alt p {
    font-size: 1.125rem;
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background-color: var(--bg-darker);
    padding: 6rem 0 4rem;
    margin-top: 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(242, 242, 242, 0.7);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages-section {
    padding: 4rem 0;
}

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

.package-card {
    background-color: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    background-color: var(--bg-card);
    border: 2px solid var(--accent);
}

.package-card:hover {
    transform: translateY(-4px);
}

.badge {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.package-desc {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.8);
}

.package-features svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.ongoing-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.65);
    margin-top: 2rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 4rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: 'IBM Plex Sans', sans-serif;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
}

.process-image {
    display: flex;
    justify-content: center;
}

.process-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.timeline-section {
    background-color: var(--bg-card);
    padding: 4rem 0;
}

.timeline-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.timeline-item {
    text-align: center;
    border-top: 2px solid var(--accent);
    padding-top: 1.5rem;
}

.timeline-days {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.timeline-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
}

.timeline-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.65);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 4rem 0;
}

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

.pricing-card {
    background-color: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
}

.pricing-card.featured {
    background-color: var(--bg-card);
    border: 2px solid var(--accent);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.pricing-card .desc {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.8);
}

.ongoing-care {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.ongoing-care h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.ongoing-care p {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 1rem;
}

.care-features {
    list-style: none;
}

.care-features li {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 0.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background-color: var(--bg-card);
    padding: 4rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    padding: 4rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1rem;
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    background-color: var(--bg-card);
    padding: 4rem 0;
}

.values-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
    line-height: 1.6;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */

.commitment-section {
    padding: 4rem 0;
    text-align: center;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.commitment-section p {
    font-size: 1rem;
    color: rgba(242, 242, 242, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

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

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-item a {
    font-size: 1rem;
    color: rgba(242, 242, 242, 0.8);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item p {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.7);
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
}

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

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(242, 242, 242, 0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    background-color: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--text-light);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

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

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

.form-note {
    font-size: 0.75rem;
    color: rgba(242, 242, 242, 0.6);
    text-align: center;
}

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

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Fraunces', Georgia, serif;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.6);
    line-height: 1.6;
}

.footer-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(242, 242, 242, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(242, 242, 242, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-email {
    font-size: 0.875rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--accent-hover);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(242, 242, 242, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

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

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

    .why-grid {
        gap: 1.5rem;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }

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

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

    .page-header {
        padding: 5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
}
