/* ==============================
   Theme Variables
============================== */
:root {
    --primary: #f15927;
    --primary-dark: #4e4e4e;
    --secondary: #4e4e4e;

    --bg-light: #F4F6F6;
    --white: #ffffff;

    --text-main: #172033;
    --text-muted: #667085;

    --border: #d9e1ef;

    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --shadow-lg: 0 20px 60px rgba(15, 35, 80, 0.10);
    --shadow-md: 0 14px 40px rgba(15, 35, 80, 0.08);
}

/* ==============================
   Base
============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 500;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.2s;
}

/* ==============================
   Layout
============================== */
.public-page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* ==============================
   Hero
============================== */
.hero {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    color: var(--text-muted);
}

/* ==============================
   Buttons
============================== */
.primary-btn {
    background: var(--primary);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}



/* ==============================
   HEADER
============================== */
.public-header {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    position: sticky;
    top: 0;
    z-index: 100;
}



.public-main-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.public-main-nav a {
    font-weight: 500;
    color: var(--text-main);
}

.public-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}



/* ==============================
   SERVICE MENU
============================== */
.service-menu {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.service-menu a {
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-menu i {
    font-size: 22px;
    color: var(--secondary);
}

/* ==============================
   FOOTER
============================== */
.public-footer-dark {
    background: #202020;
    color: #fff;
    margin-top: 80px;
    padding: 50px 24px;
}

.footer-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 30px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.footer-links a {
    color: #fff;
    font-weight: 400;
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 900px) {
    .package-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .package-grid {
        grid-template-columns: 1fr;
    }

    .service-menu {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Individual Service Pages
============================== */
.service-page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 70px 24px;
}

.service-hero {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 28px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.service-kicker {
    display: inline-flex;
    background: var(--bg-light);
    color: var(--primary);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 500;
    margin-bottom: 14px;
}

.service-hero h1 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--secondary);
    font-weight: 500;
}

.service-hero p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-actions a {
    background: var(--primary);
    color: #fff;
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.outline-btn {
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
}

.service-hero-card {
    background: #f6faff;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    padding: 28px;
}

.service-hero-card h3 {
    margin-top: 0;
    font-weight: 500;
}

.service-hero-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.9;
}

.service-section {
    margin-top: 60px;
}

.service-section h2 {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-box {
    background: #f9fbff;
    border-radius: var(--radius-md);
    padding: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.step-card span {
    color: var(--primary);
    font-weight: 500;
}

.faq details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: var(--shadow-md);
}

.faq summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary);
}

@media (max-width: 900px) {
    .service-hero,
    .split {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .service-page {
        padding: 40px 16px;
    }

    .service-hero h1 {
        font-size: 32px;
    }
}

.material-symbols-outlined {
    font-size: 24px;
    font-weight: 300;   /* ðŸ”¥ now works */
    color: var(--secondary);

    /* Optional fine tuning */
    line-height: 1;
}

.service-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
}

.material-symbols-outlined {
    font-variation-settings:
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

/* Regus-style public header hover */
.public-main-nav a {
    padding: 16px 18px;
    border-radius: 8px;
    color: #0b1220;
    font-weight: 500;
}

.public-main-nav a:hover {
    background: #f5f5f7;
    color: #0b1220;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 10px;
    color: #0b1220;
    font-weight: 500;
}

.phone-link i {
    font-size: 18px;
    color: #25D366; /* WhatsApp green */
}

/* hover (Regus style) */
.phone-link:hover {
    background: #eef2f7;
    color: var(--secondary);
}

.phone-link:hover i {
    color: #25D366;
}



/* Lower service menu */
.service-menu {
    border-top: 1px solid #f1f3f6;
    border-bottom: 1px solid #e9eef5;
    padding-bottom: 0;
}

.service-menu a {
    position: relative;
    padding: 14px 10px 18px;
    border-radius: 0;
    color: #0b1220;
    font-weight: 500;
}

.service-menu a:hover {
    background: transparent;
    color: var(--primary);
}

.service-menu a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    background: transparent;
    border-radius: 999px 999px 0 0;
}

.service-menu a:hover::after {
    background: var(--primary);
}

.service-menu .material-symbols-outlined {
    font-variation-settings:
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
    font-size: 24px;
    color: #0b1220;
}

.service-menu a:hover .material-symbols-outlined {
    color: var(--primary);
}

.login-link,
.avatar-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0b1220;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
}

