:root {
    --primary-orange: #F77F00;
    --primary-blue: #0D3B66;
    --light-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(13, 59, 102, 0.1);
}

a{
    text-decoration: none;
}

/* HERO */
.premium-hero {
    display: flex;
    margin-top: 100px;
    min-height: 90vh;
    background: url('../images/truck-transporting.jpg') center/cover no-repeat;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* 🔥 WHITE + BLUE OVERLAY (MAJOR UPGRADE) */
.hero-overlay {
    flex: 1;
    display: flex;
    align-items: center;
    background: linear-gradient(
        110deg,
        rgba(255,255,255,0.95) 35%,
        rgba(255,255,255,0.85) 55%,
        rgba(255,255,255,0.4) 100%
    );
    padding: 0 8%;
}

/* INNER */
.hero-inner {
    width: 100%;
    max-width: 1200px;
}

/* 🔥 LIGHT GLASS CARD */
.content-card {
    max-width: 650px;
    padding: 45px;
    background: var(--light-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* STATUS */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,127,0,0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(247,127,0,0.6);
}

/* HEADING */
h1 {
    font-size: 4rem;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

/* ACCENT */
.accent-text {
    color: var(--primary-orange);
}

/* TEXT */
p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ACTIONS */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* 🔥 PRIMARY BUTTON */
.btn-glow {
    background: linear-gradient(135deg, #F77F00, #ff9f1c);
    color: #fff;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(247,127,0,0.4);
}

.btn-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(247,127,0,0.6);
}

/* 🔥 OUTLINE BUTTON */
.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* TRUST */
.trust-badges {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid rgba(13,59,102,0.1);
    padding-top: 25px;
}

.trust-badges strong {
    color: var(--primary-blue);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content-card { 
        padding: 25px; 
        background: transparent; 
        border: none; 
        backdrop-filter: none; 
    }

    h1 { font-size: 2.5rem; }

    .hero-actions { flex-direction: column; }
}


/* Services Section */

:root {
    --primary-orange: #F77F00;
    --primary-blue: #0D3B66;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #0D3B66;
    --text-gray: #666;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0px 20px;
}

/* BADGE */
.badge {
    display: inline-block;
    border: 1px solid rgba(247,127,0,0.2);
    background: rgba(247,127,0,0.08);
    color: var(--primary-orange);
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* TITLE */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.section-title span {
    color: var(--primary-orange);
}

/* SUBTITLE */
.section-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* DIVIDER */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-orange));
}

.line.right {
    background: linear-gradient(to left, transparent, var(--primary-orange));
}

.divider i {
    color: var(--primary-orange);
    font-size: 14px;
}

/* 🔥 GRID - FORCE 4 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: left;
    position: relative;

    border: 1px solid rgba(13,59,102,0.08);

    box-shadow: 
        0 10px 30px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03);

    transition: 0.35s ease;
    overflow: hidden;
}

/* 🔥 TOP ACCENT */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F77F00, #ff9f1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

/* 🔥 NUMBER (SOFT BLUE GHOST) */
.service-card::after {
    content: attr(data-number);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(13,59,102,0.05);
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.1),
        0 10px 25px rgba(247,127,0,0.08);
    border-color: rgba(247,127,0,0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ICON */
.icon-box {
    background: rgba(247,127,0,0.08);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.icon-box i {
    color: var(--primary-orange);
    font-size: 22px;
}

/* ICON HOVER */
.service-card:hover .icon-box {
    background: linear-gradient(135deg, #F77F00, #ff9f1c);
}

.service-card:hover .icon-box i {
    color: #fff;
}

/* TITLE */
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* TEXT */
.service-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(13,59,102,0.08);
    padding-bottom: 20px;
}

/* FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-label {
    color: var(--primary-orange);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BUTTON */
.arrow-btn {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: 0.3s;
}

.service-card:hover .arrow-btn {
    background: var(--primary-orange);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* Why Choose Us */

/* VARIABLES */
:root {
    --p-accent: #F77F00;       /* ORANGE */
    --p-bg: #f8fafc;           /* LIGHT BACKGROUND */
    --p-surface: #ffffff;      /* CARD */
    --p-text-main: #0D3B66;    /* BLUE */
    --p-text-muted: #666666;
}

/* SECTION */
.p-section-wrap {
    background-color: var(--p-bg);
    padding: 100px 20px;
    color: var(--p-text-main);
    overflow: hidden;
}

.p-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

/* LEFT COLUMN */
.p-info-column { flex: 1; min-width: 320px; }

/* BADGE */
.p-badge-outer {
    border: 1px solid rgba(247,127,0,0.2);
    display: inline-flex;
    padding: 6px 15px;
    border-radius: 6px;
    align-items: center;
    margin-bottom: 25px;
    background: rgba(247,127,0,0.05);
}

.p-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--p-accent);
    border-radius: 50%;
    margin-right: 10px;
}

.p-badge-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--p-accent);
    letter-spacing: 2px;
}

