:root {
    --blue: #2563eb;
    --blue-dark: #123b8f;
    --green: #16a34a;
    --sky: #0ea5e9;
    --dark: #0f172a;
    --muted: #64748b;
    --light: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --radius: 28px;
    --shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.fw-black {
    font-weight: 900;
}

.portal-navbar {
    background: rgba(15, 23, 42, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 14px 0;
}

.portal-navbar .navbar-brand,
.portal-navbar .nav-link {
    color: #fff;
}

.portal-navbar .nav-link {
    font-weight: 700;
    opacity: .86;
}

.portal-navbar .nav-link:hover {
    opacity: 1;
    color: #bfdbfe;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #38bdf8, #2563eb, #16a34a);
    border-radius: 16px;
    margin-right: 8px;
    color: white;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(15, 23, 42, .92), rgba(37, 99, 235, .70), rgba(22, 163, 74, .55)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center/cover;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.20), transparent 28rem),
        radial-gradient(circle at 80% 10%, rgba(14,165,233,.35), transparent 25rem);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    line-height: .95;
    font-weight: 950;
    letter-spacing: -4px;
    margin-bottom: 24px;
}

.hero p {
    max-width: 690px;
    color: rgba(255,255,255,.88);
    font-size: 1.15rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn-main {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: white;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(37, 99, 235, .35);
}

.btn-main:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-glass {
    color: white;
    border: 1px solid rgba(255,255,255,.30);
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 900;
}

.hero-search {
    max-width: 760px;
    background: white;
    border-radius: 24px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}

.hero-search i {
    color: var(--blue);
    font-size: 1.2rem;
    margin-left: 12px;
}

.hero-search input {
    border: 0;
    outline: 0;
    flex: 1;
    font-weight: 700;
    color: var(--dark);
}

.hero-search button {
    border: 0;
    background: var(--dark);
    color: white;
    border-radius: 18px;
    padding: 12px 22px;
    font-weight: 900;
}

.hero-card {
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 34px;
    padding: 28px;
    box-shadow: 0 34px 100px rgba(0,0,0,.28);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.hero-card small {
    color: rgba(255,255,255,.72);
    font-weight: 800;
}

.hero-card h3 {
    font-weight: 950;
    margin: 5px 0 0;
}

.weather-fake {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: rgba(255,255,255,.18);
    font-size: 2rem;
}

.city-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.city-stats div {
    background: rgba(255,255,255,.14);
    border-radius: 22px;
    padding: 18px;
}

.city-stats strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 950;
}

.city-stats span {
    display: block;
    font-size: .78rem;
    color: rgba(255,255,255,.78);
    font-weight: 700;
}

.mini-alert {
    background: rgba(255,255,255,.14);
    border-radius: 22px;
    padding: 18px;
    line-height: 1.6;
    font-weight: 700;
}

.quick-section {
    margin-top: -52px;
    position: relative;
    z-index: 4;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quick-card {
    min-height: 135px;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    color: var(--dark);
    font-weight: 900;
    transition: .25s;
}

.quick-card:hover {
    transform: translateY(-6px);
    color: var(--blue);
}

.quick-card i {
    font-size: 2rem;
    color: var(--blue);
}

.section-pad {
    padding: 95px 0;
}

.soft-bg {
    background:
        radial-gradient(circle at 10% 10%, rgba(37,99,235,.08), transparent 30rem),
        #f8fafc;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 36px;
}

.eyebrow {
    color: var(--blue);
    font-size: .78rem;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 1.5px;
}

.eyebrow.light {
    color: #bfdbfe;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 950;
    letter-spacing: -2px;
    margin: 8px 0;
}

.section-head p {
    color: var(--muted);
    max-width: 690px;
    font-size: 1.05rem;
}

.link-more {
    color: var(--blue);
    font-weight: 950;
    white-space: nowrap;
}

.place-card,
.business-card,
.event-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 55px rgba(15,23,42,.08);
    transition: .25s;
}

.place-card:hover,
.business-card:hover,
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.place-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.place-img span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15,23,42,.78);
    color: white;
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 850;
    font-size: .82rem;
    backdrop-filter: blur(10px);
}

