:root {
    --color-dark-bg: #1a2b3d;
    --color-dark-text: #ffffff;
    --color-light-bg: #f8f9fa;
    --color-light-text: #2d3748;
    --color-accent: #337ab7;
    --color-accent-dark: #286090;
    --color-accent-soft: #d9edf7;
    --color-gray-text: #64748b;
    --color-border: #e2e8f0;
    --font-primary: 'DM Sans', sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --transition-fast: all 0.2s ease-out;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-light-text);
    background-color: var(--color-light-bg);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-anchor: none;
    display: flex;
    flex-direction: column;
    contain: layout style;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

main {
    flex: 1;
}

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

/* Article Content Styles */
.article-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* Hide page elements for service-area */
body.service-area .page-hero,
body.service-area .page-content .content-sidebar,
body.service-area .article-footer {
    display: none;
}

body.service-area .page-content {
    background: transparent;
    padding: 0;
}

body.service-area .content-wrapper {
    grid-template-columns: 1fr;
    padding: 0;
    max-width: none;
}

/* Section Spacing */
.section-spacing {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-kicker {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(51, 122, 183, 0.25);
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-light-text);
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--color-light-text) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: var(--color-gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== SERVICE AREA PAGE STYLES ==================== */
.service-area-hero {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.service-area-hero h1 {
    font-size: 36px;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-area-hero p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Stats */
.service-stats {
    padding: 60px 0;
    background: white;
}

.service-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-stats .stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-stats .stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.service-stats .stat-label {
    font-size: 14px;
    color: var(--color-gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primary Service Area */
.primary-service {
    padding: 60px 0;
    background: var(--color-light-bg);
    margin-bottom: 0;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    min-height: 400px;
    contain: layout;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    contain: layout;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-light-text);
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-card li {
    padding: 8px 0;
    color: var(--color-gray-text);
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.service-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.service-card li:last-child {
    border-bottom: none;
}

/* Specializations */
.specializations {
    padding: 80px 0;
    background: white;
    margin-top: 0;
}

.specialization-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.spec-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.spec-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.spec-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.spec-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-light-text);
    margin-bottom: 12px;
}

.spec-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin: 0;
}

/* Extended Coverage */
.extended-coverage {
    padding: 60px 0;
    background: var(--color-light-bg);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.coverage-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.coverage-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.coverage-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
    margin-top: 0;
}

.coverage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin: 0;
}

/* Service Process */
.service-process {
    padding: 60px 0;
    background: white;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0.9;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Trust Features */
.trust-features {
    padding: 60px 0;
    background: var(--color-light-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-light-text);
    margin-bottom: 8px;
}

.trust-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin: 0;
}

@media (max-width: 768px) {
    .service-area-hero {
        padding: 80px 0 40px;
    }
    
    .service-area-hero h1 {
        font-size: 28px;
    }
    
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .service-cards-grid,
    .specialization-cards,
    .coverage-grid,
    .process-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== CTA SECTION STYLES ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cta-phone {
    font-size: 32px;
    font-weight: 700;
    color: #ffc107;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-phone {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .service-area-hero-copy h1 {
        font-size: 30px;
    }
    
    .service-area-hero-copy {
        text-align: left;
    }
    
    .intro-card,
    .region-card,
    .specialization-card,
    .extended-card,
    .value-card,
    .process-card,
    .map-card,
    .zip-card {
        padding: 25px 20px;
    }
    
    .service-cta-card {
        padding: 30px 20px;
    }
}

/* ==================== HEADER STYLES ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.main-nav-bar {
    padding: 15px 0;
}

.main-nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-light-text);
    text-decoration: none;
    white-space: nowrap;
}

.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-gray-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-action-btn {
    background: var(--color-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-action-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(51, 122, 183, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 20px;
    display: block;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-light-text);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* ==================== PAGE LAYOUT STYLES ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--color-light-text);
}

.page-hero h1 span {
    color: var(--color-accent);
}

.page-hero p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.article-content {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* Article Typography */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.article-content h1 {
    font-size: 32px;
    margin-top: 0;
}

.article-content h2 {
    font-size: 28px;
}

.article-content h3 {
    font-size: 24px;
}

.article-content h4 {
    font-size: 20px;
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-text);
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-text);
}

