/* ===== PK PEST THEME - Part 2: Components ===== */

/* ===== POPUP MODAL ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: var(--pk-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.popup-overlay.active .popup-modal {
    transform: scale(1) translateY(0);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: popIn 0.5s ease-out;
}

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

    50% {
        transform: scale(1.2);
    }

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

.popup-title {
    font-family: var(--pk-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--pk-black);
}

.popup-modal.success .popup-title {
    color: #155724;
}

.popup-modal.error .popup-title {
    color: #721c24;
}

.popup-message {
    font-size: 1.0625rem;
    color: var(--pk-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.popup-modal.success .popup-btn {
    background: linear-gradient(135deg, var(--pk-primary) 0%, var(--pk-primary-dark) 100%);
    color: var(--pk-white);
    border: none;
}

.popup-modal.success .popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 94, 59, 0.3);
}

.popup-modal.error .popup-btn {
    background: var(--pk-gray-100);
    color: var(--pk-text);
    border: 1px solid var(--pk-gray-300);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--pk-primary) 0%, var(--pk-primary-dark) 100%);
    background-image: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(19, 68, 48, 0.95), rgba(26, 94, 59, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--pk-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--pk-radius-full);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--pk-white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-label {
    display: inline-block;
    color: var(--pk-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--pk-text-light);
    font-size: 1.125rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--pk-white);
    border-radius: var(--pk-radius-lg);
    padding: 2rem;
    box-shadow: var(--pk-shadow-sm);
    transition: all 0.25s;
    border: 1px solid var(--pk-gray-200);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pk-shadow-lg);
    border-color: var(--pk-primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pk-secondary);
    border-radius: var(--pk-radius-lg);
    font-size: 2rem;
}

.service-card:hover .service-icon {
    background: var(--pk-primary);
    color: var(--pk-white);
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--pk-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-card .btn {
    width: 100%;
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--pk-white);
    border-radius: var(--pk-radius-lg);
    box-shadow: var(--pk-shadow-sm);
    transition: all 0.25s;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pk-shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pk-secondary);
    border-radius: var(--pk-radius-md);
    font-size: 1.5rem;
}

.feature-content h4 {
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--pk-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--pk-white);
    border-radius: var(--pk-radius-lg);
    padding: 2rem;
    box-shadow: var(--pk-shadow-sm);
    border: 1px solid var(--pk-gray-200);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--pk-text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--pk-secondary);
    border-radius: var(--pk-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--pk-primary);
}

.testimonial-info h5 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--pk-text-light);
}

/* ===== BOOKING FORM ===== */
.booking-section {
    background: linear-gradient(135deg, var(--pk-primary) 0%, var(--pk-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.booking-content {
    color: var(--pk-white);
}

.booking-content h2 {
    color: var(--pk-white);
}

.booking-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.booking-form-wrapper {
    background: var(--pk-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--pk-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--pk-gray-300);
    border-radius: var(--pk-radius-md);
    background: var(--pk-white);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pk-primary);
    box-shadow: 0 0 0 3px rgba(26, 94, 59, 0.1);
}

.booking-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--pk-text-light);
    margin-top: 1rem;
}

/* Form Messages */
.form-message {
    padding: 1.25rem 1.5rem;
    border-radius: var(--pk-radius-lg);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.form-message strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.form-message a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* Expect List */
.expect-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expect-list li {
    padding: 0.5rem 0;
    color: var(--pk-text);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--pk-gray-200);
}

.expect-list li:last-child {
    border-bottom: none;
}

