/* ============================================
   SHARED PAGE STYLES - Modern Design System
   Common styles for all secondary pages
   ============================================ */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    padding: var(--space-20) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,98,0,0.15), transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-4);
    letter-spacing: -0.03em;
    position: relative;
    color: var(--white);
}

.page-hero p {
    font-size: var(--text-xl);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    font-weight: var(--font-normal);
    line-height: 1.6;
    position: relative;
}

/* White icons on purple hero background */
.page-hero .icon-img {
    filter: brightness(0) invert(1);
}

/* Page Content */
.page-content {
    flex: 1;
}

.content-section {
    padding: var(--space-20) 0;
}

.content-section.bg-light {
    background: var(--gray-50);
}

.content-section.bg-white {
    background: var(--white);
}

.content-section.bg-purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
}

/* White icons/text on purple backgrounds */
.content-section.bg-purple .icon-img,
.bg-purple .icon-img {
    filter: brightness(0) invert(1);
}

.content-section.bg-purple h1,
.content-section.bg-purple h2,
.content-section.bg-purple h3,
.content-section.bg-purple h4,
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4 {
    color: var(--white);
}

.content-section.bg-purple p,
.bg-purple p {
    color: rgba(255, 255, 255, 0.9);
}

.content-section.bg-purple span,
.bg-purple span {
    color: var(--white);
}

/* Purple icons on light backgrounds */
.content-section.bg-light .icon-img,
.content-section.bg-white .icon-img,
.bg-light .icon-img,
.bg-white .icon-img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(80%) saturate(4500%) hue-rotate(268deg) brightness(85%) contrast(115%);
}

.content-section h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.content-section.bg-purple h2 {
    color: var(--white);
}

.content-section p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--gray-600);
}

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

/* Section Grid (Text + Image) */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-text h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-text h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.section-text p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 16px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.image-placeholder span {
    font-size: 80px;
    margin-bottom: 16px;
}

.image-placeholder p {
    font-size: 14px;
    font-weight: 500;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat-box {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-orange);
}

.stat-box .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.team-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-purple);
    display: block;
}

.rounded-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* History Timeline */
.history-timeline {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.history-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.history-year {
    width: 80px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-purple);
    text-align: right;
    padding-top: 4px;
}

.history-content {
    flex: 1;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.history-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--primary-orange);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.history-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.history-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-200);
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--icon-2xl);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: var(--space-6);
}

.card-content h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.card-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--primary-purple);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.card-link:hover {
    color: var(--primary-orange);
    gap: var(--space-3);
}

.card-link .icon-img {
    width: var(--icon-sm);
    height: var(--icon-sm);
    transition: transform var(--transition-fast);
    filter: brightness(0) saturate(100%) invert(12%) sepia(80%) saturate(4500%) hue-rotate(268deg) brightness(85%) contrast(115%);
}

.card-link:hover .icon-img {
    transform: translateX(4px);
}

/* Job Listings */
.job-list {
    margin-top: 48px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    transition: all var(--transition-fast);
}

.job-item:hover {
    box-shadow: var(--shadow-md);
}

.job-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--gray-600);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-apply {
    padding: 12px 24px;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-apply:hover {
    background: var(--primary-purple-dark);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gray-500);
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-500);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.news-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.news-featured-image {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    min-height: 300px;
}

