/* Accounting Page Styles - Modern Design */

/* Hero Banner Section */
.acc-hero-banner {
    position: relative;
    height: 400px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.acc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.acc-hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.acc-hero-banner-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Sections */
.acc-content-section {
    padding: 80px 0;
    position: relative;
}

.acc-bg-light-blue {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

.acc-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.acc-content-grid.acc-reverse {
    direction: rtl;
}

.acc-content-grid.acc-reverse > * {
    direction: ltr;
}

.acc-content-text {
    padding: 20px 0;
}

.acc-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.acc-section-title-center {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.acc-highlight {
    color: #06b6d4;
}

.acc-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 20px;
}

.acc-description {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.acc-list-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 25px 0 15px;
}

.acc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.acc-list li {
    font-size: 16px;
    color: #475569;
    padding: 10px 0 10px 30px;
    position: relative;
}

.acc-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #06b6d4;
    font-size: 24px;
    line-height: 1;
}

.acc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.acc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}

.acc-btn i {
    font-size: 14px;
}

/* Images */
.acc-content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.acc-content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.acc-content-image:hover img {
    transform: scale(1.05);
}

/* Enhanced Image Section for Bookkeeping Principles */
.acc-content-image-enhanced {
    position: relative;
}

.acc-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.acc-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.acc-content-image-enhanced:hover .acc-image-main img {
    transform: scale(1.05);
}

.acc-image-stats {
    position: absolute;
    bottom: -20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.acc-stat-box {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.acc-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.acc-stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.acc-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bookkeeping Principles Section - New Design */
.acc-bookkeeping-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}

.acc-bookkeeping-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.acc-bookkeeping-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.acc-bookkeeping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.acc-bookkeeping-text {
    padding-right: 20px;
}

.acc-bookkeeping-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.acc-bookkeeping-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.acc-bookkeeping-list-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.acc-bookkeeping-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.acc-bookkeeping-list li {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.acc-bookkeeping-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e293b;
    font-size: 24px;
    line-height: 1;
    top: 8px;
}

.acc-bookkeeping-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.acc-bookkeeping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}

.acc-bookkeeping-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.acc-bookkeeping-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.acc-bookkeeping-image:hover img {
    transform: scale(1.05);
}

.acc-content-images-multi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.acc-content-images-multi img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.acc-content-images-multi img:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

.acc-content-images-multi img:hover {
    transform: translateY(-4px);
}

/* Services Section */
.acc-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.acc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.acc-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.acc-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.acc-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.acc-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.acc-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* Quick Actions Section */
.acc-quick-actions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.acc-quick-actions-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.acc-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.acc-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.acc-action-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

.acc-action-item i {
    font-size: 36px;
    color: #06b6d4;
}

.acc-action-item span {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

.acc-actions-note {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
}

/* Contact Section */
.acc-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.acc-contact-info {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 16px;
}

.acc-contact-info p {
    font-size: 16px;
    color: #334155;
    margin: 10px 0;
}

.acc-contact-info a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
}

.acc-contact-info a:hover {
    text-decoration: underline;
}

.acc-contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.acc-contact-form-wrapper {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
}

.acc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.acc-form-field input,
.acc-form-field select,
.acc-form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #334155;
    transition: all 0.3s ease;
    font-family: inherit;
}

.acc-form-field input:focus,
.acc-form-field select:focus,
.acc-form-field textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.acc-btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.acc-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.acc-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acc-sidebar-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 20px;
    padding: 30px;
}

.acc-sidebar-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.acc-sidebar-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 10px;
}

.acc-sidebar-info {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
}

.acc-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.acc-social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.acc-social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .acc-hero-banner {
        height: 350px;
        background-attachment: scroll;
    }

    .acc-hero-banner-title {
        font-size: 56px;
    }

    .acc-section-title,
    .acc-section-title-center {
        font-size: 36px;
    }

    .acc-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .acc-content-grid.acc-reverse {
        direction: ltr;
    }

    .acc-bookkeeping-main-title {
        font-size: 40px;
    }

    .acc-bookkeeping-card {
        padding: 40px;
    }

    .acc-bookkeeping-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .acc-bookkeeping-text {
        padding-right: 0;
    }

    .acc-image-stats {
        bottom: -15px;
        right: 15px;
        gap: 10px;
    }

    .acc-stat-box {
        padding: 15px 20px;
        min-width: 100px;
    }

    .acc-stat-number {
        font-size: 24px;
    }

    .acc-contact-grid {
        grid-template-columns: 1fr;
    }

    .acc-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .acc-hero-banner {
        height: 300px;
    }

    .acc-hero-banner-title {
        font-size: 48px;
        letter-spacing: 1px;
    }

    .acc-content-section {
        padding: 60px 0;
    }

    .acc-section-title,
    .acc-section-title-center {
        font-size: 30px;
    }

    .acc-subtitle {
        font-size: 20px;
    }

    .acc-description {
        font-size: 16px;
    }

    .acc-bookkeeping-section {
        padding: 60px 0;
    }

    .acc-bookkeeping-main-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .acc-bookkeeping-card {
        padding: 30px 25px;
    }

    .acc-bookkeeping-title {
        font-size: 26px;
    }

    .acc-bookkeeping-description {
        font-size: 15px;
    }

    .acc-bookkeeping-list-title {
        font-size: 17px;
    }

    .acc-bookkeeping-list li {
        font-size: 15px;
    }

    .acc-image-stats {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }

    .acc-content-images-multi {
        grid-template-columns: 1fr;
    }

    .acc-content-images-multi img:first-child {
        grid-column: 1;
    }

    .acc-services-grid {
        grid-template-columns: 1fr;
    }

    .acc-actions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .acc-quick-actions-card {
        padding: 40px 25px;
    }

    .acc-contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .acc-hero-banner {
        height: 250px;
    }

    .acc-hero-banner-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .acc-content-section {
        padding: 40px 0;
    }

    .acc-section-title,
    .acc-section-title-center {
        font-size: 26px;
    }

    .acc-subtitle {
        font-size: 18px;
    }

    .acc-description {
        font-size: 15px;
    }

    .acc-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .acc-bookkeeping-section {
        padding: 50px 0;
    }

    .acc-bookkeeping-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .acc-bookkeeping-card {
        padding: 25px 20px;
    }

    .acc-bookkeeping-content {
        gap: 30px;
    }

    .acc-bookkeeping-title {
        font-size: 22px;
    }

    .acc-bookkeeping-description {
        font-size: 14px;
    }

    .acc-bookkeeping-list-title {
        font-size: 16px;
    }

    .acc-bookkeeping-list li {
        font-size: 14px;
        padding: 8px 0 8px 20px;
    }

    .acc-bookkeeping-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .acc-stat-box {
        padding: 12px 15px;
        min-width: 90px;
    }

    .acc-stat-number {
        font-size: 20px;
    }

    .acc-stat-label {
        font-size: 11px;
    }

    .acc-service-card {
        padding: 30px 20px;
    }

    .acc-service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .acc-actions-grid {
        grid-template-columns: 1fr;
    }

    .acc-action-item {
        padding: 25px 15px;
    }

    .acc-form-row {
        grid-template-columns: 1fr;
    }

    .acc-quick-actions-card {
        padding: 30px 20px;
    }
}
