/* VERSION 2: Semi-transparent Card Background */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a url('../images/background.jpg') center center / cover no-repeat fixed;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

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

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6366f1;
}

.nav-cta {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    color: white !important;
}

/* Hero Section - VERSION 2: CARD BACKGROUND */
.hero {
    padding: 8rem 2rem 4rem;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.hero-text {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(99, 102, 241, 0.2);
    max-width: 700px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #a5b4fc;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

/* Rest of styles remain the same */
section {
    padding: 5rem 0;
}

.about {
    background: #1e293b;
    color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #94a3b8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
}

.value-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Services */
.offerings {
    background: #0f172a;
    color: white;
}

.offerings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-card {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #334155;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
}

.service-icon-inline {
    color: #6366f1;
    margin-right: 0.75rem;
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #94a3b8;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 600;
}

/* Pricing */
.pricing {
    background: #1e293b;
    color: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.pricing-card {
    background: #0f172a;
    border: 2px solid #334155;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
}

.pricing-card.featured {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.price span {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
}

.price-small {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
    white-space: nowrap;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #334155;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 600;
}

/* Contact */
.contact {
    background: #0f172a;
    color: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #94a3b8;
}

.consultation-offer {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.consultation-offer p {
    margin-bottom: 0;
    color: #e2e8f0;
    font-size: 1.125rem;
}

.consultation-offer a {
    color: #7dd3fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.consultation-offer a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-form {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #334155;
}

.form-title {
    color: #e2e8f0;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #334155;
    border-radius: 10px;
    background: #0f172a;
    color: white;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    margin-bottom: 1.5rem;
}

.contact-form .full-width {
    width: 100%;
    grid-column: 1 / -1;
}

.button-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
}

.contact-form .btn {
    width: fit-content;
    min-width: 180px;
}

/* Footer */
.footer {
    background: #020617;
    color: white;
    padding: 3rem 0 1rem;
}

/* Full Orbit Leadership links styling */
.contact-item a,
.footer-bottom a {
    color: #7dd3fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover,
.footer-bottom a:hover {
    color: #38bdf8;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #6366f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text {
        padding: 2.5rem;
        margin: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}