.article-content blockquote {
    margin: 40px 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-gray-text);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content .highlight {
    margin: 24px 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Page Responsive Design */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .article-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 70px 0 30px;
    }
    
    .page-hero h1 {
        font-size: 24px;
    }
    
    .article-content {
        padding: 30px 20px;
    }
}

/* ==================== FOOTER STYLES ==================== */
footer {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, #0f172a 100%);
    color: white;
    padding: 60px 0 0;
    margin: 0;
    position: relative;
}

footer::after {
    content: '';
    display: table;
    clear: both;
}

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

.footer-brand-col {
    padding-right: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links-col a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact-col p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact-col a {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-contact-col a:hover {
    text-decoration: underline;
}

footer .container:last-child {
    display: block;
    padding: 0;
}

footer .container:last-child .footer-bottom-bar {
    padding: 20px 0;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-bar .footer-legal-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-bottom-bar .footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-bar .footer-legal-links a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-bar .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

.author-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.author-card h3 {
    margin-bottom: 15px;
}

.author-card h3 a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.author-card h3 a:hover {
    color: var(--color-accent-dark);
}

.author-email {
    margin-top: 15px;
}

.author-email a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.author-email a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.author-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: var(--color-gray-text);
    font-size: 14px;
}

.articles-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.article-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.article-card h3 {
    margin-bottom: 10px;
}

.article-card h3 a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.article-card h3 a:hover {
    color: var(--color-accent-dark);
}

.article-meta {
    color: var(--color-gray-text);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.read-more:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}
.hero {
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

.hero-text-area {
    max-width: 650px;
}

.hero-kicker {
    display: inline-block;
    background: #1b588c;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(51, 122, 183, 0.25);
}

.hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: var(--color-accent);
    color: white;
    padding: 12px 28px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(51, 122, 183, 0.25);
}

.btn-primary-hero:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 122, 183, 0.35);
}

.btn-dark-hero {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 28px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-dark-hero:hover {
    background: white;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.hero-rating-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.rating-avatars {
    display: flex;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.avatar:first-child {
    margin-left: 0;
}

.rating-stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 1px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

/* Navigation Layout Stability */
.site-nav {
    min-height: 60px;
    contain: layout;
}

.nav-links {
    display: flex;
    align-items: center;
    min-height: 60px;
}

/* ==================== KPI SECTION STYLES ==================== */
.kpi-section {
    background: white;
    min-height: 200px;
    contain: layout;
    position: relative;
    overflow: hidden;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    min-height: 200px;
}

.kpi-item {
    text-align: center;
    padding: 20px;
    min-height: 120px;
    contain: layout;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.kpi-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.kpi-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.kpi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(51, 122, 183, 0.15);
}

.kpi-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kpi-item p {
    font-size: 13px;
    color: var(--color-gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== SERVICES SECTION STYLES ==================== */
.services-section {
    background: var(--color-light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(51, 122, 183, 0.12);
    border-color: rgba(51, 122, 183, 0.15);
}

.service-icon-wrapper {
    font-size: 48px;
    margin-bottom: 18px;
    line-height: 1;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-light-text);
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 18px;
}

.service-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.service-link:hover {
    color: var(--color-accent-dark);
    gap: 8px;
}

/* ==================== WHY CHOOSE US SECTION STYLES ==================== */
.why-choose-us {
    background: white;
}

.why-choose-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-text-area h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-light-text);
    line-height: 1.2;
}

.why-text-area p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 25px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 22px;
    height: 22px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-size: 13px;
    color: var(--color-gray-text);
    font-weight: 500;
}

.why-image-area img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ==================== HOW IT WORKS SECTION STYLES ==================== */
.how-it-works-section {
    background: var(--color-light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(51, 122, 183, 0.12);
    border-color: rgba(51, 122, 183, 0.15);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 25px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(51, 122, 183, 0.3);
}

.step-card h3 {
    font-size: 16px;
    margin: 18px 0 12px;
    color: var(--color-light-text);
    font-weight: 600;
}

.step-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-gray-text);
}

/* ==================== TESTIMONIALS SECTION STYLES ==================== */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(51, 122, 183, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(51, 122, 183, 0.12);
}

.stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 13px;
}

/* ==================== FAQ SECTION STYLES ==================== */
.faq-section {
    background: var(--color-light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(51, 122, 183, 0.12);
    border-color: rgba(51, 122, 183, 0.15);
}

.faq-question {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--color-light-text);
    font-weight: 600;
}