.login-link:hover,
.avatar-btn:hover {
    background: #f5f7fb;
    color: var(--primary);
}

.signup-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 500;
}

.signup-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

.public-user-menu {
    position: relative;
}

.avatar-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
}

.public-user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
    width: 180px;
    background: #fff;
    border: 1px solid #e6edf7;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    z-index: 200;
}

.public-user-dropdown.open {
    display: block;
}

.public-user-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-main);
    font-weight: 400;
}

.public-user-dropdown a:hover {
    background: #f5f7fb;
    color: var(--primary);
}

.regular-price {
    color: #e02424;
    text-decoration: line-through;
    font-size: 15px;
    font-weight: 400;
}

.offer-label {
    color: #12b76a;
    font-size: 13px;
    font-weight: 500;
    margin-top: -8px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.compare-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.compare-card.weak {
    border: 1px solid #fee2e2;
}

.compare-card.strong {
    border: 2px solid var(--primary);
}

.compare-price {
    font-size: 28px;
    color: var(--primary);
    font-weight: 500;
    margin: 14px 0;
}

.compare-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Homepage
============================== */
.home-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 0;
}

.home-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-lg);
}

.home-hero h1 {
    font-size: 48px;
    line-height: 1.12;
    margin: 0 0 18px;
    color: var(--secondary);
    font-weight: 500;
}

.home-hero p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 720px;
}

.home-hero-visual {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, #eaf3ff, #f8fbff);
    border-radius: 28px;
    padding: 28px;
    display: flex;
    align-items: flex-end;
}

.hero-stat-card {
    position: absolute;
    top: 28px;
    left: 28px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    display: none;
}

.hero-stat-card strong {
    display: block;
    font-size: 34px;
    color: var(--primary);
    font-weight: 500;
}

.hero-stat-card span {
    color: var(--text-muted);
}

.hero-visual-box {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.hero-visual-box h3 {
    margin-top: 0;
    color: var(--secondary);
}

.hero-visual-box ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.9;
}

.home-section {
    margin-top: 70px;
}

.section-head {
    max-width: 720px;
    margin-bottom: 26px;
}

.section-head h2,
.home-section h2,
.home-cta h2 {
    font-size: 32px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

.section-head p,
.home-section p,
.home-cta p {
    color: var(--text-muted);
}

.workspace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.workspace-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-md);
    color: var(--text-main);
    transition: 0.25s;
}

.workspace-card:hover {
    transform: translateY(-5px);
    color: var(--text-main);
}

.workspace-card .material-symbols-outlined {
    font-size: 30px;
    color: var(--primary);
    font-variation-settings: 'wght' 300, 'opsz' 24;
}

.workspace-card h3 {
    margin: 14px 0 8px;
    color: var(--secondary);
}

.workspace-card p {
    color: var(--text-muted);
    min-height: 52px;
}

.workspace-card small {
    color: var(--primary);
    font-weight: 500;
}

.workspace-card.featured-option {
    background: var(--secondary);
    color: #fff;
}

.workspace-card.featured-option h3,
.workspace-card.featured-option p,
.workspace-card.featured-option small,
.workspace-card.featured-option .material-symbols-outlined {
    color: #fff;
}

