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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
    max-width: 100%;
}

.nav-logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #1f2937;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #22c55e;
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button.primary {
    background: #22c55e;
    color: white;
}

.cta-button.primary:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.cta-button.secondary {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.cta-button.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.cta-button.full-width {
    width: 100%;
}

/* Main Content */
main {
    margin-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.1;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    width: 100%;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    word-wrap: break-word;
    hyphens: auto;
}

.subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
}

/* Sections */
.content-section,
.services,
.route-market,
.target-audience,
.blueprint,
.booking-section,
.contact-section,
.form-section,
.coming-soon-section,
.courses-preview,
.ebooks-preview {
    padding: 4rem 0;
    width: 100%;
}

.content-section:nth-child(even),
.services:nth-child(even) {
    background: #f9fafb;
}

/* Typography */
h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    word-wrap: break-word;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

/* Grid Layouts */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    width: 100%;
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #22c55e;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
}

/* Content Split Layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Lists */
.audience-list {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto 0;
    width: 100%;
}

.audience-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    word-wrap: break-word;
}

.audience-list li:hover {
    transform: translateX(4px);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #22c55e;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 60px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

/* Forms */
.form-container,
.contact-form-container,
.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.contact-content,
.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
    margin: 1rem 0;
}

.duration {
    color: #6b7280;
    margin-bottom: 2rem;
}

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

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

.form-group.inline input {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: #f3f4f6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Benefits and Features */
.benefits-list,
.features-list,
.preview-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li,
.features-list li,
.preview-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before,
.features-list li::before,
.preview-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

/* Coming Soon Cards */
.coming-soon-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Grids */
.help-grid,
.features-grid,
.preview-grid,
.access-grid,
.courses-grid,
.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-card,
.feature-item,
.preview-item,
.access-card,
.course-card,
.ebook-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.help-card:hover,
.course-card:hover,
.ebook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-icon,
.ebook-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.course-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.duration,
.level {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Contact and Social */
.contact-details {
    margin: 2rem 0;
}

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

.contact-item h3 {
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #22c55e;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-brand h3 {
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social h4 {
    color: #22c55e;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.footer-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #22c55e;
}

@media (max-width: 480px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Legal Content Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: left;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #374151;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.legal-content a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

/* Pricing Banner */
.pricing-banner {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.5rem;
}

.banner-text {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.pricing-banner .cta-button {
    background: white;
    color: #22c55e;
    border: 2px solid white;
    font-weight: 700;
}

.pricing-banner .cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Current Projects Grid */
.current-projects {
    margin-top: 2rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

.project-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-card h4 {
    color: #22c55e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.project-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Image Caption */
.image-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Timeline Sections */
.timeline-section {
    background: #f9fafb;
}

.timeline-category {
    margin-bottom: 3rem;
}

.timeline-category h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

/* Timeline Enhancements */
.timeline-content a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.timeline-content a:hover {
    text-decoration: underline;
}

/* Brands Section */
.brands-section {
    margin-top: 3rem;
    text-align: center;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.brand-tag {
    background: #22c55e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brand-tag:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* Current Focus Section */
.current-focus-section {
    background: white;
}

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

.focus-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #22c55e;
    text-align: center;
    transition: all 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.focus-card h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

/* Email Subscription Section */
.email-subscription-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.subscription-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscription-card h2 {
    color: white;
    margin-bottom: 1rem;
}

.subscription-card .large-text {
    color: #d1d5db;
}

.subscription-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.subscription-card .benefits-list {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.subscription-card .benefits-list li {
    color: #d1d5db;
    border-bottom-color: #374151;
}

.subscription-card .benefits-list li::before {
    color: #22c55e;
}

.subscription-options {
    margin-top: 2rem;
}

.paypal-button-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.subscription-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.subscription-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Free Signup Form */
.free-signup-form {
    margin: 2rem 0;
}

.free-signup-form .form-group.inline {
    max-width: 400px;
    margin: 0 auto;
}

.free-signup-form input[type="email"] {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1f2937;
}

.free-signup-form input[type="email"]:focus {
    background: white;
    border-color: #22c55e;
}

/* Final CTA Section */
.cta-section-final {
    background: #f9fafb;
    text-align: center;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Booking Page Pricing */
.pricing-info {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 3rem 0;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.price-display {
    margin: 2rem 0;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
}

.future-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
}

.price-note {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.booking-payment {
    margin-top: 2rem;
}

/* Status and Notes */
.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #fef3c7;
    color: #92400e;
    margin-top: 0.5rem;
}

.booking-note,
.contact-note,
.file-note,
.note {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #166534;
}

.booking-prompt {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.sample-instructions {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.sample-instructions address {
    font-style: normal;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
    font-style: italic;
}

.courses-intro,
.ebooks-intro {
    margin-bottom: 3rem;
}

.courses-grid,
.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-split,
    .contact-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .help-grid,
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .pricing-banner {
        position: relative;
        top: 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .project-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        justify-content: center;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        width: 100%;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        padding: 3rem 0;
    }

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

    .content-section,
    .services,
    .route-market,
    .target-audience,
    .blueprint,
    .booking-section,
    .contact-section {
        padding: 2rem 0;
    }

    .services-grid,
    .help-grid,
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

    .form-group.inline input {
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    h2 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
    
    .large-text {
        font-size: 1.1rem;
    }
}

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

    .nav-container {
        padding: 0.75rem;
    }

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

    .service-card,
    .help-card,
    .coming-soon-card {
        padding: 1.5rem;
    }

    .timeline {
        margin-left: 1rem;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-date {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .current-projects {
        padding: 1.5rem;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .cta-button.large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .hamburger {
        padding: 4px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    .service-card,
    .help-card,
    .coming-soon-card,
    .project-card,
    .focus-card {
        padding: 1.25rem;
    }
    
    .social-icons {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* PWA Specific Styles */
@media (display-mode: standalone) {
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
    
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Touch and Interaction Improvements */
button, 
input[type="submit"], 
input[type="button"], 
.cta-button,
.nav-link,
.social-icon {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    width: 100%;
}

.cta-section .cta-button + .cta-button {
    margin-left: 1rem;
}

@media (max-width: 480px) {
    .cta-section .cta-button + .cta-button {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Hover Effects */
a:not(.cta-button):hover {
    transition: color 0.3s ease;
}

button:hover,
input:hover,
select:hover,
textarea:hover {
    transition: all 0.3s ease;
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-card,
.help-card,
.course-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }