/* ===================================
   SetupGulf - Service Pages Styles
   Universal styles for all PageBuilder-based service pages
   (Dubai, IFZA, Abu Dhabi, KSA, all UAE/KSA formation pages)
   =================================== */

/* ========== PAGE LAYOUT ========== */
.page-shell {
    background: #f6f8fb;
}

.section-shell {
    padding: calc(var(--spacing-lg) * 2) 0;
    /* 2 points of padding between sections */
}

.section-shell+.section-shell {
    border-top: 1px solid rgba(19, 44, 85, 0.04);
}

/* Section Background Variations */
.section-shell.section-bg-light {
    background: var(--light-color);
}

.section-shell.section-bg-muted {
    background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
}

.section-shell.section-bg-dark {
    background: #06132a;
    color: #fff;
}

.section-shell.section-bg-dark p,
.section-shell.section-bg-dark h2,
.section-shell.section-bg-dark .section-eyebrow {
    color: rgba(255, 255, 255, 0.9);
}

.section-shell.section-bg-gradient {
    background: linear-gradient(135deg, #0f2c58 0%, #184b8f 50%, #0e1d3d 100%);
    color: #fff;
}

/* Container Padding */
.section-shell .container {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
    text-align: center;
}

.section-shell .split-content,
.section-shell .rich-text {
    text-align: left;
}

/* ========== SECTION HEADERS (Centered, Homepage Style) ========== */
.section-header {
    max-width: 760px;
    margin: 0 auto var(--spacing-sm);
    /* 1 point between header and description */
    text-align: center;
}

.section-header .section-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    /* 1 point between eyebrow and title */
    display: inline-block;
}

.section-header .section-title,
.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin: var(--spacing-sm) auto var(--spacing-sm);
    /* 1 point after heading, 1 point before content */
    text-align: center;
}

/* ========== PAGEBUILDER HERO SECTION ========== */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: var(--spacing-3xl) 0;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(6, 14, 40, 0.92), rgba(12, 23, 55, 0.92));
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .lead-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
}

.hero-section .eyebrow-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(244, 192, 96, 0.2);
    border: 1px solid rgba(244, 192, 96, 0.4);
    border-radius: var(--radius-full);
    color: #F4C060;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-copy {
    max-width: 700px;
}

/* Hero Metrics with Gap Before CTAs */
.hero-section .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.hero-metrics>div {
    text-align: center;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
}

/* Hero Image/Panel */
.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== SPLIT SECTIONS (Text + Image) ========== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: left;
}

/* Split Section Header (Full Width at Top) */
.split-grid .section-header {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    /* 1 point after header */
    max-width: 100%;
}

.split-grid .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    /* 1 point between title and bar */
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.split-grid .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    border-radius: var(--radius-full);
}

.split-grid .section-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-sm);
    /* 1 point between description and content */
    text-align: center;
}

/* Split Content Row (Image Right, Text Left) */
.split-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.split-content {
    padding: var(--spacing-lg);
}

.split-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.split-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    border-radius: var(--radius-full);
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    /* 1 point between paragraphs */
}

.split-content p:first-of-type {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
}

.split-media {
    position: relative;
    order: 2;
    /* Image on the right */
}

.split-media::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 100, 169, 0.1), rgba(244, 192, 96, 0.1));
    border-radius: var(--radius-xl);
    z-index: 0;
}

.split-media img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(34, 100, 169, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.split-media img:hover {
    transform: scale(1.02);
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
    /* 1 point between text and bullet list */
    background: linear-gradient(135deg, rgba(34, 100, 169, 0.03), rgba(244, 192, 96, 0.03));
    border-left: 4px solid var(--accent-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.check-list li {
    padding-left: 2.5rem;
    margin-bottom: var(--spacing-sm);
    /* 1 point between bullet points */
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 500;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--secondary-color), #00d4a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.25);
}

/* ========== HIGHLIGHTS GRID (3x2 Layout) ========== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-sm);
    /* 1 point after description */
}

/* 4-column grid for specific sections (Company Structures, License Types) */
.highlights-grid.grid-4-col {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.highlight-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(34, 100, 169, 0.08);
    border: 1px solid rgba(34, 100, 169, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(34, 100, 169, 0.15);
    border-color: var(--accent-color);
}

.highlight-icon {
    font-size: 3rem;
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(34, 100, 169, 0.1) 0%, rgba(244, 192, 96, 0.1) 100%);
    margin: 0 auto var(--spacing-md);
}

.highlight-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.highlight-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ========== STATS/METRICS GRID ========== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-sm);
    /* 1 point after description */
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(34, 100, 169, 0.08);
    border: 1px solid rgba(34, 100, 169, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(34, 100, 169, 0.15);
    border-color: var(--accent-color);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-helper {
    font-size: 0.95rem;
    color: var(--text-lighter);
    line-height: 1.5;
}

/* ========== PROCESS STEPS (Modern Flowchart Style) ========== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--spacing-sm);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Vertical connector line */
.steps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transform: translateX(-50%);
    z-index: 0;
}

