/* ============================================
   Accounting Office Design - Custom Styles
   ============================================ */

/* Font Family - Mitr */
* {
    font-family: 'Mitr', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Bold text styling */
strong,
b {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================
   Top Navigation Bar
   ============================================ */
.top-navbar {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #0288D4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.logo-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.navbar-menu li {
    margin: 0;
}

.menu-link {
    color: #555555;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.menu-link:hover {
    background-color: #f5f5f5;
    color: #0288D4;
}

.menu-link.active {
    background-color: #e3f2fd;
    color: #0288D4;
    font-weight: 500;
}

.menu-link i {
    font-size: 0.85rem;
}

.menu-link.post-free {
    color: #FF6F00;
    font-weight: 500;
}

.menu-link.post-free:hover {
    background-color: #FFF3E0;
    color: #E65100;
}

.menu-link.post-free i {
    color: #FF6F00;
}

.menu-link-mobile.post-free {
    color: #FF6F00;
    font-weight: 500;
}

.menu-link-mobile.post-free:hover {
    background-color: #FFF3E0;
    color: #E65100;
}

.menu-link-mobile.post-free i {
    color: #FF6F00;
}

.btn-post-ad {
    background-color: #FF6F00;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-post-ad:hover {
    background-color: #E65100;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-mobile-menu {
    background-color: transparent;
    border: none;
    color: #424242;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    position: relative;
    overflow: visible;
}

.btn-mobile-menu:hover {
    background-color: transparent;
    border: none;
    transform: translateY(-2px);
}

.btn-mobile-menu:active,
.btn-mobile-menu:focus,
.btn-mobile-menu:focus-visible {
    transform: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.btn-mobile-menu svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-mobile-menu:hover svg {
    transform: scale(1.15);
    opacity: 0.8;
}

/* When menu is expanded, make button larger */
.btn-mobile-menu[aria-expanded="true"] {
    transform: scale(1.1);
}

.btn-mobile-menu[aria-expanded="true"] svg {
    transform: scale(1.2);
}

.btn-mobile-menu[aria-expanded="true"]:hover {
    transform: scale(1.15);
}

.btn-mobile-menu[aria-expanded="true"]:hover svg {
    transform: scale(1.25);
    opacity: 0.9;
}

/* When menu is collapsed, return to normal */
.btn-mobile-menu[aria-expanded="false"] {
    transform: scale(1);
}

.btn-mobile-menu[aria-expanded="false"] svg {
    transform: scale(1);
}

.btn-mobile-menu i {
    display: none;
}

.mobile-menu-collapse {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.navbar-menu-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu-mobile li {
    margin-bottom: 8px;
}

.menu-link-mobile {
    color: #555555;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-link-mobile:hover {
    background-color: #f5f5f5;
    color: #0288D4;
}

.menu-link-mobile.active {
    background-color: #e3f2fd;
    color: #0288D4;
    font-weight: 500;
}

.btn-post-ad-mobile {
    width: 100%;
    background-color: #FF6F00;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-post-ad-mobile:hover {
    background-color: #E65100;
}

/* ============================================
   Breadcrumb Bar
   ============================================ */
.breadcrumb-bar {
    background-color: #0288d1;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #ffffff;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: #ffffff;
    opacity: 0.9;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ffffff;
    padding: 0 10px;
    opacity: 0.7;
}

.breadcrumb-item i {
    font-size: 0.85rem;
}

/* ============================================
   Hero Slider Section
   ============================================ */
.hero-slider {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-slider .container {
    position: relative;
}

.slider-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-item {
    position: relative;
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-item.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 30px;
}

.hero-content {
    color: #ffffff;
    padding: 15px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.btn-hero-cta {
    background-color: #FF6F00;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta:hover {
    background-color: #E65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero-side-images {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 20px;
}

.side-image-item {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.side-image-item:hover {
    transform: scale(1.1);
}

.side-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-save-hero {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0288D4;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-save-hero:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-save-hero i {
    color: #f44336;
    margin-right: 6px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* ============================================
   Main Container
   ============================================ */
.main-container {
    margin-bottom: 40px;
}

/* ============================================
   Navigation Tabs
   ============================================ */
.custom-tabs {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.custom-tabs .nav-item {
    margin-right: 10px;
}

.custom-tabs .nav-link {
    color: #666;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    color: #0288D4;
    background-color: #f0f8ff;
    border-color: #e0e0e0;
}

.custom-tabs .nav-link.active {
    color: #0288D4;
    background-color: #ffffff;
    border: 2px solid #0288D4;
    border-bottom-color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ============================================
   Content Box
   ============================================ */
.content-box {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    min-height: 500px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-title {
    color: #0288D4;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.company-info p,
.rates-info p,
.history-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.company-info h5,
.rates-info h5,
.history-info h5 {
    color: rgb(51, 51, 51);
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.company-info hr {
    margin: 25px 0;
    border-color: #e0e0e0;
}

.rate-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-item ul {
    margin-top: 10px;
    padding-left: 20px;
}

.rate-item li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.note {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* Timeline Style */
.history-timeline {
    position: relative;
    padding-left: 30px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #0288D4;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0288D4;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #0288D4;
    z-index: 1;
}

.timeline-content {
    padding-left: 0;
}

.timeline-year {
    color: rgb(51, 51, 51);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
}

.timeline-description {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Sidebar
   ============================================ */
.sidebar-box {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.sidebar-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0288D4;
}

.verified-badge-top {
    position: absolute;
    top: -18px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #10b981;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.verified-badge-top:hover {
    background-color: #059669;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4), 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.verified-badge-top i {
    font-size: 1.25rem;
    color: #ffffff;
}

/* Contact Information */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
}

.contact-item i {
    color: #0288D4;
    font-size: 1.2rem;
    width: 25px;
    margin-right: 12px;
}

.contact-item span {
    font-size: 0.95rem;
}

/* Provider Information Box - New Design */
.provider-info-box {
    padding-top: 30px;
}

.provider-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.provider-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.provider-logo {
    flex-shrink: 0;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo-text-below {
    font-size: 0.7rem;
    color: #333;
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
    line-height: 1.2;
    max-width: 60px;
}

.provider-name-section {
    flex: 1;
}

.provider-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.provider-location {
    font-size: 0.9rem;
    color: #666;
}

.provider-contact-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.provider-contact-section .contact-item {
    margin-bottom: 12px;
}

/* Phone Number - Make it prominent */
.provider-contact-section .contact-item.phone-number {
    margin-bottom: 18px;
    padding: 12px 15px;
    background-color: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #0288D4;
}

.provider-contact-section .contact-item.phone-number i {
    font-size: 1.5rem;
    color: #0288D4;
    width: 30px;
    margin-right: 15px;
}

.provider-contact-section .contact-item.phone-number span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0288D4;
    letter-spacing: 1px;
}

.line-contact-section {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 15px 0;
}

.btn-line-add {
    background-color: #00C300;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 6px 0 0 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.btn-line-add:hover {
    background-color: #00A000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 195, 0, 0.3);
}

.btn-line-add i {
    font-size: 1.4rem;
    color: #ffffff;
    width: auto;
    margin: 0;
}

.line-id-box:hover {
    background-color: #f5f5f5;
}

.line-id-box {
    flex: 1;
    border: 2px solid #00C300;
    border-left: none;
    border-radius: 0 6px 6px 0;
    padding: 10px 15px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.line-id-box span {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.provider-basic-info {
    margin-top: 20px;
}

.basic-info-title {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.basic-info-title i {
    color: #0288D4;
    font-size: 1rem;
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 2px;
}

.info-value {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    word-wrap: break-word;
}

/* Certifications */
.cert-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
}

.cert-item i {
    color: #4caf50;
    font-size: 1.1rem;
    width: 25px;
    margin-right: 12px;
}

.cert-item span {
    font-size: 0.95rem;
}

/* Services */
.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
}

.service-item i {
    color: #1976D2;
    font-size: 1rem;
    width: 25px;
    margin-right: 12px;
}

.service-item span {
    font-size: 0.95rem;
}

/* Specialized Business */
.specialty-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
}

.specialty-item i {
    color: #0288D4;
    font-size: 1rem;
    width: 25px;
    margin-right: 12px;
    opacity: 0.7;
}

.specialty-item span {
    font-size: 0.95rem;
}

/* Languages */
.language-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
}

.language-item .flag-icon {
    font-size: 1.5rem;
    width: 30px;
    margin-right: 12px;
    text-align: center;
}

.language-item span:last-child {
    font-size: 0.95rem;
}

/* Google Map Section */
.map-section {
    margin-top: 20px;
}

.map-status {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.map-status i {
    color: #FFD700;
    font-size: 1.1rem;
}

.map-status span {
    color: #333333;
    font-size: 0.9rem;
}

.status-badge {
    background-color: #FFD700;
    color: #8B6914;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Accounting Scope Section */
.accounting-scope-section {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Content Subtitle - Shared style for section headings */
.content-subtitle {
    color: rgb(51, 51, 51);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-subtitle i {
    color: rgb(2, 136, 212);
    font-size: 1.1rem;
}

.scope-category {
    margin-bottom: 30px;
}

.scope-category:last-child {
    margin-bottom: 0;
}

.scope-category-title {
    color: rgb(51, 51, 51);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.scope-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 6px 0;
}

.scope-check {
    color: rgb(2, 136, 212);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.scope-x {
    color: #999999;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.scope-item span {
    line-height: 1.6;
    flex: 1;
}

/* Service Areas Section */
.service-areas-section {
    margin-bottom: 30px;
}


.service-areas-content {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-area-row {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.service-area-row:last-child {
    margin-bottom: 0;
}

.service-area-category {
    color: #333333;
    font-weight: 600;
    min-width: 150px;
    flex-shrink: 0;
    margin-right: 15px;
}

.service-area-category strong {
    color: #333333;
    font-weight: 600;
}

.service-area-details {
    color: #555555;
    flex: 1;
}

.map-address {
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #0288D4;
}

.map-address p {
    margin-bottom: 10px;
    margin-top: 0;
}

.map-address p:last-child {
    margin-bottom: 0;
}

.company-name {
    color: #333333;
    font-size: 1rem;
    margin-top: 8px;
}

.office-address {
    color: #555555;
    margin-top: 8px;
}

.google-map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    margin-top: 60px;
}

.footer-content {
    background-color: #ffffff;
    padding: 50px 0 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0288D4 0%, #0277BD 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
}

.footer-logo-icon::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #FF6F00;
    border-radius: 50%;
}

.footer-logo-icon i {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-accounting {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0288D4;
}

.logo-center {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF6F00;
}

.footer-tagline {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-description {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0288D4;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-contact i {
    width: 20px;
    margin-right: 10px;
    font-size: 1.1rem;
    color: #666666;
}

.footer-contact li:nth-child(1) i {
    color: #0288D4;
}

.footer-contact li:nth-child(2) i {
    color: #FF6F00;
}

.footer-contact li:nth-child(3) i {
    color: #1877F2;
}

.footer-contact li:nth-child(4) i {
    color: #00C300;
}

.footer-contact a {
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #0288D4;
}

.footer-bottom {
    background-color: #2173B3;
    padding: 15px 0;
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-bottom-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

.footer-separator {
    color: #ffffff;
    margin: 0 10px;
    opacity: 0.7;
}

/* ============================================
   Responsive Design
   ============================================ */
/* Medium screens (992px - 1199px) - Desktop menu still visible */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .top-navbar .container {
        padding: 0 15px;
    }

    .navbar-menu {
        gap: 8px;
        flex-wrap: wrap;
    }

    .menu-link {
        font-size: 1rem;
        padding: 6px 10px;
        white-space: nowrap;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .logo-icon i {
        font-size: 1.1rem;
    }

    .btn-post-ad {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .navbar-brand {
        flex-shrink: 0;
    }
}

/* Screens below 992px - Mobile menu active */
@media (max-width: 991.98px) {
    .top-navbar .container {
        padding: 0 15px;
    }

    .top-navbar .row {
        justify-content: space-between;
    }

    .top-navbar .col-auto:last-child {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .main-container .row {
        display: flex;
        flex-direction: column;
    }

    .main-content {
        order: 2;
    }

    .sidebar {
        margin-top: 0;
        display: contents;
    }

    .provider-info-box {
        order: 1;
        margin-bottom: 30px;
        margin-top: 0;
    }

    .sidebar-box:not(.provider-info-box) {
        order: 3;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .content-box {
        min-height: auto;
    }

    /* Make nav-tabs more prominent on mobile */
    .custom-tabs {
        background-color: #f8f9fa;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 8px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .custom-tabs .nav-item {
        margin-right: 5px;
        margin-left: 5px;
        margin-bottom: 0;
    }

    .custom-tabs .nav-link {
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        background-color: #ffffff;
        margin-bottom: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .custom-tabs .nav-link:hover {
        background-color: #f0f8ff;
        border-color: #0288D4;
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(2, 136, 212, 0.2);
    }

    .custom-tabs .nav-link.active {
        background-color: #0288D4;
        color: #ffffff;
        border-color: #0288D4;
        box-shadow: 0 2px 8px rgba(2, 136, 212, 0.3);
        transform: translateY(-1px);
    }

    /* Add padding to sidebar-box when sidebar uses display: contents */
    .sidebar-box {
        margin-left: calc(var(--bs-gutter-x) * .5);
        margin-right: calc(var(--bs-gutter-x) * .5);
    }

    /* Mobile menu button styling */
    .btn-mobile-menu {
        display: inline-flex !important;
        margin-left: auto;
    }

    .btn-post-ad {
        display: none !important;
    }

    .slider-container {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-side-images {
        justify-content: center;
        margin-top: 15px;
        gap: 10px;
    }

    .side-image-item {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 767.98px) {
    .top-navbar .container {
        padding: 0 15px;
    }

    .navbar-menu {
        gap: 10px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .btn-post-ad {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 6px;
    }

    .slider-container {
        height: 280px;
    }

    .slide-content {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-side-images {
        display: none;
    }

    .btn-save-hero {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .btn-mobile-menu {
        padding: 10px 14px;
        min-width: 48px;
    }

    .btn-mobile-menu i {
        font-size: 1.3rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .custom-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .content-box {
        padding: 20px;
    }

    .sidebar-box {
        margin-left: calc(var(--bs-gutter-x) * .5);
        margin-right: calc(var(--bs-gutter-x) * .5);
    }


    /* Provider Info Box Mobile */
    .provider-info-box {
        padding-top: 25px;
    }

    .provider-logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .provider-name-section {
        text-align: center;
        margin-top: 10px;
    }

    .line-contact-section {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 15px 0;
    }

    .btn-line-add {
        width: 100%;
        justify-content: center;
        border-radius: 6px 6px 0 0;
        height: 44px;
    }

    .line-id-box {
        border-left: 2px solid #00C300;
        border-top: none;
        border-radius: 0 0 6px 6px;
        padding: 12px 15px;
    }

    .info-row {
        padding: 12px 0;
        gap: 5px;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.9rem;
        text-align: left;
    }

    .footer-content {
        padding: 40px 0 30px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 0.9rem;
    }

    .google-map-container {
        height: 350px;
    }

}

@media (max-width: 575.98px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .logo-icon i {
        font-size: 1rem;
    }

    .btn-post-ad {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .btn-mobile-menu {
        padding: 8px 12px;
        min-width: 44px;
    }

    .btn-mobile-menu i {
        font-size: 1.2rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .breadcrumb-item i {
        display: none;
    }

    .slider-container {
        height: 250px;
    }

    .slide-content {
        padding: 15px;
    }

    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .btn-hero-cta {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .custom-tabs {
        flex-wrap: wrap;
    }

    .custom-tabs .nav-item {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .custom-tabs .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .footer-content {
        padding: 30px 0 25px;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-accounting,
    .logo-center {
        font-size: 1.1rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-copyright,
    .footer-bottom-link {
        font-size: 0.85rem;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 8px;
    }

    .google-map-container {
        height: 300px;
    }

    .map-address {
        font-size: 0.85rem;
    }

    .service-area-row {
        flex-direction: column;
    }

    .service-area-category {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .accounting-scope-section {
        padding: 20px 15px;
    }

    .scope-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .scope-item {
        font-size: 0.9rem;
    }

    /* Provider Info Box Responsive */
    .provider-logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .provider-name-section {
        text-align: center;
        margin-top: 10px;
    }

    .line-contact-section {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 15px 0;
    }

    .btn-line-add {
        width: 100%;
        justify-content: center;
        border-radius: 6px 6px 0 0;
        height: 44px;
    }

    .line-id-box {
        border-left: 2px solid #00C300;
        border-top: none;
        border-radius: 0 0 6px 6px;
        padding: 12px 15px;
    }

    .info-row {
        padding: 12px 0;
        gap: 5px;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* ============================================
   Animation & Transitions
   ============================================ */
.tab-pane {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-box {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Floating Contact Button
   ============================================ */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0288D4 0%, #0277BD 100%);
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(2, 136, 212, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-contact-btn i {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.floating-btn-text {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.3px;
    display: inline-block;
}

.floating-contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(2, 136, 212, 0.6);
    background: linear-gradient(135deg, #0277BD 0%, #01579B 100%);
}

.floating-contact-btn:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(2, 136, 212, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(2, 136, 212, 0.6);
    }
}

/* ============================================
   Contact Modal
   ============================================ */
.contact-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.contact-modal-header {
    background: linear-gradient(135deg, #0288D4 0%, #0277BD 100%);
    color: #ffffff;
    border-bottom: none;
    padding: 20px 25px;
}

.contact-modal-header .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-modal-header .modal-title i {
    font-size: 1.2rem;
}

.contact-modal-header .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

.contact-modal-header .btn-close:hover {
    opacity: 1;
}

.contact-modal-body {
    padding: 30px 25px;
    background-color: #ffffff;
}

.contact-modal-body .form-group {
    margin-bottom: 20px;
}

.contact-modal-body label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-modal-body label i {
    color: #0288D4;
    font-size: 1rem;
}

.contact-modal-body .required {
    color: #f44336;
}

.contact-modal-body .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-modal-body .form-control:focus {
    border-color: #0288D4;
    box-shadow: 0 0 0 3px rgba(2, 136, 212, 0.1);
    outline: none;
}

.contact-modal-body textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    width: 100%;
    background: linear-gradient(135deg, #0288D4 0%, #0277BD 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #0277BD 0%, #01579B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 136, 212, 0.4);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.btn-contact-submit i {
    font-size: 1rem;
}

/* Responsive for Floating Button */
@media (max-width: 767.98px) {
    .floating-contact-btn {
        min-width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        padding: 0 16px;
        gap: 8px;
    }

    .floating-contact-btn i {
        font-size: 1.3rem;
    }

    .floating-btn-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .floating-contact-btn {
        min-width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
        padding: 0 14px;
        gap: 6px;
    }

    .floating-contact-btn i {
        font-size: 1.2rem;
    }

    .floating-btn-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .floating-btn-text {
        display: none;
    }

    .floating-contact-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
    }

    .contact-modal-body {
        padding: 20px 15px;
    }

    .contact-modal-header {
        padding: 15px 20px;
    }

    .contact-modal-header .modal-title {
        font-size: 1.1rem;
    }
}