.faq-answer {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-gray-text);
}

/* ==================== FINAL CTA SECTION STYLES ==================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, #047857 100%);
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 700;
}

.final-cta-section p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    display: inline-block;
    background: white;
    color: var(--color-accent);
    padding: 14px 35px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.25);
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

/* ==================== GLOBAL RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .section-spacing {
        padding: 50px 0;
    }
    
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-us-content {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 40px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav-bar .container {
        position: relative;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
    }
    
    .site-nav.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        width: 100%;
        padding: 40px 30px 0;
        flex: 0 0 auto;
        margin: 0;
        list-style: none;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 15px 20px;
        border-radius: 10px;
        width: 100%;
        color: white;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: white;
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-action-btn {
        width: calc(100% - 60px);
        text-align: center;
        padding: 15px 25px;
        margin: 20px 30px 30px;
        background: white;
        color: var(--color-accent);
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
        transition: all 0.3s ease;
        position: absolute;
        bottom: 30px;
    }
    
    .header-action-btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .kpi-grid,
    .services-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-area-hero {
        padding: 70px 0 30px;
    }
    
    .service-area-hero h1 {
        font-size: 24px;
    }
    
    .contact-hero {
        padding: 70px 0 30px;
    }
    
    .contact-hero h1 {
        font-size: 24px;
    }
    
    .section-spacing {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .final-cta-section h2 {
        font-size: 24px;
    }
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-hero {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero h1 span {
    color: var(--color-accent);
}

.contact-hero p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-light-text);
    font-weight: 600;
}

.info-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-size: 14px;
    color: var(--color-gray-text);
    font-weight: 500;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.method-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--color-light-text);
    font-weight: 600;
}

.method-content p {
    font-size: 14px;
    color: var(--color-gray-text);
    margin-bottom: 5px;
}

.method-content small {
    font-size: 13px;
    color: var(--color-gray-text);
    opacity: 0.8;
}

.service-areas {
    padding: 60px 0;
    background: var(--color-light-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.area-group {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.area-group h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-accent);
    font-weight: 600;
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    color: var(--color-gray-text);
    font-size: 13px;
}

.area-group li:last-child {
    border-bottom: none;
}

/* ==================== REVIEWS PAGE STYLES ==================== */
.reviews-page {
    padding: 80px 0;
}

.reviews-hero {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.reviews-hero h1 {
    font-size: 36px;
    margin-bottom: 18px;
    font-weight: 700;
}

.reviews-hero p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.reviews-stats {
    padding: 60px 0;
    background: white;
}

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

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background: var(--color-light-bg);
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.badge-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-light-text);
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 14px;
    color: var(--color-gray-text);
    margin: 0;
}

.reviews-content {
    padding: 60px 0;
    background: var(--color-light-bg);
}

.reviews-text {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-text h2 {
    font-size: 28px;
    margin: 40px 0 30px;
    color: var(--color-light-text);
    font-weight: 700;
    text-align: center;
}

.reviews-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-text);
    margin-bottom: 20px;
}

.reviews-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-text);
    margin: 0;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 24px;
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 5px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-light-text);
    margin-bottom: 3px;
}

.review-meta {
    font-size: 13px;
    color: var(--color-gray-text);
    opacity: 0.8;
}

.review-rating {
    font-size: 14px;
    color: #ffc107;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-content {
        padding: 20px;
    }
    
    .review-author {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .review-rating {
        align-self: flex-end;
    }
}

/* ==================== CTA SECTION STYLES ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cta-phone {
    font-size: 32px;
    font-weight: 700;
    color: #ffc107;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-phone {
        font-size: 24px;
    }
}
.page-content {
    padding: 80px 0;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-text);
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--color-light-text);
    font-weight: 800;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--color-light-text);
    font-weight: 700;
}

.page-content ul {
    list-style: none;
    padding: 0;
}

.page-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.page-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 18px;
}

.page-content a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.page-content a:hover {
    text-decoration: underline;
}

/* ==================== CONTACT PAGE RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero h1,
    .reviews-hero h1 {
        font-size: 36px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 25px;
    }
}

/* KPI Number Styling */
.kpi-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fix H1UserAgentFontSizeInSection deprecation warning */
:where(h1) {
    margin-block: 0.67em;
    font-size: 2em;
}

/* Why Choose Us Image Styling */
.why-image-area {
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.why-image-area img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}
