:root {
    --primary-blue: #0080C5;
    --dark-blue: #005A8C;
    --light-blue: #9CC9E5;
    --medium-blue: #6BA9CE;
    --accent-blue: #007DB8;
    --sky-blue: #00A9E0;
    --slate-blue: #6D9AB8;
    --warm-white: #f8f9fa;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

.site-logo {
    max-height: 70px;
}

.faq-columns {
    column-count: 2;
    /* Two columns */
    column-gap: 2rem;
    /* Space between columns */
}

.faq-category-section {
    break-inside: avoid;
    /* Keep category together */
    margin-bottom: 2rem;
    /* Space between categories */
}

.owner-picture {
    float: left;
    padding: 15px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background-color: var(--warm-white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 20px;
}

.top-bar a:hover {
    color: var(--primary-blue);
}

.top-bar i {
    margin-right: 8px;
    color: var(--primary-blue);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 128, 197, 0.08);
    padding: 15px 0;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-beyond {
    color: var(--dark-blue);
}

.logo-nerd {
    color: var(--primary-blue);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--medium-blue);
    font-weight: normal;
    display: block;
    margin-top: -5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.btn-client-portal {
    background-color: var(--sky-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-client-portal:hover {
    background-color: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 169, 224, 0.3);
}

/* ========================================
   HERO SECTION (HOME PAGE)
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--sky-blue) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-hero {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: white;
    color: var(--primary-blue);
}

.btn-hero-primary:hover {
    background-color: #f8f9fa;
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
}

/* ========================================
   ABOUT SECTION (HOME PAGE)
   ======================================== */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-section h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about-features i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.highlight-box {
    background-color: var(--warm-white);
    border-left: 4px solid var(--primary-blue);
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.highlight-box p {
    margin: 0;
    font-size: 1.15rem;
    font-style: italic;
}

/* ========================================
   SERVICES SECTION (HOME PAGE)
   ======================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--warm-white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--slate-blue);
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid var(--light-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 128, 197, 0.15);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========================================
   PAGE HEADER (ALL PAGES)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ========================================
   SERVICES PAGE - DETAIL CARDS
   ======================================== */
.services-detail-section {
    padding: 80px 0;
    background-color: white;
}

.service-detail-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0, 128, 197, 0.15);
    border-color: var(--primary-blue);
}

.service-detail-card h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-card .service-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card ul li {
    padding: 10px 0;
    color: var(--text-dark);
}

.service-detail-card ul li i {
    color: var(--primary-blue);
    margin-right: 10px;
}

/* ========================================
   ABOUT PAGE - STORY SECTION
   ======================================== */
.about-story-section {
    padding: 80px 0;
    background-color: white;
}

.about-story-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-story-section h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ========================================
   ABOUT PAGE - VALUES SECTION
   ======================================== */
.values-section {
    padding: 80px 0;
    background-color: var(--warm-white);
}

.values-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.value-card {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.value-card i {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========================================
   ABOUT PAGE - WHO WE SERVE
   ======================================== */
.who-we-serve-section {
    padding: 80px 0;
    background-color: white;
}

.who-we-serve-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.serve-item {
    text-align: center;
    padding: 25px;
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.serve-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 128, 197, 0.15);
}

.serve-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.serve-item h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section .lead {
    font-size: 1.1rem;
    color: var(--slate-blue);
    margin-bottom: 30px;
}

.contact-info-box {
    background-color: var(--warm-white);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--light-blue);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info-item h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--dark-blue);
}

.contact-form-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 40px;
}

.contact-form-card h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-form-card .form-label {
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    border: 2px solid var(--light-blue);
    padding: 10px 15px;
    border-radius: 5px;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 197, 0.15);
}

.contact-form-card .btn-primary {
    background-color: var(--primary-blue);
    border: none;
    padding: 12px;
    font-weight: 600;
}

.contact-form-card .btn-primary:hover {
    background-color: var(--dark-blue);
}