.step {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 24px rgba(34, 100, 169, 0.1);
    border: 2px solid rgba(34, 100, 169, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.step:last-child {
    margin-bottom: 0;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(34, 100, 169, 0.2);
    border-color: var(--accent-color);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(34, 100, 169, 0.3);
    position: relative;
    flex-shrink: 0;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step-number::after {
    opacity: 0.5;
}

.step-content {
    text-align: left;
}

.step-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(34, 100, 169, 0.1), rgba(244, 192, 96, 0.1));
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(34, 100, 169, 0.2);
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Responsive adjustments for process steps */
@media (max-width: 768px) {
    .steps-container::before {
        left: 36px;
    }

    .step {
        grid-template-columns: 72px 1fr;
        gap: var(--spacing-md);
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

/* ========== ICON LIST SECTIONS ========== */
.icon-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-sm);
}

.icon-list-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(34, 100, 169, 0.08);
    transition: all 0.3s ease;
}

.icon-list-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(34, 100, 169, 0.15);
    border-left-color: var(--primary-color);
}

.icon-list-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--secondary-color), #00d4a1);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.25);
}

.icon-list-item p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.icon-list-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ========== COMPARISON TABLES ========== */
.comparison-table {
    overflow-x: auto;
    margin-top: var(--spacing-2xl);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34, 100, 169, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid rgba(34, 100, 169, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), #184b8f);
    color: #fff;
    font-weight: 700;
}

.comparison-table tr:hover {
    background: rgba(34, 100, 169, 0.02);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.faq-section .section-header {
    margin-bottom: var(--spacing-sm);
    /* 1 point after header */
}

.faq-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
}

