/* ==========================================================================
   Printer Assistance - Clean, Authentic & Refined Styles
   ========================================================================== */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --secondary: #0f172a;
    --success: #16a34a;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-alt: #f1f5f9;
    --text-color: #334155;
    --text-muted: #64748b;
    --heading-color: #0f172a;
    --border-color: #e2e8f0;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-md: 10px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.text-center { text-align: center; }

/* Section Header Tags */
.section-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--heading-color);
}

.btn-outline:hover {
    background-color: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    background-color: #ffffff;
    color: var(--primary);
    font-weight: 700;
}

.btn-light:hover {
    background-color: var(--primary-light);
}

.btn-lg {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s ease;
}

.btn-link:hover {
    gap: 0.5rem;
    color: var(--primary-hover);
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--heading-color);
}

.logo-icon {
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-phone-btn,
.nav-links a.nav-phone-btn,
.nav-links a.nav-phone-btn:hover,
.nav-links a.nav-phone-btn:active,
.nav-links a.nav-phone-btn:focus {
    color: #ffffff !important;
    letter-spacing: 0.02em;
    font-weight: 700;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--heading-color);
}

/* Enhanced Hero Section */
.hero {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.hero h1 {
    font-size: 2.65rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.trust-features {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading-color);
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color);
}

.t-feat span {
    color: var(--primary);
    font-weight: 800;
}

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

.hero-img-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-printer-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.img-caption-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

/* Services Section */
.section {
    padding: 4.5rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.08);
}

.s-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

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

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.s-list {
    list-style: none;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.s-list li {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.s-list span {
    color: var(--success);
    font-weight: 800;
}

/* Process Section */
.process-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-num {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Multi-Item Testimonials Slider */
.testimonials-section {
    background-color: var(--bg-body);
}

.slider-wrapper-multi {
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 1rem;
}

.multi-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 1rem);
    box-sizing: border-box;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.testimonial-card .rating {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.testimonial-card .review-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--heading-color);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.testimonial-card .user-info {
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    display: flex;
    flex-direction: column;
}

.testimonial-card .user-info strong {
    font-size: 0.95rem;
    color: var(--heading-color);
}

.testimonial-card .user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.slider-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 999px;
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.4rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.025rem;
    font-weight: 700;
    color: var(--heading-color);
    cursor: pointer;
}

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

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.faq-answer {
    display: none;
    padding: 0 1.4rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer code {
    background-color: var(--bg-alt);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary);
}

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

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary);
    color: #ffffff;
    padding: 4rem 0;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */
.page-hero {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 3.5rem 0 2.5rem;
}

.page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.contact-page-section {
    background-color: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 1.8rem;
    background-color: var(--primary-light);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--heading-color);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.info-sub {
    font-size: 0.825rem;
    color: var(--text-muted);
}

.contact-form-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.form-sub-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-privacy-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* ==========================================================================
   REDESIGNED 4-COLUMN FOOTER STYLING
   ========================================================================== */
.site-footer {
    background-color: var(--secondary);
    color: #94a3b8;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(22, 163, 74, 0.15);
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.f-info-item {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.f-info-item strong {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.825rem;
    color: #64748b;
}

.back-to-top {
    background: transparent;
    border: 1px solid #334155;
    color: #cbd5e1;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.back-to-top:hover {
    border-color: var(--primary);
    color: #ffffff;
    background-color: var(--primary);
}

/* MODAL POPUP DIALOG BOX */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.25rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-dialog {
    background-color: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.2rem 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background-color: var(--heading-color);
    color: #ffffff;
    border-color: var(--heading-color);
}

.modal-header {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal-header h2 {
    font-size: 1.45rem;
    margin-bottom: 0.3rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.form-group {
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--heading-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 0.9rem;
    font-family: var(--font-family);
    font-size: 0.95rem;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    background-color: #ffffff;
    color: var(--heading-color);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* THANK YOU PAGE STYLING */
/* ==========================================================================
   Redesigned Thank You Page Styling (High-Converting & Premium)
   ========================================================================== */
.thankyou-section {
    padding: 3.5rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
}

.thankyou-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #16a34a, #2563eb, #1d4ed8);
}

.thankyou-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.thankyou-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.thankyou-card h1 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.thankyou-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.ticket-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid #bfdbfe;
}

/* Call Helpline Banner */
.ty-call-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    margin: 2rem 0;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    text-align: center;
    position: relative;
}

.ty-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ty-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: tyPulse 1.8s infinite;
}

@keyframes tyPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ty-call-banner h2 {
    color: #ffffff;
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
}

.ty-call-banner p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.ty-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 800;
    padding: 0.95rem 2.2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.25s ease;
    text-decoration: none;
}

.ty-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.55);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Ticket Details Summary Card */
.thankyou-details {
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem 1.6rem;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    color: var(--text-muted);
    font-weight: 500;
}

.detail-row strong {
    color: var(--heading-color);
}

.status-badge {
    color: #16a34a;
    background-color: #dcfce7;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Next Steps Cards */
.ty-steps-wrapper {
    text-align: left;
    margin-bottom: 2rem;
}

.ty-steps-wrapper h3 {
    font-size: 1.15rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

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

.ty-step-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.ty-step-num {
    width: 28px;
    height: 28px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.ty-step-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--heading-color);
}

.ty-step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 0;
}

/* Guarantee Bar */
.ty-guarantee-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.ty-guarantee-bar span {
    color: var(--success);
    margin-right: 0.2rem;
}

/* ==========================================================================
   Legal & Policy Pages Styling
   ========================================================================== */
.legal-section {
    padding: 3rem 0 5rem;
}

.legal-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 2rem 0 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-light);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--heading-color);
    margin: 1.2rem 0 0.5rem;
}

.legal-content p {
    color: var(--text-color);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin: 0.5rem 0 1.2rem 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.legal-last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-alt);
    border-radius: 4px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 0.75rem);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        min-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .ty-steps-grid {
        grid-template-columns: 1fr;
    }
}
