@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;400;700;800&display=swap');

:root {
    --primary-color: #2563eb;
    --dark-blue: #0a1535;
    --light-bg: #f6f8fb;
    --text-gray: #475569;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--dark-blue);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Sticky Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.site-logo {
    font-size: 26px;
    font-weight: 800;
    color: #000 !important;
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navigation Buttons */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

nav a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

nav a.active {
    background-color: var(--primary-color);
    color: white !important;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

/* Page Hero */
.page-hero {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.page-hero p {
    color: #94a3b8;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer Styling */
footer {
    background-color: #0a1535;
    color: white;
    padding: 80px 20px;
    margin-top: 50px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: white !important;
    margin-bottom: 15px;
    text-decoration: none;
    display: block;
}

.footer-info {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Global Content Styling */
main {
    min-height: 60vh;
}

.wp-block-heading {
    margin-top: 0;
}

/* Custom Button for Links */
.button-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Map Styling */
.contact-map {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Page Content Card */
.content-card {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.content-card h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.content-card h2 {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .content-card {
        margin: 20px;
        padding: 30px;
    }
    .content-card h1 {
        font-size: 32px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Carriers Grid */
.carriers-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.carrier-col {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
}

.carrier-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carrier-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carrier-col li {
    padding: 8px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.carrier-col li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: 800;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Invite Section */
.invite-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.invite-form {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: left;
}

.invite-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.invite-form input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #475569;
    margin-bottom: 20px;
    font-size: 16px;
}

.invite-form button {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        padding: 100px 40px;
        z-index: 1000;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    nav a {
        font-size: 18px;
        width: 100%;
    }

    .header-inner {
        padding: 15px 20px;
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.feature-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Step Cards */
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.step-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.step-card .number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .step-grid {
        grid-template-columns: 1fr;
    }
}