.place-body,
.business-body {
    padding: 24px;
}

.place-body h3,
.business-body h3,
.event-info h3 {
    font-weight: 950;
    letter-spacing: -.5px;
}

.place-body p,
.business-body p {
    color: var(--muted);
    line-height: 1.65;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.tags small {
    background: #eff6ff;
    color: var(--blue);
    border-radius: 999px;
    padding: 7px 10px;
    font-weight: 900;
}

.card-link {
    font-weight: 950;
    color: var(--blue);
}

.event-card {
    padding: 22px;
    display: flex;
    gap: 18px;
}

.event-date {
    width: 72px;
    height: 82px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--blue);
    flex: none;
}

.event-date strong {
    font-size: 2rem;
    line-height: 1;
    font-weight: 950;
}

.event-date span {
    font-size: .78rem;
    font-weight: 950;
}

.event-info small {
    font-weight: 950;
}

.event-info p {
    color: var(--muted);
    margin-bottom: 0;
}

.business-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.business-body small {
    color: var(--blue);
    font-weight: 950;
}

.business-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.business-actions a {
    background: #f1f5f9;
    color: var(--dark);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 900;
    font-size: .88rem;
}

.service-section {
    background:
        radial-gradient(circle at 20% 10%, rgba(56,189,248,.22), transparent 30rem),
        linear-gradient(135deg, #0f172a, #1e3a8a);
}

.service-section .section-head p {
    color: rgba(255,255,255,.72);
}

.phone-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 28px;
    padding: 26px;
    color: white;
    height: 100%;
    backdrop-filter: blur(16px);
}

.phone-card i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.16);
    border-radius: 18px;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.phone-card h3 {
    font-weight: 950;
    font-size: 1.15rem;
}

.phone-card p {
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
}

.phone-card strong {
    font-size: 1.2rem;
}

.cta-final {
    padding: 90px 0;
    background: #f8fafc;
}

.cta-box {
    background:
        radial-gradient(circle at 90% 20%, rgba(14,165,233,.18), transparent 26rem),
        white;
    border-radius: 36px;
    padding: 42px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-box h2 {
    font-weight: 950;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -1.5px;
}

.cta-box p {
    color: var(--muted);
    max-width: 720px;
}

.portal-footer {
    background: #020617;
    color: white;
    padding: 46px 0;
}

.portal-footer p,
.portal-footer small {
    color: rgba(255,255,255,.68);
}

.empty-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: var(--muted);
    padding: 28px;
    border-radius: 24px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 110px;
        min-height: auto;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section-head,
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .hero-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
    }

    .hero-search i {
        display: none;
    }

    .hero-search input {
        padding: 12px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 65px 0;
    }

    .place-img,
    .business-img {
        height: 180px;
    }

    .cta-box {
        padding: 28px;
    }
}

.service-modern{
    position:relative;
    overflow:hidden;
    padding:105px 0;
}

.service-modern::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 12% 15%, rgba(56,189,248,.22), transparent 26rem),
        radial-gradient(circle at 90% 15%, rgba(34,197,94,.22), transparent 28rem),
        radial-gradient(circle at 50% 100%, rgba(37,99,235,.18), transparent 30rem);
    pointer-events:none;
}

.service-modern .container{
    position:relative;
    z-index:2;
}

.service-title-row{
    align-items:center;
}

.service-kicker{
    background:rgba(255,255,255,.14) !important;
    color:#fff !important;
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(14px);
}

.service-mini-info{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.82);
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    padding:12px 16px;
    font-weight:900;
    backdrop-filter:blur(14px);
    white-space:nowrap;
}

.service-mini-info i{
    color:#38bdf8;
}

.phone-carousel-wrap{
    position:relative;
    margin-top:36px;
}

.phone-carousel{
    display:flex;
    gap:22px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    padding:8px 6px 28px;
    scrollbar-width:none;
}

