:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --accent: #ffc107;
    --bg-light: #f7f7f7;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-color: #e1e1e1;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius-lg: 18px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* Top Bar */
.top-bar {
    background: #111827;
    color: #e5e7eb;
    font-size: 0.85rem;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.top-bar i {
    margin-right: 0.4rem;
    color: var(--accent);
}
.top-bar-links a {
    margin-left: 1rem;
    opacity: 0.85;
}
/* Header / Nav */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}
.logo {
    font-weight: 700;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
}
.logo span {
    color: #111827;
}
.logo i {
    font-size: 1.2rem;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}
.nav-links a {
    position: relative;
    padding-bottom: 0.15rem;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.2s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--primary);
    color: #fff;
    background: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}
.nav-cta:hover {
    background: var(--primary-dark);
}
.nav-toggle {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
}
/* Hero */
.hero {
    background-image: url("/public/frontend/images/mobilerep.jpg");
    background-size: cover;
    display: flex;
    background-repeat: no-repeat;
    /*     background: radial-gradient(circle at top left, #e0f2fe, #eff6ff); */
    padding: 3.5rem 0 3rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}
.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.hero-title {
    font-size: clamp(2rem, 3.3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.hero-title span {
    /*      color: var(--primary); */
    color: white;
}
.hero-subtitle {
    max-width: 30rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s;
    text-align: center;
}
.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
.btn-outline {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline:hover {
    background: #e0edff;
}
.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.hero-meta-item strong {
    display: block;
    color: white;
    font-size: 1.1rem;
}
.hero-media {
    position: relative;
}
.hero-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.hero-card-title {
    font-weight: 600;
    font-size: 1rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: #ecfdf3;
    color: #166534;
    font-weight: 500;
}
.hero-devices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.hero-device {
    padding: 0.75rem;
    border-radius: 0.9rem;
    border: 1px dashed #d1d5db;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.hero-device span {
    font-weight: 500;
}
.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.hero-floating {
    position: absolute;
    right: -0.5rem;
    bottom: -0.5rem;
    background: #111827;
    color: #f9fafb;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    font-size: 0.8rem;
    box-shadow: var(--shadow-soft);
}
.hero-floating strong {
    display: block;
    font-size: 1.1rem;
}
/* Section base */
section {
    padding: 3.5rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 34rem;
    margin: 0.25rem auto 0;
}
/* Services Overview */
.services-overview {
    background: #ffffff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}
.service-box {
    padding: 1.4rem 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    text-align: left;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-box-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.service-box-title {
    font-weight: 600;
    font-size: 1.05rem;
}
.service-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.service-box a {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}
/* About / Why choose */
.about-section {
    background: var(--bg-light);
}
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #111827;
    color: #f9fafb;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.about-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.about-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.about-stat {
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.9rem 1.1rem;
    min-width: 130px;
    box-shadow: var(--shadow-soft);
    font-size: 0.85rem;
}
.about-stat strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
}
.about-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
}
.about-list li i {
    color: var(--primary);
    margin-right: 0.4rem;
}
.about-media {
    position: relative;
}
.about-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #111827;
    color: #f9fafb;
    padding: 1.4rem 1.5rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: radial-gradient(circle at top left, #1d4ed8, #020617);
}
.about-card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.about-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}
.about-points {
    display: grid;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}
.about-points span i {
    margin-right: 0.4rem;
    color: var(--accent);
}
.about-float {
    position: absolute;
    bottom: -0.4rem;
    right: -0.4rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    box-shadow: var(--shadow-soft);
    color: #111827;
}
/* Problems (What we fix) */
.problems-section {
    background: #ffffff;
}
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.tab-pill {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.tab-pill.active,
.tab-pill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.problem-card {
    padding: 1.1rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    background: #ffffff;
    font-size: 0.9rem;
}
.problem-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    margin-bottom: 0.5rem;
}
.problem-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.problem-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
}
/* Testimonials */
.testimonials {
    background: var(--bg-light);
}
.test-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}
.test-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.7rem;
    max-width: 28rem;
}
.test-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}
.test-card:not(:last-child) {
    margin-bottom: 1rem;
}
.test-quote {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}
.test-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.test-stars {
    margin-left: auto;
    font-size: 0.8rem;
    color: #fbbf24;
}
/* Gallery / Specialized */
.special-gallery {
    background: #ffffff;
}
.special-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.special-item {
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    border: 1px dashed var(--border-color);
    text-align: center;
    font-size: 0.85rem;
}
.special-item i {
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
    color: var(--primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: white;
    color: ;
    padding: 0.9rem 1rem 1rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gallery-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.gallery-item p {
    font-size: 0.8rem;
    opacity: 0.9;
}
/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #f9fafb;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.cta-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
}
.cta-inner .btn-primary {
    background: #f97316;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(248, 113, 113, 0.3);
}
.cta-inner .btn-primary:hover {
    background: #ea580c;
}
/* News / Blog */
.news-section {
    background: #ffffff;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.news-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    background: #ffffff;
}
.news-body {
    padding: 1rem 1.1rem 1.2rem;
    font-size: 0.9rem;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.news-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.news-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}
.news-link {
    font-size: 0.83rem;
    color: var(--primary);
    font-weight: 500;
}
/* Contact / Stations + Footer */
.contact-footer {
    background: #0b1120;
    color: #e5e7eb;
    padding-top: 3rem;
}
.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.station h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.station p {
    font-size: 0.85rem;
    color: #9ca3af;
}
.station p+p {
    margin-top: 0.3rem;
}
.footer-main {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.footer-brand p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.4rem;
    max-width: 18rem;
}
.footer-col h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.6rem;
}
.footer-links {
    list-style: none;
    font-size: 0.85rem;
    color: #9ca3af;
}
.footer-links li+li {
    margin-top: 0.35rem;
}
.footer-links a:hover {
    color: #ffffff;
}
.footer-subscribe {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer-subscribe input {
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #374151;
    background: #020617;
    color: #e5e7eb;
    font-size: 0.85rem;
    min-width: 180px;
}
.footer-subscribe button {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: #f9fafb;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-social {
    display: flex;
    gap: 0.7rem;
    font-size: 0.9rem;
}
.footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #374151;
}
/* Responsive */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .test-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-media {
        order: -1;
    }
    .services-grid,
    .problems-grid,
    .special-grid,
    .gallery-grid,
    .news-grid,
    .stations-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
    }
    .nav-links {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 0.8rem 1rem 1rem;
        border-bottom: 1px solid #e5e7eb;
        display: none;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    section {
        padding: 3rem 0;
    }
    .services-grid,
    .problems-grid,
    .special-grid,
    .gallery-grid,
    .news-grid,
    .stations-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero {
        padding-top: 2.5rem;
    }
}