/* CSS Variables */
:root {
    --primary-color: #4DB8C4;
    --secondary-color: #2A6B70;
    --accent-color: #D4AF37;
    --text-dark: #1a2b3c;
    --text-light: #5a6c7d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e1e8ed;
    --success-color: #28a745;
    --gradient-primary: linear-gradient(135deg, #4DB8C4 0%, #2A6B70 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-container {
    max-width: 200px;
}

.logo {
    width: 100%;
    height: auto;
}

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

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav .cta-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.nav .cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(77, 184, 196, 0.9) 0%, rgba(42, 107, 112, 0.95) 100%),
                url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?q=80&w=2000') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
    color: var(--accent-color);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.highlight-text {
    color: var(--primary-color);
    position: relative;
}

/* Emotional Story Section */
.emotional-story {
    background: var(--light-bg);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.15rem;
    line-height: 2;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-text .emphasis {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.story-text .final-message {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* For Whom Section */
.for-whom {
    background: var(--white);
}

.checklist {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.check-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.check-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.check-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0;
}

.conclusion {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Program Details */
.program-details {
    background: var(--gradient-primary);
    color: var(--white);
}

.program-details .section-title {
    color: var(--white);
}

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

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.detail-card.featured {
    background: var(--gradient-accent);
    border: none;
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detail-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.detail-card p {
    font-size: 1.3rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: var(--text-dark);
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: 0.5rem;
}

.limited {
    color: #ff4757 !important;
    font-weight: 700;
    font-size: 1.5rem !important;
}

/* Included Section */
.included-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.included-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
}

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

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.included-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.included-item p {
    margin: 0;
    font-size: 0.95rem;
}

.guarantee-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-top: 2rem;
}

.guarantee-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.guarantee-box p {
    margin: 0;
    font-size: 1.05rem;
}

/* Why Different Section */
.why-different {
    background: var(--light-bg);
}

.reasons {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.reason-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    padding-left: 5rem;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.reason-number {
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.reason-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Guide Card with Profile Image */
.guide-card {
    padding: 2rem;
}

.guide-profile {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.guide-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.guide-info {
    flex: 1;
}

.guide-info h3 {
    margin-top: 0;
}

/* Trust Section */
.trust-section {
    background: var(--white);
}

.trust-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.trust-feature {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.trust-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-feature h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-message {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.2rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.urgency-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.urgency-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.urgency-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    text-align: left;
}

.urgency-point i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.urgency-point p {
    margin: 0;
    font-size: 1.05rem;
}

.urgency-message {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin: 2rem 0 !important;
}

.urgency-final {
    font-size: 1.1rem !important;
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 2.5rem !important;
}

/* Form Section */
.form-section {
    background: var(--light-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(77, 184, 196, 0.1);
}

.privacy-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.privacy-notice i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.privacy-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Final Message Section */
.final-message-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.final-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.final-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.final-cta-text {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-logo img {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-contact a {
    color: var(--white);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav {
        display: none;
    }

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

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

    .hero-info {
        flex-direction: column;
        gap: 0.8rem;
    }

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

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

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

    .reason-card {
        padding-left: 2rem;
        padding-right: 1.5rem;
    }

    .reason-number {
        left: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .guide-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .guide-image {
        width: 100px;
        height: 100px;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .urgency-point {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .logo-container {
        max-width: 150px;
    }

    .hero {
        min-height: 80vh;
    }

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

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}