.news-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-content .news-date {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.news-featured-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-featured-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.news-item {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.news-date {
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 8px;
}

.news-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.contact-form button:hover {
    background: var(--primary-purple-dark);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* Site Map */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.sitemap-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-orange);
}

.sitemap-section ul {
    list-style: none;
}

.sitemap-section li {
    margin-bottom: 12px;
}

.sitemap-section a {
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sitemap-section a:hover {
    color: var(--primary-purple);
}

/* Service Pages */
.service-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    padding: 100px 0;
    color: var(--white);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-hero-icon {
    text-align: center;
    font-size: 200px;
    opacity: 0.9;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-feature {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.service-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.service-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.service-feature p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

.pricing-table {
    margin-top: 48px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-table th {
    background: var(--primary-purple);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.pricing-table td {
    font-size: 15px;
    color: var(--gray-700);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: var(--gray-50);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    margin-top: 48px;
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-box .btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Investor Stats */
.investor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.investor-stat {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.investor-stat .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.investor-stat .label {
    font-size: 16px;
    color: var(--gray-600);
}

/* FAQ Accordion for Pages */
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item-page {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-900);
    background: var(--white);
    transition: background var(--transition-fast);
}

.faq-question-page:hover {
    background: var(--gray-50);
}

.faq-answer-page {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-page.active .faq-answer-page {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer-page p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-icon {
        font-size: 120px;
    }

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

    .investor-stats {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-hero p {
        font-size: 16px;
    }

    .content-section {
        padding: 60px 0;
    }

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

    .stats-row {
        grid-template-columns: 1fr;
    }

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

    .history-timeline::before {
        left: 20px;
    }

    .history-item {
        flex-direction: column;
        gap: 16px;
    }

    .history-year {
        width: auto;
        text-align: left;
        padding-left: 50px;
    }

    .history-content {
        margin-left: 50px;
    }

    .history-content::before {
        left: -40px;
    }

    .cards-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .news-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

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

    .job-item {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .job-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h3 {
        font-size: 24px;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ============================================
   ADDITIONAL STYLES FOR NEW PAGES
   ============================================ */

/* Legal Updated Date */
.legal-updated {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

/* Cookie Preferences Box */
.cookie-preferences-box {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.cookie-preferences-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-text strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.cookie-option-text p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--primary-purple);
}

.cookie-toggle input:disabled + .toggle-slider {
    background-color: var(--primary-purple);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* Privacy Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.security-item {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.security-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.security-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.security-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* Sitemap Quick Links */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quick-link-icon {
    font-size: 40px;
}

.quick-link-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

/* Service Page Hero - Enhanced */
.service-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    padding: 100px 0;
    color: var(--white);
}

.service-hero h1,
.service-hero h2,
.service-hero h3,
.service-hero h4,
.service-hero p,
.service-hero span {
    color: var(--white);
}

.service-hero .icon-img {
    filter: brightness(0) invert(1);
}

.express-hero {
    background: linear-gradient(135deg, #FF6200 0%, #E55500 100%);
}

.standard-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #3D1070 100%);
}

.international-hero {
    background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
}

.service-hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

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

.hero-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.hero-stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.85;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Pricing Cards */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--primary-purple);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-purple);
}

.price-unit {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -16px;
    width: 32px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-box .btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-box .btn-outline:hover {
    background: var(--white);
    color: var(--primary-orange);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 48px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td.highlight {
    background: rgba(77, 20, 140, 0.05);
    font-weight: 600;
    color: var(--primary-purple);
}

.comparison-table th.highlight {
    background: var(--primary-purple);
    color: var(--white);
}

/* Regions Grid (International) */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.region-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.region-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.region-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.region-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.region-time {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Docs Checklist */
.docs-checklist {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.docs-checklist h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-orange);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.checklist-item:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Restrictions Grid */
.restrictions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.restriction-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.restriction-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
}

.restriction-card.prohibited h4 {
    color: #DC2626;
    border-color: #DC2626;
}

.restriction-card.restricted h4 {
    color: #F59E0B;
    border-color: #F59E0B;
}

.restriction-card.allowed h4 {
    color: #10B981;
    border-color: #10B981;
}

.restriction-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.restriction-card li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

/* Responsive for new components */
@media (max-width: 1024px) {
    .pricing-table {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .process-step::after {
        display: none;
    }

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

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

    .security-features {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .service-hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER V2 STYLES
   ============================================ */
.footer-v2 {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-20) 0 0;
}

.footer-v2-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.5fr;
    gap: var(--space-10);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    padding-right: var(--space-10);
}

.footer-brand .footer-logo {
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.footer-brand .footer-logo .track {
    color: var(--white);
}

.footer-brand .footer-logo .pro {
    color: var(--primary-orange);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-lg);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

.footer-social .social-icon {
    width: var(--icon-md);
    height: var(--icon-md);
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: var(--space-5);
    letter-spacing: -0.01em;
}

.footer-col a {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-400);
    text-decoration: none;
    padding: var(--space-2) 0;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: var(--space-2);
}

/* Footer icons - white on dark background */
.footer-v2 .icon-img {
    filter: brightness(0) invert(1);
}

.footer-tracking {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px;
}

.footer-tracking h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-tracking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-tracking-form input {
    padding: 14px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
}

.footer-tracking-form input::placeholder {
    color: var(--gray-500);
}

.footer-tracking-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.footer-tracking-form button {
    padding: 14px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-tracking-form button:hover {
    background: #e55a00;
}

.footer-bottom-v2 {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-v2 p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-v2-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-v2-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* ============================================
   ICON COLOR UTILITY CLASSES
   Use these classes for consistent icon colors
   ============================================ */

/* Purple icons - for light backgrounds */
.icon-color-purple {
    filter: brightness(0) saturate(100%) invert(12%) sepia(80%) saturate(4500%) hue-rotate(268deg) brightness(85%) contrast(115%);
}

/* Orange icons - for accents and CTAs */
.icon-color-orange {
    filter: brightness(0) saturate(100%) invert(45%) sepia(95%) saturate(2000%) hue-rotate(360deg) brightness(100%) contrast(105%);
}

/* White icons - for dark/purple backgrounds */
.icon-color-white {
    filter: brightness(0) invert(1);
}

/* Gray icons - for subtle/secondary elements */
.icon-color-gray {
    filter: brightness(0) saturate(100%) invert(45%) sepia(0%) saturate(0%) brightness(90%);
}

/* Dark icons - for light backgrounds */
.icon-color-dark {
    filter: brightness(0) saturate(100%) invert(10%) sepia(5%) saturate(500%) brightness(30%);
}

/* Success icons (green) */
.icon-color-success {
    filter: brightness(0) saturate(100%) invert(55%) sepia(75%) saturate(500%) hue-rotate(100deg) brightness(95%);
}

/* Error icons (red) */
.icon-color-error {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(340deg) brightness(95%);
}

/* Info icons (blue) */
.icon-color-info {
    filter: brightness(0) saturate(100%) invert(40%) sepia(90%) saturate(1500%) hue-rotate(200deg) brightness(95%);
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS FOR PAGES
   ============================================ */

@media (max-width: 768px) {
    /* Page Hero Mobile */
    .page-hero {
        padding: 60px 0;
    }

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

    .page-hero p {
        font-size: 15px;
        padding: 0 16px;
    }

    /* Section Grid Mobile */
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .section-text h2 {
        font-size: 28px;
    }

    /* Values Grid Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    /* Blog Grid Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* News Grid Mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .news-featured-image {
        min-height: 200px;
        font-size: 48px;
    }

    .news-featured-content {
        padding: 24px;
    }

    .news-featured-content h3 {
        font-size: 22px;
    }

    /* Contact Grid Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Job Items Mobile */
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .job-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-apply {
        width: 100%;
        text-align: center;
    }

    /* Cards Grid Mobile */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        border-radius: 12px;
    }

    .card-content {
        padding: 20px;
    }

    /* Image Placeholder Mobile */
    .image-placeholder {
        height: 250px;
    }

    /* Content Section Mobile */
    .content-section {
        padding: 60px 0;
    }

    .content-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    /* Timeline Section Mobile */
    .timeline-section .timeline-item {
        padding-left: 24px;
    }

    /* Team Grid Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Stats Cards Mobile */
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Pricing Cards Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Admin Page Specific Mobile */
    .admin-main {
        padding: 20px 0;
    }

    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .page-header-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .admin-user {
        width: 100%;
        justify-content: center;
    }

    .btn-logout {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .page-hero h1 {
        font-size: 24px;
    }

    .section-text h2 {
        font-size: 24px;
    }

    /* Stats Cards Stack on Very Small */
    .stats-cards {
        grid-template-columns: 1fr;
    }

    /* Blog Content Smaller */
    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

    /* Contact Items Stack */
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    /* Value Cards Smaller */
    .value-card {
        padding: 24px 16px;
    }

    .value-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .value-card h3 {
        font-size: 18px;
    }
}

/* Admin specific mobile improvements */
@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .admin-card {
        margin-bottom: 16px;
    }

    .admin-card.full-width {
        margin-top: 0;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .card-header h2 {
        font-size: 18px;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    /* Form improvements for mobile */
    .form-section {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .form-section-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px;
    }

    .form-hint {
        font-size: 12px;
    }

    /* Checkbox group mobile */
    .checkbox-group {
        padding: 12px 0;
    }

    .checkbox-label {
        font-size: 14px;
    }

    /* Result box mobile */
    .result-box {
        padding: 16px;
        margin-top: 16px;
    }

    .tracking-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tracking-display strong {
        word-break: break-all;
    }

    .btn-copy {
        width: 100%;
        justify-content: center;
    }

    /* Table mobile */
    .table-container {
        margin: 0 -16px;
        padding: 0 16px;
        border-radius: 0;
    }

    table th,
    table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .table-actions {
        gap: 6px;
    }

    .table-actions .btn-icon {
        width: 34px;
        height: 34px;
    }

    /* Status badge smaller */
    .status-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* Touch-friendly form elements */
@media (pointer: coarse) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 50px;
    }

    .checkbox-label {
        padding: 14px 0;
    }

    button, .btn {
        min-height: 50px;
    }
}
