﻿:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --primary: #0ea5e9;
    --primary-hover: #0284c7;
    --secondary: #f97316;
    --secondary-hover: #ea580c;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition)
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.section-padding {
    padding: 6rem 0
}

.text-center {
    text-align: center
}

.mb-4 {
    margin-bottom: 1rem
}

.mt-4 {
    margin-top: 1rem
}

.highlight {
    color: var(--primary)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39)
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5)
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px)
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px)
}

.pulse-anim {
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7)
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(14, 165, 233, 0)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0)
    }
}

.glass-panel,
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow)
}

.section-title {
    margin-bottom: 4rem
}

.section-title .subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-main)
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
    text-align: justify
}

.navbar {
    position: fixed;
    top: 40px;
    /* Space for the top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    top: 0;
    /* Slide up to cover top bar area when scrolled */
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border)
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
        /* No top bar on mobile */
        padding: 1rem 0;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
    text-transform: uppercase
}

.logo span {
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.logo-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    animation: iconFloat 4s ease-in-out infinite
}

.logo i {
    color: white;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2))
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-5px) rotate(5deg)
    }
}

.nav-links {
    display: flex;
    gap: 2rem
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition)
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary)
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer
}

.dropdown {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: -0.5rem
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    max-height: 350px;
    overflow-y: auto
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(14, 165, 233, 0.5);
    border-radius: 10px
}

.dropdown-menu li {
    padding: 0;
    width: 100%
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    text-align: left;
    white-space: nowrap
}

.dropdown-menu a::after {
    display: none !important
}

.dropdown-menu a:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary) !important
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 40%)
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.15);
    color: var(--secondary);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(249, 115, 22, 0.3)
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0 auto 2.5rem auto;
    max-width: 90%;
    text-align: center;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #cbd5e1
}

.stat-item i {
    color: var(--primary);
    font-size: 1.5rem
}

.hero-image {
    position: relative;
    padding: 4rem;
    text-align: center
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), transparent);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px)
}

.hero-art {
    position: relative;
    z-index: 2
}

.icon-large {
    font-size: 8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5))
}

.hero-art h3 {
    font-size: 1.8rem
}

.hero-art p {
    font-size: 1rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
    text-align: justify
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite
}

.icon-1 {
    top: 10%;
    left: 0;
    color: #3b82f6;
    animation-delay: 0s
}

.icon-2 {
    top: 30%;
    right: -20px;
    color: #f59e0b;
    animation-delay: 1s
}

.icon-3 {
    bottom: 20%;
    left: 10%;
    color: #10b981;
    animation-delay: 2s
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }

    100% {
        transform: translateY(0)
    }
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100%+1.3px);
    height: 80px
}

.wave-bottom .shape-fill {
    fill: var(--bg-dark)
}

.services {
    background-color: var(--bg-dark);
    position: relative
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.service-card {
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition)
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4)
}

.service-card:hover::before {
    opacity: 1
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: var(--transition)
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg)
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

.about {
    background-color: var(--bg-darker);
    position: relative
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-image {
    position: relative
}

.icon-huge {
    font-size: 6rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.4))
}

.feature-list {
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.feature-list i {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 0.4rem;
    border-radius: 50%
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: center;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border)
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4)
}

.contact-box h4 {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

.contact-box a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main)
}

.contact-box a:hover {
    color: var(--primary)
}

.faq {
    background-color: var(--bg-dark)
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition)
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05)
}

.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s ease
}

.accordion-item.active .accordion-header {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary)
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg)
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    text-align: center;
}

.areas {
    background-color: var(--bg-darker);
    position: relative
}

.tags-cloud,
.district-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto
}

.district-tags {
    justify-content: center;
    text-align: center;
    max-width: 100%;
    margin: 0;
    gap: 0.75rem
}

.tag,
.district-tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.district-tag {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px
}

.tag:hover,
.district-tag:hover {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2)
}

.footer {
    background-color: #020617;
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-flex
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 100%;
    text-align: center;
}