/* ========================================
   CONTACT PAGE - FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--warm-white);
}

.faq-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
}

.accordion-item {
    border: 2px solid var(--light-blue);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--warm-white);
    color: var(--primary-blue);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 197, 0.15);
    border-color: var(--primary-blue);
}

.accordion-body {
    padding: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-section {
    padding: 80px 0;
    background-color: white;
}

.login-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 128, 197, 0.1);
}

.login-icon {
    font-size: 5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.login-card h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-card .form-label {
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 8px;
}

.login-card .input-group-text {
    background-color: var(--warm-white);
    border: 2px solid var(--light-blue);
    border-right: none;
    color: var(--primary-blue);
}

.login-card .form-control {
    border: 2px solid var(--light-blue);
    border-left: none;
    padding: 10px 15px;
}

.login-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: none;
}

.login-card .form-control:focus+.input-group-text {
    border-color: var(--primary-blue);
}

.login-card .btn-primary {
    background-color: var(--primary-blue);
    border: none;
    padding: 12px;
    font-weight: 600;
}

.login-card .btn-primary:hover {
    background-color: var(--dark-blue);
}

.login-card a {
    color: var(--primary-blue);
    text-decoration: none;
}

.login-card a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.new-customer-card {
    background-color: var(--warm-white);
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.new-customer-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.new-customer-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.new-customer-card .btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    font-weight: 600;
}

.new-customer-card .btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: white;
}

.portal-features-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 40px;
}

.portal-features-card h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-blue);
}

.feature-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.feature-list i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 20px;
    margin-top: 5px;
}

.feature-list strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.feature-list p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   LOGIN PAGE - HELP SECTION
   ======================================== */
.help-section {
    padding: 60px 0;
    background-color: var(--warm-white);
}

.help-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.help-section h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.help-section p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.help-section .btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    font-weight: 600;
}

.help-section .btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* ========================================
   CTA SECTION (ALL PAGES)
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: var(--light-blue);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-blue);
}

.registration-section {
    padding: 80px 0;
    background-color: white;
}

.registration-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 50px;
}

.registration-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.registration-header h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.account-type-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.account-type-options .form-check-inline {
    padding: 20px;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.account-type-options .form-check-input:checked+.form-check-label {
    color: var(--primary-blue);
}

.password-requirements ul {
    margin-top: 5px;
    margin-bottom: 0;
}

.registration-benefits-section {
    padding: 60px 0;
    background-color: var(--warm-white);
}

.registration-benefits-section h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.registration-benefits-section h5 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ========================================
   LOCATION LANDING PAGES
   ======================================== */

/* Hero Section */
.location-hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--sky-blue) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.location-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.5;
}

.location-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.location-badge i {
    margin-right: 8px;
}

.location-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.location-name {
    color: var(--light-blue);
    display: block;
}

.location-hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.quick-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.quick-fact i {
    color: var(--light-blue);
    font-size: 1.2rem;
}

.location-hero-graphic {
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Services Sections */
.location-services-section,
.location-business-section {
    padding: 80px 0;
}

.location-services-section {
    background-color: white;
}

.location-business-section {
    background-color: var(--warm-white);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--slate-blue);
}

.location-service-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}

.location-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 128, 197, 0.15);
    border-color: var(--primary-blue);
}

.location-service-card.business-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sky-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 128, 197, 0.2);
}

.service-icon-box i {
    font-size: 2.5rem;
    color: white;
}

.location-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.location-service-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Us Section */
.location-why-section {
    padding: 80px 0;
    background-color: white;
}

.location-why-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sky-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.why-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.testimonial-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-box blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.expertise-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    background: white;
    border: 2px solid var(--light-blue);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-blue);
}

.badge-item i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

/* Founder Section */
.location-founder-section {
    padding: 80px 0;
    background-color: var(--warm-white);
}

.founder-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    padding: 50px;
}

.founder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sky-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.founder-icon i {
    font-size: 2.5rem;
    color: white;
}

.founder-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.founder-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.founder-signature {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.signature-line {
    font-size: 2rem;
    font-family: 'Brush Script MT', cursive;
    margin-bottom: 10px;
}

.signature-title {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.first-responder-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.first-responder-badge i {
    font-size: 1.3rem;
}

/* Call to Action Section */
.location-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 60px 0;
}

.location-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.btn-cta {
    background-color: white;
    color: var(--primary-blue);
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--light-blue);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .location-title {
        font-size: 2.5rem;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .hero-quick-facts {
        justify-content: center;
    }

    .location-hero-graphic {
        font-size: 12rem;
    }
}

@media (max-width: 767px) {
    .location-title {
        font-size: 2rem;
    }

    .location-hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   TICKETS PAGE - DETAIL CARDS
   ======================================== */
.tickets-detail-section {
    padding: 80px 0;
    background-color: white;
}

.tickets-detail-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.tickets-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0, 128, 197, 0.15);
    border-color: var(--primary-blue);
}