.home-compare {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.compare-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.compare-mini {
    border-radius: var(--radius-md);
    padding: 24px;
    background: #f7f9fc;
}

.compare-mini.strong {
    border: 2px solid var(--primary);
    background: #f7fbff;
}

.compare-mini strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.solution-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.solution-card h3 {
    margin-top: 0;
    color: var(--secondary);
}

.home-cta {
    margin-top: 80px;
    background: var(--secondary);
    color: #fff;
    border-radius: 28px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.home-cta h2,
.home-cta p {
    color: #fff;
}

.outline-light {
    background: transparent !important;
    border: 1px solid #fff;
    color: #fff !important;
}

@media (max-width: 992px) {
    .home-hero,
    .home-compare {
        grid-template-columns: 1fr;
        padding: 36px;
    }

    .workspace-grid,
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-hero h1 {
        font-size: 36px;
    }

    .home-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .home-page {
        padding: 30px 16px 0;
    }

    .workspace-grid,
    .solution-grid,
    .compare-mini-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 28px;
    }

    .home-hero h1 {
        font-size: 30px;
    }
}

/* ==============================
   Contact Page
============================== */
.contact-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px 0;
}

.contact-hero {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: start;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 56px;
}

.contact-info h1 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--secondary);
    font-weight: 500;
    margin: 14px 0;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 17px;
}

.contact-methods {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 500;
}

.contact-methods .material-symbols-outlined {
    color: var(--primary);
    font-variation-settings: 'wght' 300, 'opsz' 24;
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    margin: 0 0 6px;
    color: var(--secondary);
    font-weight: 500;
}

.contact-form-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    color: var(--text-main);
    font-weight: 500;
    font-size: 14px;
}

.radio-grid,
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
}

.radio-grid label,
.checkbox-grid label {
    font-weight: 400;
    color: var(--text-muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400 !important;
    color: var(--text-muted) !important;
}

.contact-form .primary-btn {
    border: 0;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

.contact-locations {
    margin-top: 80px;
}

.location-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
}

.location-list {
    display: grid;
    gap: 14px;
}

.location-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    margin: 0 0 8px;
    color: var(--secondary);
}

.location-card p {
    color: var(--text-muted);
}

.location-card a {
    font-weight: 500;
}

.map-box {
    min-height: 440px;
    background: #f4f7fb;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
}

.map-box .material-symbols-outlined {
    font-size: 46px;
    color: var(--primary);
    font-variation-settings: 'wght' 300, 'opsz' 48;
}

@media (max-width: 900px) {
    .contact-hero,
    .location-layout {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .radio-grid,
    .checkbox-grid,
    .form-two {
        grid-template-columns: 1fr;
    }

    .contact-info h1 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 36px 16px 0;
    }

    .contact-hero {
        padding: 24px;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* Desktop public header layout fix */
.public-mobile-head {
    display: contents;
}

.mobile-menu-toggle {
    display: none;
}

.public-mobile-menu {
    display: contents;
}

.public-topbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 24px;
}
.public-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.public-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}
.phone-link i {
    color: #25D366;
}

.footer-wrap{
    position:relative;
}

.footer-apps{
    position:absolute;
    right:0;
    top:25px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    gap:10px;
}

.footer-app-title{
    color:rgba(255,255,255,.72);
    font-size:14px;
    font-weight:500;
    white-space:nowrap;
    padding-left:2px;
}

.footer-store-buttons{
    display:flex;
    gap:10px;
}

.store-btn{
    display:flex;
    align-items:center;
    gap:9px;
    min-width:150px;
    padding:9px 12px;
    border-radius:12px;
    background:var(--primary);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    text-decoration:none;
}

.store-btn:hover{
    background:transparent;
    border:1px solid rgba(255,255,255,.10);
}

.store-btn i{
    font-size:22px;
    color:#fff;
}