/* TITLE */
.p-main-title {
    font-size: 3.5rem;
    line-height: 1;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--p-text-main);
}

.p-text-highlight {
    color: var(--p-accent);
}

/* DIVIDER */
.p-divider-box {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.p-line {
    width: 50px;
    height: 2px;
    background: var(--p-accent);
    margin-right: 15px;
}

.p-crown-icon {
    color: var(--p-accent);
    font-size: 14px;
}

/* TEXT */
.p-main-paragraph {
    color: var(--p-text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 480px;
}

/* GRID */
.p-grid-column {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 🔥 CARD */
.p-feature-card {
    background: var(--p-surface);
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(13,59,102,0.08);

    /* SHADOW FOR DEPTH */
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03);

    transition: 0.35s ease;

    /* CUT CORNER (KEEP THIS 🔥) */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), calc(100% - 35px) 100%, 0 100%);
}

/* 🔥 HOVER */
.p-feature-card:hover {
    border-color: rgba(247,127,0,0.3);
    transform: translateY(-8px) scale(1.02);

    box-shadow: 
        0 25px 60px rgba(0,0,0,0.1),
        0 10px 25px rgba(247,127,0,0.1);
}

/* INDEX */
.p-card-index {
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgba(13,59,102,0.08);
    font-weight: 900;
    font-size: 1.5rem;
}

/* ICON */
.p-card-icon-wrap {
    font-size: 2.2rem;
    color: var(--p-accent);
    margin-bottom: 25px;
}

/* TITLE */
.p-card-title {
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--p-text-main);
}

/* DESC */
.p-card-desc {
    color: var(--p-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* TAG */
.p-card-tag {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--p-accent);
    letter-spacing: 1px;
}

.p-tag-dot {
    width: 5px;
    height: 5px;
    background: var(--p-accent);
    border-radius: 50%;
    margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .p-grid-column {
        grid-template-columns: 1fr;
    }

    .p-main-title {
        font-size: 2.5rem;
    }

    .p-container {
        flex-direction: column;
    }
}


/* Process Section */

:root {
    --deep-blue: #0D3B66;
    --bright-orange: #F77F00;
    --soft-white: #f8fafc;
    --card-border: rgba(13, 59, 102, 0.08);
}

/* SECTION */
.elite-journey {
    padding: 120px 5%;
    background: radial-gradient(circle at top right, #ffffff, #ffffff);
    position: relative;
    overflow: hidden;
}

.elite-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

/* HEADER */
.elite-header {
    text-align: center;
    margin-bottom: 40px;
}

.elite-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 59, 102, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--deep-blue);
    letter-spacing: 2px;
    /* margin-bottom: 20px; */
}

.elite-tag span {
    width: 6px;
    height: 6px;
    background: var(--bright-orange);
    border-radius: 50%;
    margin-right: 10px;
}

.elite-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--deep-blue);
    font-weight: 800;
    line-height: 1.1;
}

.elite-header h2 span {
    color: var(--bright-orange);
}

/* GRID */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 60px;
}

/* ROAD */
.journey-road-svg {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    opacity: 0.6;
}

/* TRUCK */
.elite-truck {
    position: absolute;
    top: 35px;
    font-size: 26px;
    color: var(--deep-blue);
    animation: moveTruck 12s linear infinite;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15));
}