.trademark-notice {
    font-size: 0.95rem !important;
    color: #ffd700 !important;
    font-weight: 600;
    opacity: 1;
    background: rgba(255, 215, 0, 0.05);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #ffd700;
    line-height: 1.5
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary)
}

.footer-col ul li {
    margin-bottom: 0.75rem
}

.footer-col ul a {
    color: var(--text-muted)
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 5px
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted)
}

.contact-info i {
    color: var(--primary);
    font-size: 1.2rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem
}

.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition)
}

.float-btn:hover {
    transform: scale(1.1) rotate(10deg)
}

.wa-btn {
    background-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4)
}

.call-btn {
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4)
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1)
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:992px) {
    .container {
        padding: 0 1.5rem
    }

    .hero h1 {
        font-size: 3rem
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .hero-stats {
        justify-content: center
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .feature-list {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: auto !important;
        max-width: 100%;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .feature-list li {
        text-align: left !important;
        width: auto !important;
        justify-content: flex-start !important;
        margin: 0 auto 1rem auto !important;
    }

    .contact-box {
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .contact-box a {
        font-size: 0.95rem !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }
}

@media (max-width:768px) {

    .nav-links,
    .nav-contact {
        display: none
    }

    .mobile-menu-btn {
        display: block
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        backdrop-filter: blur(20px);
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--glass-border);
        text-align: center;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .nav-links>li>a {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
    }

    .dropdown {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.02);
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease
    }

    .dropdown.active-dropdown .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 800px;
        margin-top: 1rem
    }

    .dropdown-menu a {
        text-align: center;
        white-space: normal;
        display: block;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
        padding: 0 1.5rem;
        text-align: center;
        line-height: 1.3;
    }

    .hero-actions {
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }

    .btn-lg {
        width: 100%
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-logo {
        justify-content: center
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%)
    }

    .contact-info li {
        justify-content: center
    }

    .footer-col p {
        margin: 0 auto
    }
}

@media (max-width:480px) {
    section {
        padding: 4rem 0
    }

    .section-title h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .icon-large {
        font-size: 4rem
    }

    .service-card {
        padding: 1.5rem
    }

    .hero p {
        font-size: 1.05rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .about-content h2,
    .about-content p,
    .about-content .subtitle {
        text-align: center !important;
        width: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .floating-actions {
        bottom: 1.5rem;
        right: 1.2rem;
        gap: 0.8rem;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 3rem
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    text-align: justify
}

.article-section {
    padding-top: 2rem
}

.article-container {
    max-width: 900px
}

.article-image {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border)
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main)
}

.article-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary)
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary)
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify
}

.article-content ul,
.article-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    text-align: justify
}

.article-content li {
    margin-bottom: 0.8rem;
    text-align: justify
}

.article-content strong {
    color: white
}

.cta-banner {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--glass-shadow)
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem
}

.cta-content p {
    color: var(--text-muted);
    margin: 0;
    text-align: justify
}

.cta-actions {
    display: flex;
    gap: 1rem
}

@media (max-width:768px) {
    .page-title {
        font-size: 2.2rem
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem
    }
}

.service-areas-detail {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.district-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem
}

.district-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default
}

.district-tag:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px)
}

/* Top Bar Info */
.top-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 1.5rem;
}

.top-contact li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-contact i {
    color: var(--primary);
    font-size: 1rem;
}

.top-contact a:hover {
    color: var(--primary);
}

.top-social {
    display: flex;
    gap: 1rem;
}

.top-social a {
    color: var(--text-muted);
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* Screen Reader Only (SEO/Hidden elements) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* District Visual Grid Cards for SEO & Design */
.district-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.district-card {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    text-align: center;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}



.district-card:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
}

.district-card span {
    color: #ffffff !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: none;
    text-shadow: none;
}



.district-card:hover span {
    color: #fff;
    font-weight: 600 !important;
}

@media (max-width: 576px) {
    .district-grid-container {
        gap: 0.4rem;
        justify-content: center;
    }
    .district-card {
        padding: 0.4rem 0.8rem;
    }
    .district-card span {
        font-size: 0.85rem !important;
    }
}







