/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Global media defaults */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bookkeeping-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.bookkeeping-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bookkeeping-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bookkeeping-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
}

.bookkeeping-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.bookkeeping-logo img:hover {
    transform: scale(1.05);
}

.bookkeeping-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.bookkeeping-nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.bookkeeping-nav-list a:hover {
    color: #007bff;
}

.bookkeeping-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0%;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: 0.3s ease;
    transform-origin: center;
    transform: scaleX(1.5);
}

.bookkeeping-nav-list a:hover::after {
    width: 100%;
}

.bookkeeping-phone-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.bookkeeping-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.bookkeeping-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bookkeeping-hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.bookkeeping-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bookkeeping-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.bookkeeping-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.bookkeeping-hero {
    margin-top: 80px;
    padding-top: 100px;
    position: relative;
    /* min-height: 100vh; */
    width:100%;
    display: flex;
    align-items: center;
    background: url("../img-bookkeeping/office_mv.jpg")!important;
    background-position: center;
    background-size: cover!important;
    overflow: hidden;
}

.bookkeeping-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.bookkeeping-hero-content {
    animation: fadeInLeft 1s ease-out;
}

.bookkeeping-hero-title img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.bookkeeping-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.bookkeeping-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bookkeeping-btn-primary,
.bookkeeping-btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.bookkeeping-btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.bookkeeping-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.bookkeeping-btn-secondary {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.bookkeeping-btn-secondary:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

.bookkeeping-hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.bookkeeping-hero-image img {
    max-width: 100%;
    width: 100%;
    border-radius:150px;
    height: auto;
}

.bookkeeping-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.bookkeeping-hero-bg img {
    position: absolute;
    top: 10%;
    right: 0;
    width: clamp(180px, 22vw, 320px);
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    pointer-events: none;
}

.bookkeeping-hero-image {
    position: relative;
}

.bookkeeping-hero-text-overlay {
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.bookkeeping-hero-text-overlay img {
    max-width: 200px;
    height: auto;
}

/* Section Titles */
.bookkeeping-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.bookkeeping-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

.bookkeeping-lp-point {
    transform: translateY(0px) scale(1);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(13, 82, 98);
    border-radius: 6px;
    color: rgb(13, 82, 98);
    filter: drop-shadow(rgb(11, 83, 98) 8px 8px 0px);
    font-size: clamp(1rem, 5.33333vw, 1.25rem);
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    padding: 15px;
}

/* Service Section */
.bookkeeping-service {
    padding: 100px 0;
    background: white;
}

.bookkeeping-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bookkeeping-service-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bookkeeping-service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bookkeeping-service-icon {
    margin-bottom: 20px;
}

.bookkeeping-service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bookkeeping-service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.bookkeeping-service-item p {
    color: #666;
    line-height: 1.6;
}

/* Feature Section */
.bookkeeping-feature {
    padding: 100px 0;
    background: #90C9E0;
}

.bookkeeping-feature-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.bookkeeping-feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
}

.bookkeeping-feature-item:nth-child(even) {
    transform: translateX(50px);
}

.bookkeeping-feature-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.bookkeeping-feature-number{
    
}
.bookkeeping-feature-number img {
    width: 12em;
    height: 10em;
}
.bookkeeping-feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-feature-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bookkeeping-feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Needs Analysis Section */
.bookkeeping-needs {
    padding: 100px 0;
    background: white;
}

.bookkeeping-needs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bookkeeping-needs-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-needs-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bookkeeping-needs-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bookkeeping-need-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.bookkeeping-need-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-need-item h4 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bookkeeping-need-item p {
    color: #666;
    line-height: 1.6;
}

.bookkeeping-needs-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Merit Section */
.bookkeeping-merit {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bookkeeping-merit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bookkeeping-merit-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bookkeeping-merit-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-merit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bookkeeping-merit-item img {
    width: 60px;
    /* height: 60px; */
    margin-bottom: 20px;
    object-fit: contain;
}

.bookkeeping-merit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.bookkeeping-merit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Support Services Section */
.bookkeeping-support {
    padding: 100px 0;
    background: white;
}

.bookkeeping-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.bookkeeping-support-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bookkeeping-support-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bookkeeping-support-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bookkeeping-support-content {
    padding: 30px;
}

.bookkeeping-support-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.bookkeeping-support-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sbookkeeping-upport-content ul {
    list-style: none;
}

.bookkeeping-support-content li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.bookkeeping-support-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Comparison Section */
.bookkeeping-comparison {
    padding: 100px 0;
    background: #f8f9fa;
}

.bookkeeping-comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bookkeeping-comparison-chart img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bookkeeping-comparison-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-comparison-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bookkeeping-comparison-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bookkeeping-comparison-point {
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.bookkeeping-comparison-point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-comparison-point h4 {
    color: #007bff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.bookkeeping-comparison-point p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Case Section */
.bookkeeping-case {
    padding: 100px 0;
    background: white;
}

.bookkeeping-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.bookkeeping-case-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bookkeeping-case-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bookkeeping-case-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.case-content p {
    color: #666;
    line-height: 1.6;
}

/* Price Section */
.bookkeeping-price {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bookkeeping-price-reason {
    text-align: center;
    margin-bottom: 50px;
}

.bookkeeping-price-reason img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.bookkeeping-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bookkeeping-price-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.bookkeeping-price-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-price-item.bookkeeping-featured {
    transform: scale(1.05);
    border: 3px solid #007bff;
}

.bookkeeping-price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bookkeeping-price-item.bookkeeping-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.bookkeeping-price-header {
    margin-bottom: 30px;
}

.bookkeeping-price-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.bookkeeping-price-header h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: -26px;
}

.bookkeeping-price-amount {
    margin-bottom: 30px;
    background-image: url("../assets/img/business_back3.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.bookkeeping-price-1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.bookkeeping-period {
    color: #666;
    font-size: 1rem;
}

.bookkeeping-price-features {
    list-style: none;
    margin-bottom: 30px;
}

.bookkeeping-price-features li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.bookkeeping-price-features li:last-child {
    border-bottom: none;
}

.bookkeeping-btn-price {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.bookkeeping-btn-price:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* CTA Section */
.bookkeeping-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.bookkeeping-cta .bookkeeping-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bookkeeping-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bookkeeping-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.bookkeeping-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bookkeeping-btn-phone,
.bookkeeping-btn-contact {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.bookkeeping-btn-phone {
    background: white;
    color: #007bff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.bookkeeping-btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.bookkeeping-btn-contact {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.bookkeeping-btn-contact:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
}

.bookkeeping-cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* About Section */
.bookkeeping-about {
    /* padding: 100px 0; */
    background: white;
}

.bookkeeping-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bookkeeping-about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bookkeeping-about-details dl {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.bookkeeping-about-details dt {
    font-weight: 600;
    color: #333;
}

.bookkeeping-about-details dd {
    color: #666;
}

.bookkeeping-about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.bookkeeping-contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.bookkeeping-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.bookkeeping-contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bookkeeping-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
}

.bookkeeping-contact-method {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-contact-method h4 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bookkeeping-phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.bookkeeping-contact-method p {
    color: #666;
    margin: 0;
}

.bookkeeping-contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-form-group {
    margin-bottom: 25px;
}

.bookkeeping-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.bookkeeping-required {
    color: #dc3545;
}

.bookkeeping-form-group input,
.bookkeeping-form-group select,
.bookkeeping-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.bookkeeping-form-group input:focus,
.bookkeeping-form-group select:focus,
.bookkeeping-form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.bookkeeping-btn-submit {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.bookkeeping-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.bookkeeping-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.bookkeeping-footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.bookkeeping-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.bookkeeping-footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.bookkeeping-footer-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.bookkeeping-footer-nav ul {
    list-style: none;
}

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

.bookkeeping-footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bookkeeping-footer-nav a:hover {
    color: #007bff;
}

.bookkeeping-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Floating CTA */
.bookkeeping-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.bookkeeping-floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-floating-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
}

.bookkeeping-floating-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
}

.bookkeeping-floating-phone img {
    width: 24px;
    height: 24px;
}

/* Back to Top Button */
.bookkeeping-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.bookkeeping-back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Utility Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.bookkeeping-nav-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .bookkeeping-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .bookkeeping-nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .bookkeeping-nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }
}

/* Additional Services Section */
.bookkeeping-additional-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bookkeeping-additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bookkeeping-additional-service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bookkeeping-additional-service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-additional-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bookkeeping-additional-service-item .service-icon {
    margin-bottom: 20px;
}

.bookkeeping-additional-service-item .service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bookkeeping-additional-service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.bookkeeping-additional-service-item p {
    color: #666;
    line-height: 1.6;
}

/* Trust Section */
.bookkeeping-trust {
    margin: 1em 0;
    padding: 80px 0;
    width: 100%;
    height: 40%;
    background-image: url('../assets/img/bnr_202508_01.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.bookkeeping-trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

    
}

.bookkeeping-trust-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-trust-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bookkeeping-trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.bookkeeping-trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.bookkeeping-trust-badge:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-trust-badge img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.bookkeeping-trust-badge span {
    font-weight: 600;
    color: #333;
}

.bookkeeping-trust-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Promotional metric tiles (generic tidy-up) */
.bookkeeping-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bookkeeping-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.bookkeeping-section article {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

article .bookkeeping-overlap-group,
article .bookkeeping-overlap,
article .bookkeeping-overlap-2,
article .bookkeeping-overlap-3,
article .bookkeeping-overlap-4 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

article .bookkeeping-text-wrapper,
article .bookkeeping-text-wrapper-2,
article .bookkeeping-text-wrapper-3,
article .bookkeeping-text-wrapper-4,
article .bookkeeping-text-wrapper-6,
article .bookkeeping-text-wrapper-8,
article .bookkeeping-text-wrapper-10,
article .bookkeeping-text-wrapper-12,
article .bookkeeping-text-wrapper-13,
article .bookkeeping-text-wrapper-15,
article .superscript {
    line-height: 1.1;
}

.bookkeeping-section .div,
/* big numeral */
.bookkeeping-section .bookkeeping-text-wrapper-5,
/* another numeral */
.bookkeeping-section .bookkeeping-text-wrapper-7

/* another numeral */
    {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #007bff;
}

.bookkeeping-section .bookkeeping-text-wrapper,
/* prefix */
.bookkeeping-section .bookkeeping-text-wrapper-2,
/* unit */
.bookkeeping-section .bookkeeping-text-wrapper-6,
.bookkeeping-section .bookkeeping-text-wrapper-8 {
    font-size: clamp(14px, 2.4vw, 18px);
    font-weight: 700;
    color: #0056b3;
}

.bookkeeping-section .bookkeeping-text-wrapper-3,
.bookkeeping-section .bookkeeping-text-wrapper-9,
.bookkeeping-section .bookkeeping-text-wrapper-10,
.bookkeeping-section .bookkeeping-text-wrapper-12,
.bookkeeping-section .bookkeeping-text-wrapper-13,
.bookkeeping-section .bookkeeping-text-wrapper-14,
.bookkeeping-section .bookkeeping-text-wrapper-15,
.bookkeeping-section .bookkeeping-text-wrapper-16 {
    width: 100%;
    font-size: clamp(14px, 2.4vw, 18px);
    font-weight: 600;
    color: #333;
    margin-top: 6px;
}

.bookkeeping-section .background-border {
    border: 2px dashed #e0e7ff;
}

.bookkeeping-section .superscript {
    font-size: 0.75em;
    vertical-align: super;
    color: #888;
}

/* Image aspect ratio helpers for cards */
.bookkeeping-support-image img,
.bookkeeping-case-item img {
    height: 220px;
    object-fit: cover;
}

/* Enhanced Price Section with Reason */
.bookkeeping-price-reason {
    text-align: center;
    margin-bottom: 50px;
}

.bookkeeping-price-reason img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

/* Enhanced Hero Section with Text Overlay */
.bookkeeping-hero-text-overlay {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.bookkeeping-hero-text-overlay img {
    max-width: 200px;
    height: auto;
}

/* Enhanced Needs Section */
.bookkeeping-needs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bookkeeping-needs-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-needs-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bookkeeping-needs-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bookkeeping-need-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.bookkeeping-need-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-need-item h4 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bookkeeping-need-item p {
    color: #666;
    line-height: 1.6;
}

.bookkeeping-needs-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced Support Section */
.bookkeeping-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.bookkeeping-support-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bookkeeping-support-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bookkeeping-support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bookkeeping-support-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bookkeeping-support-content {
    padding: 30px;
}

.bookkeeping-support-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.bookkeeping-support-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bookkeeping-support-content ul {
    list-style: none;
}

.bookkeeping-support-content li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.bookkeeping-support-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Map Section */
.bookkeeping-map {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5em;
    
}
.bookkeeping-map-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5em;
    align-items: center;
}
.iframe{
    border-radius: 15px;
}
.bookkeeping-map-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
}

/* Enhanced Comparison Section */
.bookkeeping-comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bookkeeping-comparison-chart img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bookkeeping-comparison-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.bookkeeping-comparison-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bookkeeping-comparison-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bookkeeping-comparison-point {
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.bookkeeping-comparison-point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-comparison-point h4 {
    color: #007bff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.bookkeeping-comparison-point p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.bookkeeping-price-header img {
    width: 54%;
    transform: rotate(-5deg);
}

.bookkeeping-price-features li {
    font-size: 28px !important;
}

.bookkeeping-service-icon img {
    width: 100% !important;
    height: 150px !important;
}