/* CARDS */
.journey-card {
    position: relative;
    z-index: 2;
}

/* GLASS CARD */
.card-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid var(--card-border);
    padding: 45px 28px;
    border-radius: 24px;

    box-shadow: 
        0 15px 40px rgba(13, 59, 102, 0.05),
        0 5px 15px rgba(13, 59, 102, 0.03);

    transition: all 0.4s ease;
}

/* HOVER */
.card-glass:hover {
    transform: translateY(-12px) scale(1.02);
    background: #ffffff;

    box-shadow: 
        0 30px 70px rgba(13, 59, 102, 0.12),
        0 10px 30px rgba(247,127,0,0.1);

    border-color: rgba(247,127,0,0.3);
}

/* ICON */
.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.icon-circle.blue {
    background: rgba(13, 59, 102, 0.08);
    color: var(--deep-blue);
}

.icon-circle.orange {
    background: rgba(247, 127, 0, 0.1);
    color: var(--bright-orange);
}

/* TEXT */
.step-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--deep-blue);
    opacity: 0.5;
    letter-spacing: 2px;
}

.orange-text {
    color: var(--bright-orange) !important;
    opacity: 1 !important;
}

.card-glass h3 {
    margin: 12px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.card-glass p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.92rem;
}


/* 🔥 RESPONSIVE IMPROVEMENTS */

/* Tablet */
@media (max-width: 1100px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .journey-road-svg {
        display: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .elite-journey {
        padding: 70px 20px;
    }

    .card-glass {
        padding: 35px 20px;
    }

    .elite-header h2 {
        font-size: 2rem;
    }
}

:root {
    --blue-dark: #0D3B66;
    --orange-accent: #F77F00;
    --bg-white: #ffffff;
    --text-main: #2d3748;
    --text-light: #718096;
}

.premium-about {
    padding: 120px 5%;
    background-color: #fafbfc;
    font-family: 'Jost', sans-serif;
    overflow: hidden;
}

.about-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- VISUAL SIDE --- */
.about-visual {
    position: relative;
}

.main-image-container {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: visible; /* To allow badge to overlap */
}

.main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(13, 59, 102, 0.15);
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--blue-dark);
    color: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(13, 59, 102, 0.3);
    border: 4px solid #fff;
}

.exp-content h4 { font-size: 32px; margin: 0; color: var(--orange-accent); }
.exp-content span { font-size: 14px; opacity: 0.8; line-height: 1.2; display: block; }

