/* SkyBoho - Boho Flight Services Styling */

:root {
    /* Color Palette - Black, White, Purple */
    --black: #0F0F0F;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --cream: #FAF8F5;
    --purple: #9333EA;
    --purple-dark: #6B21A8;
    --purple-light: #C084FC;
    --lavender: #E9D5FF;
    --plum: #7C3AED;
    --gray: #6B6B6B;
    --gray-light: #E5E5E5;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing: 24px;
    
    /* Effects */
    --shadow: 0 8px 24px rgba(147, 51, 234, 0.12);
    --shadow-lg: 0 16px 48px rgba(147, 51, 234, 0.18);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
}

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

/* Floating Elements Throughout Site - Scrolls with Page */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Section-specific positioning */
.hero-section,
.services-section,
.process-section,
.pricing-section,
.testimonials-section {
    position: relative;
}

.float-element {
    position: absolute;
    font-size: 28px;
    opacity: 0;
    animation: floatSmooth 16s infinite ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes floatSmooth {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.25;
    }
    50% {
        transform: translateY(-30px) translateX(8px) rotate(180deg) scale(1.08);
        opacity: 0.3;
    }
    90% {
        opacity: 0.25;
    }
}

/* Boho Popup */
.boho-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}

.boho-popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.boho-popup {
    background: var(--white);
    border: 3px solid var(--purple);
    border-radius: 20px;
    padding: 28px 24px;
    max-width: 380px;
    width: 92%;
    position: relative;
    text-align: center;
    animation: bohoSlide 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(147, 51, 234, 0.3);
}

@keyframes bohoSlide {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(60px) rotate(-8deg);
    }
    60% {
        transform: scale(1.03) translateY(-8px) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--cream);
    border: 2px solid var(--purple-light);
    color: var(--purple-dark);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: var(--purple);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--purple-dark);
}

.popup-mandala {
    margin: 0 auto 16px;
    animation: spinSlow 15s infinite linear;
}

.popup-mandala svg {
    width: 60px;
    height: 60px;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.popup-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup-tagline {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    font-style: italic;
}

.popup-phone {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
    background: var(--cream);
    padding: 14px 20px;
    border-radius: 14px;
    margin-bottom: 10px;
    border: 2px solid var(--purple-light);
    transition: var(--transition);
    letter-spacing: 1px;
}

.popup-phone:hover {
    background: var(--lavender);
    transform: scale(1.03);
    border-color: var(--purple);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.3);
}

.popup-hours {
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.popup-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.popup-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    padding: 12px 14px;
    border-radius: 12px;
    text-align: left;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.popup-card:hover {
    background: var(--lavender);
    border-color: var(--purple);
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.card-icon.purple {
    background: var(--purple);
    color: var(--white);
}

.card-icon.lavender {
    background: var(--lavender);
    color: var(--purple-dark);
}

.card-icon.plum {
    background: var(--plum);
    color: var(--white);
}

.card-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.card-content p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

.popup-cta {
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

/* Header & Navigation */
.boho-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-light);
    z-index: 1000;
    transition: var(--transition);
}

.boho-header.scrolled {
    box-shadow: var(--shadow);
}

.boho-nav {
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--purple-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: var(--transition);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.25);
}

.nav-phone:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.35);
}

.nav-cta {
    padding: 12px 28px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.nav-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, var(--purple) 0, var(--purple) 1px, transparent 1px, transparent 50px),
        repeating-linear-gradient(-45deg, var(--purple) 0, var(--purple) 1px, transparent 1px, transparent 50px);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--purple-light);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--purple-dark);
}

.hero-title {
    font-size: clamp(42px, 6vw, 68px);
    margin-bottom: 24px;
    color: var(--black);
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.btn-secondary {
    padding: 16px 36px;
    background: var(--white);
    color: var(--purple);
    border: 2px solid var(--purple);
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-secondary:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.trust-item strong {
    display: block;
    font-size: 32px;
    font-family: var(--font-display);
    color: var(--purple);
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 14px;
    color: var(--gray);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-light);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--cream);
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.service-card.featured {
    border-color: var(--purple);
    background: var(--lavender);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--purple);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    color: var(--black);
    margin-bottom: 16px;
}

.service-card > p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 10px;
    padding-left: 8px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--cream);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 220px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0 auto 24px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--purple-light);
    flex-shrink: 0;
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
    }
}

.process-cta {
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--cream);
    border: 2px solid var(--gray-light);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--purple);
    background: var(--lavender);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple);
}

.pricing-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.pricing-card h3 {
    font-size: 28px;
    color: var(--black);
    margin-bottom: 24px;
}

.price {
    margin-bottom: 32px;
}

.amount {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--purple);
    display: block;
}

.per {
    font-size: 14px;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 12px;
    padding-left: 8px;
}

.btn-outline {
    width: 100%;
    padding: 14px 32px;
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    padding: 36px 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple);
}

.stars {
    color: var(--purple);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--lavender);
    color: var(--purple-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle, var(--purple) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 48px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.4);
}

.btn-large:hover {
    background: var(--purple-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(147, 51, 234, 0.5);
}

.cta-subtext {
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.boho-footer {
    padding: 80px 0 32px;
    background: var(--cream);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--purple-dark);
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--black);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 15px;
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 2px solid var(--gray-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .boho-nav {
        padding: 16px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .nav-phone {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 24px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .boho-popup {
        padding: 24px 20px;
        max-width: 340px;
    }
    
    .popup-title {
        font-size: 22px;
    }
    
    .popup-tagline {
        font-size: 13px;
    }
    
    .popup-phone {
        font-size: 24px;
        padding: 12px 16px;
    }
    
    .popup-mandala svg {
        width: 50px;
        height: 50px;
    }
    
    .card-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .card-content strong {
        font-size: 13px;
    }
    
    .card-content p {
        font-size: 11px;
    }
    
    .popup-card {
        padding: 10px 12px;
        gap: 10px;
    }
}

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