/* Base Variables */
:root {
    --color-primary: #050A14;
    /* Deepest Navy/Black from logo main body */
    --color-secondary: #0F1C3F;
    /* Secondary Navy */
    --color-accent: #2563EB;
    /* Royal Blue from logo stars */
    --color-accent-hover: #1d4ed8;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg-light: #f3f4f6;
    --color-white: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-container: 1200px;
    --transition-speed: 0.3s;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    /* Modern Pill Shape */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-gold {
    /* Keeping class name for compatibility but updating style */
    background-color: var(--color-white);
    color: var(--color-accent);
    font-weight: 700;
}

.btn-gold:hover {
    background-color: #eef2ff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    /* White background for dark logo */
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    /* Dark text for logo text */
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo img {
    height: 55px;
    /* Slightly larger for the new logo */
    width: auto;
}

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

.nav-links a {
    color: var(--color-primary);
    /* Dark text for links */
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s;
}

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

.btn-nav {
    border: 2px solid var(--color-accent);
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--color-accent) !important;
    font-weight: 700 !important;
}

.btn-nav:hover {
    background-color: var(--color-accent);
    color: var(--color-white) !important;
}

.btn-nav:hover::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--color-primary);
    /* Dark hamburger lines */
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.95) 0%, rgba(15, 28, 63, 0.9) 100%), url('../../assets/images/hero-bg.webp');
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list li::before {
    content: '★';
    color: var(--color-accent);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.stat-card .count {
    display: block;
    font-size: 2.75rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}

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

.service-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    text-align: left;
    border-radius: 16px;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

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

.service-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--color-secondary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #93c5fd;
    /* Lighter blue for dark bg */
}

.feature-item p {
    opacity: 0.9;
    font-size: 1rem;
    max-width: 250px;
    margin: 0 auto;
}

/* Future Section */
.future-section {
    padding: 7rem 0;
    text-align: center;
    background: var(--color-white);
}

.tag {
    background-color: #eff6ff;
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.future-content h2 {
    color: var(--color-secondary);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.future-content>p {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.future-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.future-item {
    background: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-secondary);
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Waitlist Section */
.waitlist-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #000000 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.waitlist-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.waitlist-card h2 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.waitlist-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.waitlist-form input {
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    transition: all 0.3s;
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-message {
    margin-top: 15px;
    font-size: 0.95rem;
    min-height: 24px;
    font-weight: 500;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

.security-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

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

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.contact-info address {
    font-style: normal;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-info a {
    color: var(--color-primary);
    font-weight: 600;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #050d21;
    color: #aaa;
    padding: 3rem 0;
    font-size: 0.9rem;
}

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

.footer-brand h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--color-text-light);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid #1a2f55;
    padding-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .navbar .container {
        padding: 0 20px;
    }

    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        /* White background for menu */
        flex-direction: column;
        padding: 2rem 0;
        text-align: center;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--color-primary);
        /* Ensure text is dark */
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Service Images */
.service-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}