.phone-carousel::-webkit-scrollbar{
    display:none;
}

.phone-card-modern{
    position:relative;
    flex:0 0 330px;
    min-height:360px;
    scroll-snap-align:start;
    border-radius:34px;
    padding:26px;
    overflow:hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
    border:1px solid rgba(255,255,255,.20);
    box-shadow:0 28px 80px rgba(0,0,0,.22);
    backdrop-filter:blur(18px);
    color:#fff;
    transition:.28s;
}

.phone-card-modern:hover{
    transform:translateY(-8px) scale(1.015);
    background:
        linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.10));
}

.phone-glow{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:999px;
    right:-70px;
    top:-70px;
    background:radial-gradient(circle, rgba(56,189,248,.45), transparent 68%);
    opacity:.85;
}

.phone-featured{
    position:absolute;
    top:18px;
    right:18px;
    z-index:4;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 12px;
    border-radius:999px;
    background:linear-gradient(135deg,#facc15,#f97316);
    color:#111827;
    font-weight:1000;
    font-size:.76rem;
    box-shadow:0 12px 28px rgba(249,115,22,.35);
}

.phone-icon-modern{
    width:76px;
    height:76px;
    position:relative;
    z-index:2;
    display:grid;
    place-items:center;
    border-radius:26px;
    color:#fff;
    font-size:1.8rem;
    background:linear-gradient(135deg,#38bdf8,#2563eb,#16a34a);
    box-shadow:0 18px 42px rgba(37,99,235,.32);
    margin-bottom:22px;
}

.phone-content-modern{
    position:relative;
    z-index:2;
}

.phone-category{
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:7px 11px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    color:rgba(255,255,255,.82);
    font-size:.76rem;
    font-weight:1000;
    margin-bottom:14px;
}

.phone-content-modern h3{
    font-size:1.35rem;
    font-weight:1000;
    line-height:1.15;
    letter-spacing:-.6px;
    margin-bottom:12px;
    color:#fff;
}

.phone-number-modern{
    display:block;
    font-size:1.5rem;
    font-weight:1000;
    color:#fff;
    margin-bottom:18px;
}

.phone-number-modern.muted{
    color:rgba(255,255,255,.55);
    font-size:1rem;
}

.phone-details-modern{
    display:grid;
    gap:12px;
    margin-bottom:22px;
}

.phone-details-modern div{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:rgba(255,255,255,.78);
    font-weight:750;
    line-height:1.45;
    font-size:.92rem;
}

.phone-details-modern i{
    width:30px;
    height:30px;
    flex:none;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:rgba(255,255,255,.12);
    color:#bfdbfe;
}

.phone-actions-modern{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:auto;
}

.phone-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border-radius:999px;
    padding:11px 15px;
    text-decoration:none;
    font-weight:1000;
    transition:.22s;
}

.phone-btn.call{
    background:#fff;
    color:#0f172a;
}

.phone-btn.whats{
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
}

.phone-btn:hover{
    transform:translateY(-2px);
}

.phone-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:48px;
    height:48px;
    border:0;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.96);
    color:#0f172a;
    box-shadow:0 18px 40px rgba(0,0,0,.20);
    transition:.22s;
}

.phone-arrow:hover{
    transform:translateY(-50%) scale(1.06);
}

.phone-arrow-left{
    left:-18px;
}

.phone-arrow-right{
    right:-18px;
}

.service-empty{
    background:rgba(255,255,255,.12);
    color:#fff;
    border-color:rgba(255,255,255,.22);
}

.service-empty i{
    display:block;
    font-size:2rem;
    margin-bottom:12px;
}

@media(max-width:991px){
    .service-mini-info{
        white-space:normal;
    }

    .phone-arrow{
        display:none;
    }
}

@media(max-width:575px){
    .phone-card-modern{
        flex:0 0 86%;
        min-height:340px;
    }

    .service-modern{
        padding:75px 0;
    }
}