.tickets-detail-card h2 {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tickets-detail-card ul {
    list-style: none;
    padding: 0;
}

.tickets-detail-card ul li {
    padding: 10px 0;
    color: var(--text-dark);
}

.tickets-detail-card ul li i {
    color: var(--primary-blue);
    margin-right: 10px;
}


/* ========================================
   CLIENT AREA - DASHBOARD
   ======================================== */
.tickets-table {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
}

.dashboard-section {
    padding: 60px 0;
    background-color: var(--warm-white);
}

/* Stat Cards */
.stat-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 128, 197, 0.15);
    border-color: var(--primary-blue);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.stat-icon.invoices {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-icon.tickets {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.stat-icon.services {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon.appointments {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.stat-content p {
    margin: 0;
    color: var(--slate-blue);
    font-weight: 500;
}

/* Quick Actions */
.quick-actions-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 30px;
}

.quick-actions-card h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-action-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sky-blue) 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 128, 197, 0.3);
}

.quick-action-btn i {
    font-size: 1.5rem;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    overflow: hidden;
}

.card-header-custom {
    background: var(--warm-white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--light-blue);
}

.card-header-custom h4 {
    margin: 0;
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.view-all-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.view-all-link:hover {
    color: var(--dark-blue);
}

.card-body-custom {
    padding: 25px;
}

/* Invoice List */
.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.invoice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid var(--light-blue);
    gap: 15px;
}

.invoice-info {
    flex: 1;
}

.invoice-number {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1rem;
}

.invoice-date {
    color: var(--slate-blue);
    font-size: 0.85rem;
}

.invoice-amount {
    text-align: right;
}

.invoice-amount .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.invoice-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-action:hover {
    background: var(--dark-blue);
    color: white;
    transform: scale(1.1);
}

/* Ticket List */
.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-item {
    padding: 20px;
    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid var(--light-blue);
}

.ticket-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ticket-id {
    font-weight: 700;
    color: var(--dark-blue);
}

.ticket-subject {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ticket-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ticket-date {
    color: var(--slate-blue);
    font-size: 0.85rem;
}

.ticket-actions-row {
    text-align: right;
}

.btn-sm-custom {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-sm-custom:hover {
    background: var(--dark-blue);
    color: white;
}

/* Appointment List */
.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid var(--light-blue);
}

.appointment-date-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.appointment-date-box .month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.appointment-date-box .day {
    font-size: 1.5rem;
    font-weight: 700;
}

.appointment-details {
    flex: 1;
}

.appointment-title {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.appointment-time,
.appointment-location {
    color: var(--slate-blue);
    font-size: 0.85rem;
}

.appointment-actions {
    display: flex;
    gap: 8px;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid var(--light-blue);
}

.service-icon-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sky-blue) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-details {
    flex: 1;
}

.service-name {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 3px;
}

.service-meta {
    color: var(--slate-blue);
    font-size: 0.85rem;
}

.service-status {
    flex-shrink: 0;
}

/* Account Info Card */
.account-info-card .info-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-blue);
}

.account-info-card .info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--slate-blue);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.info-value {
    color: var(--dark-blue);
    font-size: 1rem;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--slate-blue);
}

.empty-state i {
    font-size: 4rem;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.empty-state p {
    margin: 0;
    font-size: 1rem;
}

/* Badges */
.badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-lg {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.badge.status-unpaid {
    background: #fef3c7;
    color: #92400e;
}

.badge.status-paid {
    background: #d1fae5;
    color: #065f46;
}

.badge.status-overdue {
    background: #fee2e2;
    color: #991b1b;
}

.badge.status-open {
    background: #dbeafe;
    color: #1e40af;
}

.badge.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.badge.status-closed {
    background: #e5e7eb;
    color: #374151;
}

.badge.status-active {
    background: #d1fae5;
    color: #065f46;
}

.badge.priority-low {
    background: #e5e7eb;
    color: #374151;
}

.badge.priority-medium {
    background: #fef3c7;
    color: #92400e;
}

.badge.priority-high {
    background: #fed7aa;
    color: #9a3412;
}

.badge.priority-urgent {
    background: #fee2e2;
    color: #991b1b;
}

.badge.badge-staff {
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    margin-left: 8px;
}

.badge.badge-unread {
    background: #dc2626;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    margin-left: 8px;
}

#map {
    width: 100%;
    height: 400px;
}

.legend {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 24px;
}

.legend h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.legend h4:before {
    content: '▼ ';
    display: inline-block;
    transition: transform 0.3s;
}

.legend.collapsed h4:before {
    transform: rotate(-90deg);
}

.legend-content {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.legend.collapsed .legend-content {
    max-height: 0;
}

.legend-item {
    margin: 5px 0;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.legend-item:hover {
    background-color: #f0f0f0;
}

.legend-color {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid #333;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-size: 18px;
}
.leaflet-control-fullscreen {
    background: white;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.leaflet-control-fullscreen:hover {
    background: #f4f4f4;
}
#map.fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
}

.office-marker {
    background: transparent;
    border: none;
}
.office-marker div {
    background: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}