.about-shape {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: repeating-linear-gradient(45deg, #e2e8f0, #e2e8f0 2px, transparent 2px, transparent 10px);
    z-index: 1;
}

/* --- INFO SIDE --- */
.modern-badge {
    background: rgba(247, 127, 0, 0.1);
    color: var(--orange-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-heading {
    font-size: 50px;
    line-height: 1.1;
    color: var(--blue-dark);
    margin: 25px 0;
    font-weight: 800;
}

.accent-text { color: var(--orange-accent); }

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* --- STATS GRID --- */
.modern-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-item {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange-accent);
}

.stat-icon {
    font-size: 24px;
    color: var(--orange-accent);
    background: rgba(247, 127, 0, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-text h3 { font-size: 20px; margin: 0; color: var(--blue-dark); }
.stat-text p { font-size: 12px; margin: 0; color: var(--text-light); }

/* --- BUTTON & CTA --- */
.about-action {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-primary {
    background: var(--blue-dark);
    color: #fff;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(13, 59, 102, 0.2);
}

.btn-primary:hover {
    background: var(--orange-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(247, 127, 0, 0.3);
}

.support-call {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-call i { font-size: 30px; color: var(--orange-accent); }
.support-call span { font-size: 12px; color: var(--text-light); display: block; }
.support-call strong { color: var(--blue-dark); font-size: 15px; }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .about-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { order: 2; max-width: 600px; margin: 0 auto; }
    .about-info { order: 1; text-align: center; }
    .about-description { margin: 0 auto 40px; }
    .about-action { justify-content: center; flex-direction: column; gap: 20px; }
    .modern-stats { justify-content: center; }
}

@media (max-width: 600px) {
    .about-heading { font-size: 34px; }
    .main-img { height: 400px; }
    .exp-badge { right: 10px; bottom: -20px; padding: 20px; }
}


/* Contact form  */

:root {
    --b-blue: #0D3B66;
    --b-orange: #F77F00;
    --b-bg-light: #f4f7fb;
    --b-input-bg: #ffffff;
    --b-text: #334155;
}

body { margin: 0; font-family: 'Jost', sans-serif; background: #ffffff; }

.bubble-contact-section {
    padding: 100px 5%;
    background: radial-gradient(circle at 50% 0%, #ffffff, var(--b-bg-light));
}

.bubble-header {
    text-align: center;
    margin-bottom: 60px;
}

.bubble-tag {
    background: rgba(247, 127, 0, 0.1);
    color: var(--b-orange);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.bubble-header h2 {
    font-size: 3.5rem;
    color: var(--b-blue);
    margin: 0;
    font-weight: 800;
}

.bubble-header h2 span { color: var(--b-orange); }

.bubble-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* --- LEFT: MAP BUBBLE --- */
.map-bubble-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(13, 59, 102, 0.1);
    border: 8px solid #ffffff;
    min-height: 500px;
}

.map-bubble-card iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    filter: contrast(1.1) saturate(1.2);
}

.floating-pills-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    width: 90%;
    justify-content: center;
}

.info-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.pill-icon {
    width: 40px; height: 40px;
    background: rgba(247, 127, 0, 0.1);
    color: var(--b-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.pill-text span { font-size: 11px; color: var(--b-text); display: block; text-transform: uppercase; font-weight: 600; }
.pill-text strong { font-size: 15px; color: var(--b-blue); }

/* --- RIGHT: FORM BUBBLE --- */
.form-bubble-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(13, 59, 102, 0.08);
}

.form-bubble-card h3 { font-size: 28px; color: var(--b-blue); margin: 0 0 10px 0; }
.form-bubble-card p { color: var(--b-text); margin-bottom: 35px; }

/* BUBBLE INPUTS */
.bubble-form { display: flex; flex-direction: column; gap: 20px; }
.bubble-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.bubble-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.bubble-input-group i {
    position: absolute;
    left: 25px;
    color: var(--b-orange);
    font-size: 18px;
    z-index: 2;
}

.pill-input {
    width: 100%;
    padding: 20px 20px 20px 60px; /* Space for the icon */
    border-radius: 50px;
    border: 2px solid #eef2f6;
    background: var(--b-bg-light);
    font-family: inherit;
    font-size: 15px;
    color: var(--b-blue);
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pill-input:focus {
    background: #ffffff;
    border-color: var(--b-blue);
    box-shadow: 0 10px 20px rgba(13, 59, 102, 0.05);
}

/* Dropdown fix for pill shape */
.select-pill {
    appearance: none;
    cursor: pointer;
}

/* Textarea Bubble */
.text-bubble { align-items: flex-start; }
.text-bubble i { top: 25px; }

.pill-textarea {
    width: 100%;
    padding: 25px 20px 25px 60px;
    border-radius: 30px; /* Slightly less round than inputs so it looks natural */
    border: 2px solid #eef2f6;
    background: var(--b-bg-light);
    font-family: inherit;
    font-size: 15px;
    color: var(--b-blue);
    outline: none;
    resize: none;
    height: 140px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pill-textarea:focus {
    background: #ffffff;
    border-color: var(--b-blue);
    box-shadow: 0 10px 20px rgba(13, 59, 102, 0.05);
}

/* BUBBLE BUTTON */
.bubble-btn {
    background: var(--b-orange);
    color: #ffffff;
    border: none;
    padding: 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(247, 127, 0, 0.3);
    margin-top: 10px;
}

.bubble-btn:hover {
    background: var(--b-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 59, 102, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bubble-container { grid-template-columns: 1fr; }
    .map-bubble-card { min-height: 400px; }
}

@media (max-width: 600px) {
    .bubble-input-row { grid-template-columns: 1fr; }
    .floating-pills-wrapper { flex-direction: column; width: 85%; }
    .form-bubble-card { padding: 30px 20px; }
    .bubble-header h2 { font-size: 2.5rem; }
}