.faq-section .section-description {
    font-size: 1.2rem;
    color: var(--text-light);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: var(--spacing-sm);
    /* 1 point between FAQ items */
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(34, 100, 169, 0.08);
    border: 1px solid rgba(34, 100, 169, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(34, 100, 169, 0.12);
    border-color: var(--accent-color);
}

.faq-question {
    padding: var(--spacing-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: #f8fbff;
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    flex: 1;
    line-height: 1.4;
    padding-right: var(--spacing-md);
}

.faq-question .toggle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-left: var(--spacing-lg);
    min-width: 24px;
}

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

.faq-answer {
    padding: 0 var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    padding-top: var(--spacing-sm);
    /* 1 point between question and answer */
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInSlide 0.4s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, rgba(98, 174, 255, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 192, 96, 0.2), transparent 50%),
        linear-gradient(135deg, #0f2c58 0%, #184b8f 50%, #0e1d3d 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-eyebrow {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.cta-section h2 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.cta-section .hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-primary,
.cta-section .cta-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-primary {
    background: linear-gradient(135deg, var(--accent-color), #e5a845);
    color: var(--primary-dark);
    border: none;
}

.cta-section .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(244, 192, 96, 0.4);
    background: linear-gradient(135deg, #e5a845, var(--accent-color));
}

.cta-section .cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-section .cta-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

/* ========== FORM SECTIONS ========== */
.contact-form-centered {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-panel {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 8px 32px rgba(34, 100, 169, 0.12);
    border: 1px solid rgba(34, 100, 169, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--gold-color));
}

.contact-form-panel:hover {
    box-shadow: 0 16px 56px rgba(34, 100, 169, 0.2);
    transform: translateY(-6px);
}

.contact-form-panel h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.contact-form-panel .form-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.contact-info-panel {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(34, 100, 169, 0.1);
    box-shadow: 0 8px 32px rgba(34, 100, 169, 0.08);
    position: relative;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-panel:hover::before {
    opacity: 0.1;
}

.contact-info-item {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: #fff;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 6px 20px rgba(34, 100, 169, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(34, 100, 169, 0.05), transparent);
    border-radius: 50%;
    transform: translate(40%, -40%);
}

.contact-info-item:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 12px 32px rgba(34, 100, 169, 0.18);
    border-left-color: var(--gold-color);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-item h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(34, 100, 169, 0.1);
}

.contact-info-item p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

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

.contact-info-item a:hover {
    color: var(--accent-color);
}

.contact-info-item a:hover::after {
    width: 100%;
}

.contact-info-item small {
    font-size: 0.95rem;
    color: var(--text-light);
    display: block;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 2px dashed rgba(34, 100, 169, 0.2);
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-color), #184b8f);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(34, 100, 169, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(34, 100, 169, 0.35);
    background: linear-gradient(135deg, #184b8f, var(--accent-color));
}

.info-badge::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ========== RESPONSIVE SERVICE PAGES ========== */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .icon-list-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .split-grid,
    .split-content-row,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .split-media {
        order: 1;
        /* Image on top for mobile */
    }

    .split-content {
        order: 2;
        /* Content below image */
    }

    /* Center alignment for tablet */
    .hero-copy,
    .split-content {
        text-align: center !important;
        max-width: 100%;
    }

    .split-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-actions,
    .cta-section .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-shell {
        padding: var(--spacing-2xl) 0;
    }

    /* Mobile Center Alignment for ALL sections */
    .section-shell .container {
        text-align: center !important;
    }

    .hero-section h1,
    .hero-section .lead-text,
    .hero-section .eyebrow-tag {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-copy {
        text-align: center !important;
    }

    .hero-section .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .cta-section .hero-actions {
        justify-content: center !important;
        text-align: center;
    }

    /* Split sections - center everything */
    .split-content,
    .split-content p,
    .split-content h2 {
        text-align: center !important;
    }

    .split-content h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .check-list {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    /* Highlights Grid - Center all cards */
    .highlights-grid,
    .highlights-grid.grid-4-col {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .highlight-card {
        text-align: center !important;
        max-width: 100%;
    }

    /* Process Steps - Center everything */
    .steps-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step {
        text-align: center !important;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .step-number {
        margin: 0 auto var(--spacing-md);
    }

    .step-content {
        text-align: center !important;
    }

    .step-badge {
        display: inline-block;
    }

    /* Stats Grid - Center */
    .stat-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .stat-card {
        text-align: center !important;
        max-width: 100%;
    }

    /* Icon List - Center */
    .icon-list-grid {
        justify-items: center;
    }

    .icon-list-item {
        text-align: left;
        max-width: 100%;
    }

    /* FAQ Section - Center */
    .faq-section .section-header,
    .faq-section .section-title,
    .faq-section .section-description {
        text-align: center !important;
    }

    .faq-question {
        padding: var(--spacing-md);
    }

    .faq-question h3 {
        font-size: 1rem;
        text-align: left;
    }

    .faq-answer {
        text-align: left;
    }

    /* CTA Section - Center */
    .cta-section,
    .cta-section h2,
    .cta-section p {
        text-align: center !important;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    /* Form Section - Center */
    .contact-form-panel,
    .contact-form-panel h3,
    .contact-form-panel .form-description {
        text-align: center !important;
    }

    .contact-info-panel {
        text-align: center;
    }

    .info-badges {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section-shell .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        text-align: center !important;
    }

    /* Even stricter centering for small mobile */
    .hero-section,
    .hero-copy,
    .split-content,
    .highlight-card,
    .stat-card,
    .step-content,
    .faq-section,
    .cta-section,
    .contact-form-panel {
        text-align: center !important;
    }

    .metric-number {
        font-size: 1.75rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }

    /* Ensure hero metrics stack nicely */
    .hero-section .hero-metrics {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Center all buttons/CTAs */
    .hero-actions,
    .cta-section .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-actions a,
    .cta-section .hero-actions a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */

.contact-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-surface);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Contact Information Section */
.contact-info-section {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.contact-details a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* Form Introduction */
.form-intro {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.form-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-icon {
        font-size: 1.5rem;
    }
}