.store-btn div{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.store-btn small{
    font-size:10px;
    color:rgba(255,255,255,.65);
}

.store-btn strong{
    font-size:13px;
    color:#fff;
}

@media (max-width:768px){
    .footer-apps{
        position:static;
        margin-top:22px;
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-store-buttons{
        width:100%;
        flex-direction:column;
    }

    .store-btn{
        width:100%;
    }
}

/* Clean public desktop header */
@media (min-width: 769px){

    .public-topbar{
        max-width:1280px;
        margin:0 auto;
        padding:14px 24px;
        display:grid;
        grid-template-columns:220px 1fr auto;
        align-items:center;
        gap:24px;
    }

    .public-mobile-head{
        display:contents;
    }

    .mobile-menu-toggle{
        display:none;
    }

    .public-mobile-menu{
        display:contents;
    }

    .public-main-nav{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:44px;
    }

    .public-actions{
        display:flex;
        align-items:center;
        justify-content:flex-end;
        gap:14px;
        white-space:nowrap;
    }

    .public-main-nav a,
    .public-actions a{
        flex-shrink:0;
    }
}

.public-mobile-head a{
    font-size:30px;
    line-height:1;
    font-weight:800;
    letter-spacing:-1px;
    color:var(--primary);
    text-decoration:none;
    display:inline-flex;
    align-items:center;
}

/* Public solutions dropdown */
.public-nav-dropdown{
    position:relative;
}

.public-nav-parent{
    display:flex;
    align-items:center;
    gap:4px;
}

.public-nav-parent .material-symbols-outlined{
    font-size:18px;
}

.public-dropdown-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(12px);
    width:760px;
    background:#fff;
    border:1px solid #e6edf7;
    border-radius:20px;
    padding:20px;
    box-shadow:0 24px 60px rgba(15,35,79,.14);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.2s ease;
    z-index:999;
}

.public-nav-dropdown:hover .public-dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(8px);
}

.public-dropdown-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.public-dropdown-group a{
    text-decoration:none;
    color:#344054;
    font-size:14px;
    font-weight:500;
    padding:8px 10px;
    border-radius:10px;
}

.public-dropdown-group a:hover{
    background:#f5f8fb;
    color:#0f6662;
}

.public-dropdown-group .dropdown-category{
    color:#0f6662;
    font-weight:700;
    background:#f3fbf8;
}

.map-box.map-embed-box{
    padding:0 !important;
    overflow:hidden;
    min-height:540px;
    display:block;
    background:#fff;
}

.map-box.map-embed-box iframe{
    width:848px! important;
    height:540px !important;
    display:block;
    border:0;
}

/* ==============================
   Locations Page
============================== */

.locations-page .location-hero{
    align-items:stretch;
}

.cowork-location-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:26px;
    margin-top:34px;
}

.cowork-location-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(15,35,79,.08);
    border:1px solid var(--border);
}

.featured-location-card{
    border:2px solid var(--primary);
}

.location-photo{
    position:relative;
    height:300px;
    background:#f4f7fb;
    overflow:hidden;
}

.location-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.location-badge{
    position:absolute;
    left:20px;
    bottom:20px;
    background:var(--primary);
    color:#fff;
    border-radius:999px;
    padding:10px 16px;
    font-size:13px;
    font-weight:600;
}

.location-badge.secondary{
    background:var(--secondary);
}

.location-content{
    padding:30px;
}

.location-kicker{
    display:inline-block;
    color:var(--primary);
    font-weight:600;
    font-size:14px;
    margin-bottom:10px;
}

.location-content h3{
    font-size:26px;
    color:var(--secondary);
    margin-bottom:12px;
}

.location-content p{
    color:var(--text-muted);
    line-height:1.7;
}

.location-service-list{
    display:grid;
    gap:12px;
    margin:22px 0;
}

.location-service-list span{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--text-main);
    font-weight:500;
}

.location-service-list i{
    color:var(--primary);
}

.location-service-list .not-available{
    color:#b42318;
}

.location-service-list .not-available i{
    color:#b42318;
}

.location-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.location-comparison-section{
    overflow:hidden;
}

.location-compare-table{
    overflow-x:auto;
    background:#fff;
    border-radius:24px;
    border:1px solid var(--border);
    box-shadow:0 12px 35px rgba(15,35,79,.06);
}

.location-compare-table table{
    width:100%;
    border-collapse:collapse;
    min-width:720px;
}

.location-compare-table th,
.location-compare-table td{
    padding:18px 20px;
    text-align:left;
    border-bottom:1px solid var(--border);
}

.location-compare-table th{
    background:#f4f7fb;
    color:var(--secondary);
    font-weight:600;
}

