/*
Theme Name: Sqeaky Clean Books
Theme URI: https://sqeakycleanbooks.com
Author: S&M Telecommunications LLC
Author URI: https://smtelecommunications.com
Description: Custom WordPress theme for Sqeaky Clean Books - Professional Bookkeeping & Accounting Services serving Virginia and the US Nationwide
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #fff;
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    text-decoration: none;
}

.logo img {
    height: 220px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
}

.btn-consultation {
    background: #66cc66;
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 18px;
}
/* Hero Section */
.hero-section {
    background-image: url('assets/images/hero.png');
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0;
    margin: 0;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}

.btn-primary {
    background: #66cc66;
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: #0066cc;
}
/* Services Section */
.services-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 15px;
    font-weight: bold;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-icon {
    flex-shrink: 0;
}

.service-icon img {
    width: 140px;
    height: 160px;
}

.service-text {
    text-align: center;
}

.service-card h3 {
    font-size: 20px;
    color: #0066cc;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid transparent;
    background: linear-gradient(to right, #003d7a, #0066cc, #66cc66) bottom;
    background-size: 100% 1px;
    background-repeat: no-repeat;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.hero-image {
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
    margin-top: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #0066cc;
}
/* Partner Section */
.partner-section {
    background-image: url('assets/images/partner.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: 500px;
}

.partner-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-text {
    max-width: 50%;
}

.partner-text h2 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.partner-intro {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.partner-benefits li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.partner-benefits li::before {
    content: "•";
    color: #f5a623;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: -5px;
}

.btn-partner {
    background: #f5a623;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
}

.btn-partner:hover {
    background: #e09612;
}
/* Footer Styles */
.site-footer {
    background-image: url('assets/images/footer.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: #333;
    margin-top: 60px;
    padding: 0;
    position: relative;
    min-height: 350px;
}

.footer-main {
    padding: 100px 0 60px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 650px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: 150px;
    text-align: left;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #0066cc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #0066cc;
}

.footer-bottom {
    background: #0066cc;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
You have made no changes to save.
    margin: 0;
    font-size: 14px;
    color: #fff;
}
/* Why Choose Us Section */
.why-choose-section {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 42px;
    color: #0066cc;
    margin-bottom: 60px;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}
/* Contact Page Styles */

/* Hero Section */
.contact-hero-section {
    background-image: url('assets/images/contact.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0 80px 0;
    position: relative;
    min-height: 400px;
}

.hero-content-wrapper {
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.95);
    color: #00a32a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-hero-section h1 {
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-tagline {
    font-size: 22px;
    color: #fff;
    margin: 0 0 30px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.btn-hero-green {
    display: inline-block;
    background: #66cc66;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102,204,102,0.3);
    transition: all 0.3s;
}

.btn-hero-green:hover {
    background: #5ab85a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,204,102,0.4);
}

/* Main Contact Section */
.contact-main-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.success-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 5px solid #00a32a;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,163,42,0.1);
}

.success-icon {
    background: #00a32a;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.success-banner h3 {
    color: #00a32a;
    margin: 0 0 5px 0;
    font-size: 24px;
}

.success-banner p {
    margin: 5px 0;
    color: #2e7d32;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section-header h2 {
    font-size: 42px;
    color: #1d2327;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.contact-section-header p {
    font-size: 20px;
    color: #666;
    margin: 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.modern-contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-contact-form .form-group {
    margin-bottom: 25px;
}

.modern-contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 8px;
}

.required {
    color: #dc3232;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send-message {
    background: #66cc66;
    color: #fff;
    padding: 16px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102,204,102,0.3);
}

.btn-send-message:hover {
    background: #5ab85a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,204,102,0.4);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    color: #757575;
    line-height: 1.6;
}

.form-disclaimer .emoji {
    margin-right: 5px;
}

/* Contact Details Sidebar */
.contact-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.details-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.details-card h3 {
    font-size: 22px;
    color: #1d2327;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-content {
    font-size: 16px;
    color: #1d2327;
}

.detail-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.detail-content a:hover {
    color: #004080;
}

/* Services Highlights */
.services-highlights {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.highlight-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.check-icon {
    background: #e8f5e9;
    color: #00a32a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 16px;
    color: #1d2327;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.highlight-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-contact {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.why-choose-contact h2 {
    font-size: 42px;
    color: #1d2327;
    margin: 0 0 50px 0;
    font-weight: bold;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 16px;
    color: #1d2327;
    margin: 0;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 42px;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.final-cta-section p {
    font-size: 20px;
    margin: 0 0 35px 0;
    opacity: 0.95;
}

.btn-final-cta {
    display: inline-block;
    background: #66cc66;
    color: #fff;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(102,204,102,0.4);
    transition: all 0.3s;
}

.btn-final-cta:hover {
    background: #5ab85a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,204,102,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 40px 0;
    }
    
    .contact-hero-section h1 {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .modern-contact-form .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section-header h2,
    .why-choose-contact h2,
    .final-cta-section h2 {
        font-size: 32px;
    }
}
/* Mobile responsive for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
}
/* Mobile Responsive Styles */

/* Tablet and smaller (768px and below) */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo img {
        height: 150px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }
    
/* Hero Section */
    .hero-section {
        background-image: url('assets/images/hero-mobile.png');
        background-size: cover;
        background-position: center center;
        padding: 30px 0;
        min-height: 350px;
        height: auto;
    }
    
.hero-content {
        max-width: 80%;
        text-align: left;
        margin-top: -20px;
    }
    
.hero-content h1 {
        font-size: 26px;
        color: #f5a623;
        font-weight: bold;
    }
    
.hero-content p {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .btn {
        width: auto;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }    
    /* Services Section */
    .services-header h2 {
        font-size: 28px;
    }
    
    .service-cards {
        grid-template-columns: 1fr !important;
    }
    
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon img {
        width: 100px;
        height: 100px;
    }
    
/* Partner Section */
    .partner-section {
        background-image: url('assets/images/partner-mobile.png');
        background-size: cover;
        background-position: center center;
        padding: 30px 0;
        min-height: 400px;
        height: auto;
    }
    
    .partner-text {
        max-width: 90%;
    }
    
.partner-text h2 {
        font-size: 22px;
        line-height: 1.3;
        color: #fff;
        font-weight: bold;
    }
    
    .partner-intro {
        display: none;
    }
    
    .partner-benefits {
        display: none;
    }
    
    .partner-text {
        max-width: 90%;
    }
    
    .partner-text h2 {
        font-size: 22px;
        line-height: 1.3;
        color: #f5a623;
        font-weight: bold;
    }
    
    .partner-intro {
        font-size: 14px;
        color: #f5a623;
        font-weight: bold;
    }
    
    .partner-benefits li {
        font-size: 13px;
        padding-left: 25px;
        color: #f5a623;
        font-weight: bold;
    }
    
    .partner-benefits li::before {
        font-size: 24px;
    }
    
    .btn-partner {
        width: auto;
        padding: 14px 25px;
        font-size: 14px;
        text-align: center;
    }
    
    /* Why Choose Us Section */
    .why-choose-section h2 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
/* Footer */
    .footer-main {
        display: none;
    }
    
    .site-footer {
        margin-top: 0;
        min-height: auto;
    }
    
    .footer-bottom {
        margin-top: 0;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 100px;
    }
    
    .hero-section {
        background-image: url('assets/images/hero-mobile.png');
        background-size: cover;
        background-position: center center;
        min-height: 300px;
    }
    
.hero-content {
        max-width: 85%;
    }
    
.hero-content {
        margin-top: -15px;
    }
    
.hero-content h1 {
        font-size: 22px;
        color: #f5a623;
        font-weight: bold;
    }
    
.hero-content p {
        display: none;
    }
    
    .btn {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .services-header h2 {
        font-size: 24px;
    }
    
    .service-icon img {
        width: 80px;
        height: 80px;
    }
    
.partner-section {
        background-image: url('assets/images/partner-mobile.png');
        background-size: cover;
        background-position: center center;
        min-height: 350px;
    }
    
.partner-text h2 {
        font-size: 20px;
        color: #fff;
        font-weight: bold;
    }
    
    .partner-intro {
        display: none;
    }
    
    .partner-benefits {
        display: none;
    }
    
    .btn-partner {
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .why-choose-section h2 {
        font-size: 26px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 28px;
    }
}
/* ============================================
   COMPLETE SERVICES PAGE STYLES - MOBILE RESPONSIVE
   Replace services section in your style.css with this
   ============================================ */

/* Services Hero Section - FIXED FOR FULL IMAGE */
.services-hero-section {
    background-image: url('assets/images/services.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.services-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.95);
    color: #00a32a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.services-hero-content h1 {
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-hero-content .hero-tagline {
    font-size: 22px;
    color: #fff;
    margin: 0 0 35px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.services-hero-content .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 18px 40px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: #fff;
    color: #0066cc;
}

.btn-hero-green {
    display: inline-block;
    background: #66cc66;
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102,204,102,0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero-green:hover {
    background: #5ab85a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,204,102,0.4);
}

/* Detailed Services Section */
.services-detailed-section {
    padding: 80px 0;
    background: #fff;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-intro h2 {
    font-size: 42px;
    color: #0066cc;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.section-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.detailed-service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    align-items: start;
}

.detailed-service-card.reverse {
    grid-template-columns: 2fr 1fr;
    background: #f5f5f5;
}

.detailed-service-card.reverse .service-image {
    order: 2;
}

.detailed-service-card.reverse .service-details {
    order: 1;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.service-details h3 {
    font-size: 32px;
    color: #0066cc;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.service-description {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features,
.service-benefits {
    margin-bottom: 25px;
}

.service-features h4,
.service-benefits h4 {
    font-size: 20px;
    color: #0066cc;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features ul li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.service-features ul li .check-icon {
    position: absolute;
    left: 0;
    top: 10px;
    color: #66cc66;
    font-weight: bold;
    font-size: 18px;
}

.service-benefits p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.btn-service {
    display: inline-block;
    background: #66cc66;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102,204,102,0.3);
}

.btn-service:hover {
    background: #5ab85a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,204,102,0.4);
}

/* Additional Services Section */
.additional-services-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.additional-services-section h2 {
    text-align: center;
    font-size: 42px;
    color: #0066cc;
    margin: 0 0 50px 0;
    font-weight: bold;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.additional-service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.additional-service-card:hover {
    transform: translateY(-5px);
}

.service-icon-small {
    font-size: 48px;
    margin-bottom: 15px;
}

.additional-service-card h4 {
    font-size: 20px;
    color: #0066cc;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.additional-service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.industries-section h2 {
    font-size: 42px;
    color: #0066cc;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 0 50px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-item {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.industry-item:hover {
    background: #fff;
    border-color: #66cc66;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.industry-icon {
    font-size: 36px;
}

.industry-item span:last-child {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: center;
}

.process-section h2 {
    font-size: 42px;
    color: #0066cc;
    margin: 0 0 60px 0;
    font-weight: bold;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.process-step h3 {
    font-size: 20px;
    color: #0066cc;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    font-size: 32px;
    color: #66cc66;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    color: #0066cc;
    margin: 0 0 50px 0;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f5a623;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #0066cc;
}

.testimonial-author span {
    font-size: 14px;
    color: #757575;
}

/* Services CTA Section */
.services-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: #fff;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 48px;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.services-cta-section > p {
    font-size: 20px;
    margin: 0 0 40px 0;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-cta-primary {
    display: inline-block;
    background: #66cc66;
    color: #fff;
    padding: 20px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(102,204,102,0.4);
}

.btn-cta-primary:hover {
    background: #5ab85a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,204,102,0.5);
}

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 20px 45px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #0066cc;
}

.cta-subtext {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablets and Below (768px) */
@media (max-width: 768px) {
    /* Hero Section - SWITCH TO MOBILE IMAGE */
    .services-hero-section {
        background-image: url('assets/images/services-mobile.png');
        padding: 50px 0;
        min-height: 450px;
    }
    
    .services-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .services-hero-content h1 {
        font-size: 36px;
    }
    
    .services-hero-content .hero-tagline {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .hero-badges {
        margin-bottom: 20px;
    }
    
    .hero-badges .badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .services-hero-content .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* SMALLER BUTTONS ON TABLET */
    .btn-hero-green,
    .btn-hero-outline {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 12px 25px;
        font-size: 15px;
    }
    
    /* Service Cards */
    .detailed-service-card,
    .detailed-service-card.reverse {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .detailed-service-card.reverse .service-image {
        order: 1;
    }
    
    .detailed-service-card.reverse .service-details {
        order: 2;
    }
    
    .service-image img {
        max-width: 200px;
    }
    
    .service-details h3 {
        font-size: 26px;
    }
    
    /* Section Headers */
    .section-intro h2,
    .additional-services-section h2,
    .industries-section h2,
    .process-section h2,
    .testimonials-section h2,
    .services-cta-section h2 {
        font-size: 32px;
    }
    
    /* Additional Services */
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Process Steps */
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        max-width: 100%;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 350px;
    }
}

/* Mobile Phones (480px and Below) */
@media (max-width: 480px) {
    /* Hero Section - MOBILE IMAGE */
    .services-hero-section {
        background-image: url('assets/images/services-mobile.png');
        padding: 40px 0;
        min-height: 400px;
    }
    
    .services-hero-content h1 {
        font-size: 28px;
    }
    
    .services-hero-content .hero-tagline {
        font-size: 16px;
    }
    
    .hero-badges .badge {
        font-size: 13px;
        padding: 5px 12px;
    }
    
    /* SMALLER BUTTONS ON PHONE */
    .btn-hero-green,
    .btn-hero-outline {
        max-width: 220px;
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Service Details */
    .service-details h3 {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    /* Section Headers */
    .section-intro h2,
    .additional-services-section h2,
    .industries-section h2,
    .process-section h2,
    .testimonials-section h2,
    .services-cta-section h2 {
        font-size: 26px;
    }
    
    /* Additional Services */
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Industries */
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process Steps */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* CTA Section */
    .services-cta-section h2 {
        font-size: 32px;
    }
    
    .services-cta-section > p {
        font-size: 18px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 35px;
        font-size: 16px;
    }
}
/* ============================================
   HOMEPAGE SERVICE CARDS - LEARN MORE LINKS
   Add this to your style.css
   ============================================ */

/* Learn More Link on Service Cards */
.service-learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.service-learn-more:hover {
    color: #004080;
    transform: translateX(5px);
}

/* Services Footer "View All Services" Button */
.services-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

/* Make sure the service cards have proper spacing for the new link */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-footer {
        margin-top: 30px;
        padding-top: 20px;
    }
}
/* ============================================
   SQEAKY CLEAN BOOKS - STYLE UPDATES
   All CSS fixes for Phase 1 updates
   ============================================ */

/* ============================================
   HOME PAGE FIXES
   ============================================ */

/* Service Cards - Icon to Left, Smaller Size, No Learn More */
.services-section .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1a1a1a;
}

.service-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Remove old Learn More styling */
.service-learn-more {
    display: none !important;
}

/* ============================================
   MOBILE FIXES - HOME PAGE
   ============================================ */

@media (max-width: 768px) {
    /* Hero Section - White Text */
    .hero-section .hero-content h1 {
        color: #ffffff !important;
    }
    
    .hero-section .hero-content p {
        color: #ffffff !important;
    }
    
    /* Service Cards Mobile - Stack Vertically */
    .services-section .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Partner Section - Move Button Down */
    .partner-section .btn-partner {
        margin-top: 30px !important;
        display: block;
    }
    
    .partner-section .partner-text {
        text-align: center;
    }
    
    .partner-section .partner-benefits {
        margin-bottom: 20px;
    }
}

/* ============================================
   SERVICES PAGE FIXES
   ============================================ */

/* Hero Image Proper Sizing */
/* ============================================
   SERVICES HERO SECTION - FIXED SIZE
   Replace the existing .services-hero-section styles with this
   ============================================ */

/* Services Hero Section - Proper Size Like About Page */
.services-hero-section {
    background-image: url('assets/images/services.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    height: 450px;
    max-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Subtle overlay - not too dark */
.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.services-hero-section .container {
    position: relative;
    z-index: 1;
}

.services-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.95);
    color: #00a32a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.services-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-hero-content .hero-tagline {
    font-size: 20px;
    color: #fff;
    margin: 0 0 25px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.services-hero-content .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-green {
    display: inline-block;
    background: #66cc66;
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102,204,102,0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero-green:hover {
    background: #5ab85a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,204,102,0.4);
}

.btn-hero-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 35px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: #fff;
    color: #0066cc;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .services-hero-section {
        background-image: url('assets/images/services-mobile.png');
        height: 350px;
        max-height: 350px;
        padding: 40px 0;
    }
    
    .services-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .services-hero-content h1 {
        font-size: 32px;
    }
    
    .services-hero-content .hero-tagline {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .hero-badges {
        margin-bottom: 20px;
    }
    
    .hero-badges .badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .services-hero-content .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-hero-green,
    .btn-hero-outline {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 14px 25px;
        font-size: 16px;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .services-hero-section {
        background-image: url('assets/images/services-mobile.png');
        height: 300px;
        max-height: 300px;
        padding: 30px 0;
    }
    
    .services-hero-content h1 {
        font-size: 26px;
    }
    
    .services-hero-content .hero-tagline {
        font-size: 16px;
    }
    
    .hero-badges .badge {
        font-size: 13px;
        padding: 5px 12px;
    }
    
    .btn-hero-green,
    .btn-hero-outline {
        max-width: 220px;
        font-size: 15px;
        padding: 12px 20px;
    }
}
/* ============================================
   CONTACT PAGE FIXES
   ============================================ */

/* Contact Hero Image Proper Sizing */
.contact-hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 500px !important;
    max-height: 500px !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
}

/* Mobile Contact Hero */
@media (max-width: 768px) {
    .contact-hero-section {
        height: 300px !important;
        max-height: 300px !important;
    }
}

/* ============================================
   CONSULTATION PAGE FIXES
   ============================================ */

/* Consultation Hero Image Proper Sizing */
.consultation-hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 400px !important;
    max-height: 400px !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.consultation-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.8) 0%, rgba(50, 205, 50, 0.6) 100%);
}

.consultation-hero-section .container {
    position: relative;
    z-index: 1;
}

/* Mobile Consultation Hero */
@media (max-width: 768px) {
    .consultation-hero-section {
        height: 300px !important;
        max-height: 300px !important;
    }
}

/* ============================================
   GENERAL RESPONSIVE IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
    /* Ensure all hero sections don't overflow */
    .hero-section,
    .services-hero-section,
    .contact-hero-section,
    .consultation-hero-section {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix container widths */
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Button spacing improvements */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-consultation,
    .btn-partner {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
}

/* ============================================
   NEW PAGE TEMPLATE STYLES (for Phase 2)
   ============================================ */

/* Standard Page Hero */
.page-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
    max-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.page-hero-section .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 800px;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Mobile Page Hero */
@media (max-width: 768px) {
    .page-hero-section {
        height: 400px;
        max-height: 400px;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .page-hero-content p {
        font-size: 16px;
    }
}

/* Page Content Sections */
.page-content-section {
    padding: 80px 0;
}

.page-content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .page-content-section {
        padding: 50px 0;
    }
    
    .page-content-section h2 {
        font-size: 28px;
    }
}

/* ============================================
   FOOTER RESPONSIVE IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
        text-align: center;
    }
}
/* HOME PAGE SERVICE CARDS - SQUARE LAYOUT */
.services-section .service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    flex-shrink: 0;
    width: 140px;
    height: 160px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-text h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #0066cc;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.service-text p {
    margin: 0 0 auto 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.service-learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.service-learn-more:hover {
    color: #004080;
    transform: translateX(5px);
}

/* MOBILE RESPONSIVE - HOME PAGE */
@media (max-width: 768px) {
    /* Hero Section - SMALLER BUTTONS */
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: auto;
        padding: 10px 20px;
        font-size: 14px;
        text-align: center;
    }
    
    /* Service Cards Mobile - Stack Vertically */
    .services-section .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
        min-height: auto;
    }
    
    .service-icon {
        width: 100px;
        height: 120px;
    }
}

/* PARTNER SECTION - MOBILE FIXES */
@media (max-width: 768px) {
    .partner-section {
        background-image: url('assets/images/partner-mobile.png');
        background-size: cover;
        background-position: center center;
        padding: 40px 0;
        min-height: 500px;
        height: auto;
    }
    
    .partner-text {
        max-width: 90%;
        text-align: center;
        margin: 0 auto;
    }
    
    .partner-text h2 {
        font-size: 24px;
        line-height: 1.3;
        color: #fff;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .partner-intro {
        font-size: 16px;
        color: #fff;
        font-weight: normal;
        margin-bottom: 20px;
    }
    
    .partner-benefits {
        margin-bottom: 30px;
    }
    
    .partner-benefits li {
        font-size: 14px;
        color: #fff;
        font-weight: normal;
        margin-bottom: 12px;
    }
    
    /* SMALLER BUTTON IN MAP AREA - BELOW MAP */
    .btn-partner {
        width: 80%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
        display: block;
        margin: 30px auto 0;
    }
}
/* SERVICES HERO SECTION - NO OVERLAY */
.services-hero-section {
    background-image: url('assets/images/services.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    height: 450px;
    max-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* NO OVERLAY - REMOVED ::before ELEMENT */

.services-hero-section .container {
    position: relative;
    z-index: 1;
}

.services-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.95);
    color: #00a32a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.services-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-hero-content .hero-tagline {
    font-size: 20px;
    color: #fff;
    margin: 0 0 25px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.services-hero-content .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-green {
    display: inline-block;
    background: #66cc66;
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102,204,102,0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero-green:hover {
    background: #5ab85a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,204,102,0.4);
}

.btn-hero-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 35px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: #fff;
    color: #0066cc;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .services-hero-section {
        background-image: url('assets/images/services-mobile.png');
        height: 350px;
        max-height: 350px;
        padding: 40px 0;
    }
    
    .services-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .services-hero-content h1 {
        font-size: 32px;
    }
    
    .services-hero-content .hero-tagline {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .hero-badges {
        margin-bottom: 20px;
    }
    
    .hero-badges .badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .services-hero-content .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-hero-green,
    .btn-hero-outline {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 14px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-hero-section {
        background-image: url('assets/images/services-mobile.png');
        height: 300px;
        max-height: 300px;
        padding: 30px 0;
    }
    
    .services-hero-content h1 {
        font-size: 26px;
    }
    
    .services-hero-content .hero-tagline {
        font-size: 16px;
    }
    
    .hero-badges .badge {
        font-size: 13px;
        padding: 5px 12px;
    }
    
    .btn-hero-green,
    .btn-hero-outline {
        max-width: 220px;
        font-size: 15px;
        padding: 12px 20px;
    }
}
/* CONTACT HERO - NO OVERLAY */
.contact-hero-section {
    background-image: url('assets/images/contact.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0 80px 0;
    position: relative;
    min-height: 400px;
}

/* NO OVERLAY - ::before REMOVED */

.hero-content-wrapper {
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.95);
    color: #00a32a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-hero-section h1 {
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-tagline {
    font-size: 22px;
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Main Contact Section */
.contact-main-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* BLUE TEXT AS REQUESTED */
.contact-section-header h2 {
    font-size: 42px;
    color: #0066cc;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.contact-section-header p {
    font-size: 20px;
    color: #666;
    margin: 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.modern-contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-contact-form .form-group {
    margin-bottom: 25px;
}

.modern-contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 8px;
}

.required {
    color: #dc3232;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send-message {
    background: #66cc66;
    color: #fff;
    padding: 16px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102,204,102,0.3);
}

.btn-send-message:hover {
    background: #5ab85a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102,204,102,0.4);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    color: #757575;
    line-height: 1.6;
}

/* Contact Details Sidebar */
.contact-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.details-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.details-card h3 {
    font-size: 22px;
    color: #1d2327;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-content {
    font-size: 16px;
    color: #1d2327;
}

.detail-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.detail-content a:hover {
    color: #004080;
}

/* Why Choose Us Section */
.why-choose-contact {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

/* BLUE TEXT AS REQUESTED */
.why-choose-contact h2 {
    font-size: 42px;
    color: #0066cc;
    margin: 0 0 50px 0;
    font-weight: bold;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 16px;
    color: #1d2327;
    margin: 0;
    font-weight: 500;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    /* USE MOBILE IMAGE */
    .contact-hero-section {
        background-image: url('assets/images/contact-mobile.png');
        padding: 60px 0 40px 0;
    }
    
    .contact-hero-section h1 {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .modern-contact-form .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section-header h2,
    .why-choose-contact h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        background-image: url('assets/images/contact-mobile.png');
    }
}
/* CONSULTATION PAGE - GREEN TO BLUE */
/* Hero Section */
.consultation-hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.consultation-hero-content h1 {
    font-size: 48px;
    margin: 20px 0;
    font-weight: bold;
}

.hero-tagline {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Main Section */
.consultation-main-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.consultation-success {
    margin-bottom: 40px;
}

/* What to Expect */
.consultation-intro {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.consultation-intro h2 {
    text-align: center;
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 40px;
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expectation-item {
    text-align: center;
}

.expectation-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.expectation-item h3 {
    font-size: 18px;
    color: #0066cc;
    margin-bottom: 10px;
}

.expectation-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Form Section */
.consultation-form-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.consultation-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.consultation-form-wrapper h2 {
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 20px;
    color: #0066cc;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.consultation-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 8px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.consultation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer-box {
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.form-disclaimer-box p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* BLUE BUTTON AS REQUESTED */
.btn-consultation-submit {
    width: 100%;
    background: #0066cc;
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.btn-consultation-submit:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,102,204,0.4);
}

.btn-consultation-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Sidebar */
.consultation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-card,
.contact-card,
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trust-card h3,
.contact-card h3 {
    font-size: 20px;
    color: #0066cc;
    margin-bottom: 20px;
}

.trust-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.trust-icon {
    background: #e8f5e9;
    color: #00a32a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 16px;
    color: #1d2327;
    margin: 0 0 5px 0;
}

.trust-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-card {
    text-align: center;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-call {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-call:hover {
    background: #004080;
    transform: translateY(-2px);
}

.hours {
    margin-top: 15px;
    font-size: 13px;
    color: #757575;
}

.testimonial-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-left: 4px solid #0066cc;
}

.testimonial-card .stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-card strong {
    color: #0066cc;
    font-size: 14px;
}

/* FAQ Section */
.consultation-faq {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.consultation-faq h2 {
    text-align: center;
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.faq-item h4 {
    font-size: 18px;
    color: #0066cc;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .consultation-hero-section {
        padding: 60px 0;
    }
    
    .consultation-hero-content h1 {
        font-size: 36px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-badges .badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .expectation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .consultation-form-section {
        grid-template-columns: 1fr;
    }
    
    .consultation-form-wrapper {
        padding: 30px;
    }
    
    .consultation-sidebar {
        order: 2;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .consultation-intro {
        padding: 40px 30px;
    }
    
    .consultation-faq {
        padding: 40px 30px;
    }
    
    /* MOBILE - BUTTONS SIDE BY SIDE AS REQUESTED */
    .consultation-form .form-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .consultation-main-section {
        padding: 50px 0;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .consultation-form input,
    .consultation-form select,
    .consultation-form textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .btn-consultation-submit {
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .consultation-hero-section {
        padding: 40px 0;
    }
    
    .consultation-hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-badges .badge {
        font-size: 13px;
        padding: 5px 12px;
    }
    
    .expectation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .expectation-item {
        padding: 20px;
        background: #f9f9f9;
        border-radius: 8px;
    }
    
    .expectation-icon {
        font-size: 36px;
    }
    
    .consultation-form-wrapper {
        padding: 25px 20px;
    }
    
    .consultation-form-wrapper h2 {
        font-size: 26px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    /* KEEP BUTTONS SIDE BY SIDE ON SMALL PHONES TOO */
    .consultation-form .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .consultation-form label {
        font-size: 14px;
    }
    
    .consultation-form input,
    .consultation-form select,
    .consultation-form textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-disclaimer-box {
        padding: 15px;
    }
    
    .form-disclaimer-box p {
        font-size: 13px;
    }
    
    .btn-consultation-submit {
        padding: 14px 25px;
        font-size: 16px;
    }
    
    .consultation-intro {
        padding: 30px 20px;
    }
    
    .consultation-intro h2 {
        font-size: 26px;
    }
    
    .consultation-faq {
        padding: 30px 20px;
    }
    
    .consultation-faq h2 {
        font-size: 26px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h4 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
}
/* BLOG PAGE STYLES */
.blog-hero-section {
    position: relative;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/blog.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* FIXED SIZE AS REQUESTED: 1920x700px ratio maintained */
    height: 700px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BLUE TEXT AS REQUESTED */
.page-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #0066cc;
}

.page-hero-content p {
    font-size: 22px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    color: #0066cc;
}

.blog-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.featured-post {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.featured-image {
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.post-date {
    color: #0066cc;
    font-weight: 600;
}

.post-category a {
    color: #666;
    text-decoration: none;
}

.featured-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content h2 a {
    color: #1a1a1a;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: #0066cc;
}

.featured-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content .post-meta {
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-card-content h3 a:hover {
    color: #0066cc;
}

.blog-card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.read-more-link {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    border-bottom: 1px solid #e0e0e0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover {
    color: #0066cc;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-tag {
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.topic-tag:hover {
    background: #0066cc;
    color: #fff;
}

.newsletter-widget {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
}

.newsletter-widget h3 {
    color: #fff;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 15px;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #0066cc;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #f0f0f0;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination .current {
    background: #0066cc;
    color: #fff;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
}

@media (max-width: 968px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/blog-mobile.png');
        height: 350px;
        max-height: 350px;
    }
    
    .page-hero-content h1 {
        font-size: 36px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 25px;
    }
}
/* BOOKKEEPING SOLUTIONS PAGE - BLUE COLORS */
.bookkeeping-hero-section {
    position: relative;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/bookkeeping.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bookkeeping-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BLUE TEXT AS REQUESTED */
.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #0066cc;
}

.page-hero-content p {
    font-size: 24px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    color: #0066cc;
}

.page-content-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    color: #0066cc;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* BLUE SECTION TITLE AS REQUESTED */
.section-title {
    color: #0066cc;
    font-size: 36px;
    margin: 60px 0 40px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #66cc66 100%);
    border-radius: 2px;
}

/* IMPROVED LAYOUT - 2 COLUMN GRID ON DESKTOP */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.service-detail-item {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #0066cc;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
}

.service-detail-icon {
    font-size: 42px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-content h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #0066cc;
    font-weight: 600;
}

.service-detail-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* IMPROVED BENEFITS GRID - 3 COLUMNS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    padding: 35px 30px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #66cc66;
    box-shadow: 0 8px 25px rgba(102, 204, 102, 0.2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #2e7d32;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.process-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #e8f5e9 100%);
    border-radius: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #66cc66 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* BLUE CTA SECTION AS REQUESTED - NO ARROW */
.cta-section {
    margin-top: 60px;
    padding: 50px;
    background: #0066cc;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.cta-section h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #fff;
    color: #0066cc;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* NO ARROW ICON */
.btn-icon {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bookkeeping-hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/bookkeeping-mobile.png');
        height: 400px;
        max-height: 400px;
    }
    
    .page-hero-content h1 {
        font-size: 36px;
    }
    
    .page-hero-content p {
        font-size: 18px;
    }
    
    .content-wrapper {
        padding: 30px;
    }
    
    /* MOBILE: SINGLE COLUMN */
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .intro-section h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 28px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
}
/* BOOKS & TAX PAGE - PURPLE TO BLUE */
.books-tax-hero-section {
    position: relative;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/books.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.books-tax-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BLUE TEXT AS REQUESTED */
.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #0066cc;
}

.page-hero-content p {
    font-size: 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    color: #0066cc;
}

.page-content-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

/* BLUE TEXT AS REQUESTED */
.intro-section h2 {
    color: #0066cc;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* BLUE SECTION TITLE AS REQUESTED */
.section-title {
    color: #0066cc;
    font-size: 36px;
    margin: 60px 0 40px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #004080 100%);
    border-radius: 2px;
}

/* IMPROVED 3-COLUMN LAYOUT */
.service-package {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.package-section {
    padding: 35px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    border-left: 5px solid #0066cc;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.package-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.package-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0066cc;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 18px;
}

/* IMPROVED 4-COLUMN BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: #0066cc;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
    font-weight: 600;
}

.benefit-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* BLUE CTA SECTION AS REQUESTED - NO ARROW */
.cta-section {
    margin-top: 60px;
    padding: 50px;
    background: #0066cc;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.cta-section h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* NO ARROW ICON */
.btn-icon {
    display: none;
}

@media (max-width: 768px) {
    .books-tax-hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/books-mobile.png');
        height: 400px;
        max-height: 400px;
    }
    
    .page-hero-content h1 { 
        font-size: 36px; 
    }
    
    .page-hero-content p { 
        font-size: 18px; 
    }
    
    .content-wrapper { 
        padding: 30px; 
    }
    
    /* MOBILE: SINGLE COLUMN */
    .service-package { 
        grid-template-columns: 1fr; 
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* INTEGRATIONS PAGE - BLUE COLORS */
.integrations-hero-section {
    position: relative;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/integrations.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.integrations-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BLUE TEXT AS REQUESTED */
.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #0066cc;
}

.page-hero-content p {
    font-size: 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    color: #0066cc;
}

.page-content-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

/* BLUE TEXT AS REQUESTED */
.intro-section h2 {
    color: #0066cc;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* BLUE SECTION TITLE AS REQUESTED */
.section-title {
    color: #0066cc;
    font-size: 36px;
    margin: 60px 0 40px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #004080 100%);
    border-radius: 2px;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.software-card {
    padding: 25px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

/* IMPROVED 2-COLUMN LAYOUT ON DESKTOP */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.service-detail-item {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #0066cc;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
}

.service-detail-icon {
    font-size: 42px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-content h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #0066cc;
    font-weight: 600;
}

.service-detail-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.integration-list li {
    padding: 15px 20px 15px 45px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    font-size: 16px;
}

.integration-list li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #0066cc;
    font-weight: bold;
    font-size: 20px;
}

/* BLUE CTA SECTION AS REQUESTED - NO ARROW */
.cta-section {
    margin-top: 60px;
    padding: 50px;
    background: #0066cc;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.cta-section h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* NO ARROW ICON */
.btn-icon {
    display: none;
}

@media (max-width: 768px) {
    .integrations-hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/integrations-mobile.png');
        height: 400px;
        max-height: 400px;
    }
    
    .page-hero-content h1 { 
        font-size: 36px; 
    }
    
    .page-hero-content p { 
        font-size: 18px; 
    }
    
    .content-wrapper { 
        padding: 30px; 
    }
    
    /* MOBILE: KEEP SINGLE COLUMN AS REQUESTED */
    .service-detail-item { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .software-grid { 
        grid-template-columns: 1fr; 
    }
    
    .integration-list {
        grid-template-columns: 1fr;
    }
    
    /* MOBILE: SINGLE COLUMN */
    .services-list {
        grid-template-columns: 1fr;
    }
}
/* PAYROLL PAGE - GREEN TO BLUE */
.payroll-hero-section {
    position: relative;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/payroll.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payroll-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BLUE TEXT AS REQUESTED */
.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #0066cc;
}

.page-hero-content p {
    font-size: 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    color: #0066cc;
}

.page-content-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

/* BLUE TEXT AS REQUESTED */
.intro-section h2 {
    color: #0066cc;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* BLUE SECTION TITLE AS REQUESTED */
.section-title {
    color: #0066cc;
    font-size: 36px;
    margin: 60px 0 40px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #004080 100%);
    border-radius: 2px;
}

/* IMPROVED 2-COLUMN SERVICES GRID */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.service-detail-item {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #0066cc;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
}

.service-detail-icon {
    font-size: 42px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-content h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #0066cc;
    font-weight: 600;
}

.service-detail-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* IMPROVED 4-COLUMN BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    padding: 35px 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #0066cc;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #0066cc;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.features-section {
    margin: 60px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-list li {
    padding: 15px 20px 15px 45px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    font-size: 16px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #0066cc;
    font-weight: bold;
    font-size: 20px;
}

/* BLUE CTA SECTION AS REQUESTED */
.cta-section {
    margin-top: 60px;
    padding: 50px;
    background: #0066cc;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.cta-section h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* NO ARROW ICON */
.btn-icon {
    display: none;
}

@media (max-width: 768px) {
    .payroll-hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/payroll-mobile.png');
        height: 400px;
        max-height: 400px;
    }
    
    .page-hero-content h1 { 
        font-size: 36px; 
    }
    
    .page-hero-content p { 
        font-size: 18px; 
    }
    
    .content-wrapper { 
        padding: 30px; 
    }
    
    /* MOBILE: SINGLE COLUMN */
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .benefits-grid { 
        grid-template-columns: 1fr; 
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}
/* TRAINING PAGE - ORANGE TO BLUE & UNIQUE DESIGN */
.training-hero-section {
    position: relative;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/training.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.training-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BLUE TEXT AS REQUESTED */
.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #0066cc;
}

.page-hero-content p {
    font-size: 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    color: #0066cc;
}

.page-content-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

/* BLUE TEXT AS REQUESTED */
.intro-section h2 {
    color: #0066cc;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* BLUE SECTION TITLE AS REQUESTED */
.section-title {
    color: #0066cc;
    font-size: 36px;
    margin: 60px 0 40px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #004080 100%);
    border-radius: 2px;
}

/* UNIQUE HEXAGON GRID FOR SOFTWARE */
.software-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.software-item {
    padding: 25px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.software-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    border-color: #0066cc;
}

/* UNIQUE CARD LAYOUT FOR TRAINING TYPES */
.training-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.training-card {
    padding: 40px 35px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #e3f2fd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.training-card:hover {
    transform: translateY(-10px);
    border-color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.training-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.training-card h3 {
    font-size: 24px;
    color: #0066cc;
    margin-bottom: 15px;
    font-weight: 700;
}

.training-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* UNIQUE 3-COLUMN TOPICS LAYOUT */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.topic-section {
    padding: 35px;
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%);
    border-radius: 15px;
    border-top: 5px solid #0066cc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.topic-section:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.topic-section h3 {
    font-size: 22px;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.topic-list {
    list-style: none;
    padding: 0;
}

.topic-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    line-height: 1.6;
    color: #666;
}

.topic-list li:before {
    content: "▸";
    position: absolute;
    left: 5px;
    color: #0066cc;
    font-size: 20px;
}

/* UNIQUE ALTERNATING BENEFITS LAYOUT */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    border-radius: 15px;
    border-left: 5px solid #0066cc;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #0066cc;
    font-weight: 700;
}

.benefit-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* BLUE CTA SECTION AS REQUESTED */
.cta-section {
    margin-top: 60px;
    padding: 50px;
    background: #0066cc;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.cta-section h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* NO ARROW ICON */
.btn-icon {
    display: none;
}

@media (max-width: 768px) {
    .training-hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/training-mobile.png');
        height: 400px;
        max-height: 400px;
    }
    
    .page-hero-content h1 { 
        font-size: 36px; 
    }
    
    .page-hero-content p { 
        font-size: 18px; 
    }
    
    .content-wrapper { 
        padding: 30px; 
    }
    
    /* MOBILE: SINGLE COLUMN */
    .training-types { 
        grid-template-columns: 1fr; 
    }
    
    .topics-grid { 
        grid-template-columns: 1fr; 
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}