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

:root {
    --primary-color: #3b9598;
    --primary-dark: #16383c;
    --text-dark: #38302d;
    --text-gray: #544611;
    --text-light: #3c3d22;
    --bg-light: #faf3f0;
    --bg-cream: #efefdd;
    --border-color: #cccccc;
    --accent-coral: #e25a13;
    --accent-peach: #f3804f;
    --accent-yellow: #f1c718;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

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

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background-color: #fff;
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-package {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 20px;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    padding: 20px;
    width: 544px;
    height: 544px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.why-list {
    list-style: none;
    margin-bottom: 20px;
}

.why-list li {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.why-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.why-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.quote-box {
    background-color: var(--bg-cream);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.quote-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.quote-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    align-items: flex-start;
}

.checkmark {
    flex-shrink: 0;
    margin-top: 2px;
}

.quote-footer {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.package-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(82, 163, 157, 0.15);
    transform: translateY(-4px);
}

.package-recommended {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(82, 163, 157, 0.1);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 20px;
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.package-subtitle {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.package-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.package-description {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.05rem;
    min-height: 3em;
}

.package-intro {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 4.5em;
}

.package-details {
    margin-bottom: 24px;
    flex-grow: 1;
}

.details-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.details-list {
    list-style: none;
    margin-bottom: 20px;
    min-height: 200px;
}

.details-list li {
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.details-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.ideal-for {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.package-pricing {
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.package-pricing-main {
    margin: 20px 0;
}

.price-old {
    text-decoration: line-through;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-pilot {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-regular {
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #3d7b76);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    padding: 20px;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.cta-text {
    color: #fff;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.cta-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 32px !important;
}

.cta-text .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-text .btn-primary:hover {
    background-color: var(--bg-cream);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.step-list {
    list-style: none;
}

.step-list li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

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

.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

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

.contact-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-tagline {
    color: #b0b0b0;
    margin-bottom: 24px;
}

.footer-info {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 4px;
    color: #b0b0b0;
}

.footer-info a {
    color: #b0b0b0;
    text-decoration: none;
    pointer-events: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    color: #fff;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .why-content,
    .cta-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        width: 100%;
        height: auto;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-card:first-child {
        grid-column: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 0.85rem;
    }

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

@media (max-width: 640px) {
    /* Hero section */
    .hero {
        padding: 40px 0;
    }

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

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

    .hero-description {
        font-size: 16px;
    }

    .hero-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image img {
        border-radius: 12px;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    /* Header */
    .header {
        padding: 15px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav {
        display: none;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Container padding */
    .container {
        padding: 0 20px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .why-section,
    .services-section,
    .about-section,
    .cta-section,
    .contact-section {
        padding: 50px 0;
    }

    /* Package cards */
    .package-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2rem;
    }

    .price-old {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-info p {
        font-size: 0.85rem;
    }

    /* Contact form */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }
}