.available,
.unavailable{
    display:inline-flex;
    border-radius:999px;
    padding:7px 12px;
    font-size:13px;
    font-weight:600;
}

.available{
    background:#ecfdf3;
    color:#067647;
}

.unavailable{
    background:#fee4e2;
    color:#b42318;
}

.location-map-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 12px 35px rgba(15,35,79,.06);
    border:1px solid var(--border);
}

.location-map-card iframe{
    width:100%;
    height:480px;
    display:block;
}

.location-actions .primary-btn,
.location-actions .outline-btn{
    min-height:46px;
    padding:13px 20px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.location-actions .primary-btn{
    background:var(--primary);
    color:#fff;
    border:1px solid var(--primary);
}

.location-actions .outline-btn{
    background:#fff;
    color:var(--primary);
    border:1px solid var(--primary);
}

.location-actions .outline-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ==============================
   Unified Solution & Package Cards
============================== */

.package-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:28px;
    margin-top:34px;
}

.package-card{
    position:relative;
    background:#fff;
    border-radius:26px;
    padding:28px;
    box-shadow:0 18px 50px rgba(15,35,79,.10);
    border:1px solid rgba(11,92,93,.10);
    color:var(--text-main);
    min-height:430px;
    display:flex;
    flex-direction:column;
    text-decoration:none;
    transition:.25s ease;
}

.package-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 70px rgba(15,35,79,.14);
}

.package-card.featured{
    border:2px solid var(--primary);
}

.package-card h3{
    font-size:22px;
    line-height:1.35;
    color:var(--text-main);
    margin:0 0 14px;
    padding-right:90px;
}

.package-short{
    color:var(--text-muted);
    font-size:14px;
    line-height:1.6;
    margin:0 0 24px;
}

.badge{
    position:static;
    top:20px;
    right:20px;
    background:rgba(110,197,161,.16);
    color:var(--primary);
    font-size:11px;
    font-weight:600;
    padding:8px 13px;
    border-radius:999px;
    line-height:1;
}

.package-card .badge{
    position:absolute;
    top:20px;
    right:20px;
    background:rgba(110,197,161,.16);
    color:var(--primary);
    font-size:11px;
    font-weight:600;
    padding:8px 13px;
    border-radius:999px;
    line-height:1;
}

.badge.green{
    background:rgba(110,197,161,.16);
    color:var(--primary);
}

.solution-icon-box{
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(11,92,93,.08);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:6px 0 26px;
}

.solution-icon-box .material-symbols-outlined{
    font-size:34px;
}

.regular-price,
.old-price{
    color:#d92d20;
    text-decoration:line-through;
    font-size:14px;
    margin:14px 0 12px;
}

.package-card .price{
    font-size:32px;
    font-weight:700;
    color:var(--primary);
    line-height:1.1;
    margin-bottom:28px;
}

.package-card .price span{
    font-size:16px;
    font-weight:500;
    color:var(--text-main);
}

.package-divider{
    height:1px;
    width:100%;
    background:var(--border);
    margin:8px 0 22px;
}

.package-card h4{
    margin:0 0 12px;
    color:var(--text-main);
    font-size:15px;
}

.package-card .features{
    list-style:none;
    padding:0;
    margin:0 0 26px;
    color:var(--text-muted);
    font-size:14px;
    line-height:1.65;
    display:grid;
    gap:9px;
}

.package-card .features li{
    position:relative;
    padding-left:24px;
}

.package-card .features li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--primary);
    font-weight:700;
}

.package-card .primary-btn{
    margin-top:auto;
    width:100%;
    min-height:48px;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    padding:13px 20px;
    text-decoration:none;
}

.package-card .primary-btn:hover{
    background:var(--primary-dark);
}

@media(max-width:1100px){
    .package-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:680px){
    .package-grid{
        grid-template-columns:1fr;
    }

    .package-card{
        min-height:auto;
        padding:24px;
    }

    .package-card h3{
        font-size:20px;
    }

    .package-card .price{
        font-size:30px;
    }
}