/* ===== SERVICE AREAS ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.area-tag {
    padding: 0.5rem 1rem;
    background: var(--pk-secondary);
    border-radius: var(--pk-radius-md);
    font-size: 0.9375rem;
    text-align: center;
    transition: all 0.15s;
}

.area-tag:hover {
    background: var(--pk-primary);
    color: var(--pk-white);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pk-white);
    border-radius: var(--pk-radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--pk-shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--pk-text);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--pk-primary);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--pk-text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--pk-accent);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--pk-white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-section .btn-primary {
    background: var(--pk-white);
    color: var(--pk-accent);
    border-color: var(--pk-white);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--pk-white);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--pk-black);
    color: #a0aec0;
    padding-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand .site-logo {
    color: var(--pk-white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact-item a {
    color: #a0aec0;
}

.footer-contact-item a:hover {
    color: var(--pk-white);
}

.footer-column h4 {
    color: var(--pk-white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #a0aec0;
    transition: all 0.15s;
}

.footer-links a:hover {
    color: var(--pk-white);
    padding-left: 0.25rem;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--pk-radius-sm);
    font-size: 0.75rem;
}

.footer-emergency {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--pk-accent);
    border-radius: var(--pk-radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.footer-emergency h4 {
    color: var(--pk-accent);
    margin-bottom: 0.5rem;
}

.footer-emergency a {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pk-white);
    margin-bottom: 0.5rem;
}

.footer-emergency p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Footer ABN */
.footer-abn {
    margin-top: 1rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #a0aec0;
}

.footer-abn strong {
    color: var(--pk-white);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #a0aec0;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--pk-primary);
    color: var(--pk-white);
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

/* ===== MOBILE STICKY FOOTER ===== */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pk-white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-sticky-footer .container {
    display: flex;
    gap: 0.5rem;
}

.mobile-sticky-footer .btn {
    flex: 1;
    justify-content: center;
}

/* ===== PAGE TEMPLATES ===== */
.page-header {
    background: linear-gradient(135deg, var(--pk-primary) 0%, var(--pk-primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--pk-white);
}

.page-header h1 {
    color: var(--pk-white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
}

.content-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.sidebar {
    background: var(--pk-gray-50);
    border-radius: var(--pk-radius-lg);
    padding: 2rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h4 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--pk-primary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-card {
    background: var(--pk-secondary);
    border-radius: var(--pk-radius-lg);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-card h4 {
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    margin-bottom: 0;
    color: var(--pk-text-light);
}

.contact-info-card a {
    color: var(--pk-primary);
    font-weight: 500;
}

.contact-form {
    background: var(--pk-white);
    border-radius: var(--pk-radius-lg);
    padding: 2rem;
    box-shadow: var(--pk-shadow-md);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .main-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .header-phone {
        display: flex;
    }

    .booking-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-sidebar {
        grid-template-columns: 2fr 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        min-height: 700px;
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .topbar {
        display: none;
    }

    .mobile-sticky-footer {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .hero {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section {
        padding: 2rem 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== UTILITIES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-lg {
    margin-top: 1.5rem;
}

.mb-lg {
    margin-bottom: 1.5rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-hero-grid.reverse {
    direction: ltr;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--pk-text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--pk-radius-lg);
    box-shadow: var(--pk-shadow-lg);
}

.rounded-image {
    border-radius: var(--pk-radius-lg);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--pk-gray-200);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-family: var(--pk-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pk-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--pk-text-light);
    margin-top: 0.25rem;
}

.check-list {
    margin: 1.5rem 0;
}

.check-list li {
    padding: 0.5rem 0;
    color: var(--pk-text);
    font-size: 1rem;
}

.check-list li::before {
    color: var(--pk-primary);
    font-weight: 600;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card-large {
    background: var(--pk-white);
    border-radius: var(--pk-radius-lg);
    overflow: hidden;
    box-shadow: var(--pk-shadow-sm);
    border: 1px solid var(--pk-gray-200);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--pk-shadow-lg);
    border-color: var(--pk-primary);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card-large:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon-small {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card-content p {
    color: var(--pk-text-light);
    font-size: 0.9375rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card-content .btn {
    width: 100%;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--pk-white);
    border-radius: var(--pk-radius-lg);
    box-shadow: var(--pk-shadow-sm);
    position: relative;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pk-primary) 0%, var(--pk-primary-dark) 100%);
    color: var(--pk-white);
    font-family: var(--pk-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--pk-radius-full);
    margin-bottom: 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--pk-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== CTA CENTER ===== */
.cta-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-center h2 {
    color: var(--pk-white);
}

.cta-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* ===== ENHANCED RESPONSIVE STYLES ===== */
@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-hero-grid.reverse .about-content {
        order: 2;
    }

    .about-hero-grid.reverse .about-image {
        order: 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-hero-grid {
        gap: 4rem;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== IMPROVED MOBILE STYLES ===== */
@media (max-width: 575px) {
    .about-stats {
        justify-content: space-around;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .service-card-image {
        height: 160px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}