/* ============================================
   BRAND COLORS & DESIGN TOKENS
   ============================================ */
:root {
    --dark-blue: #153263;
    --gold-dark: #e9a836;
    --gold-light: #f9d367;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6d6d6d;
    --dark-gray: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #6d6d6d;
    --border-light: #e5e5e5;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 18px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    max-width: 100%;
}

.logo-text {
    font-weight: 600;
}

.logo-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.infinitygold {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 1.30em; /* Relative to parent text size (approximately 26px when parent is 18px) */
    letter-spacing: -0.5px;
    vertical-align: -3.5px;
    display: inline-block;
}

.infinityblue {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.30em; /* Relative to parent text size (approximately 26px when parent is 18px) */
    letter-spacing: -0.5px;
    vertical-align: -3.5px;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-menu a:hover {
    color: var(--gold-dark);
}

.btn-nav {
    background: var(--dark-blue);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-blue);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 88px;
    padding: 120px 0 100px;
    background: radial-gradient(circle at center, #f9d367 0%, #e9a836 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.hero-tagline {
    font-size: 18px;
    color: var(--text-dark);
    margin: 48px 0 40px;
    padding: 0;
    background: transparent;
    border: none;
    font-weight: 500;
}

.hero-tagline .arrow {
    color: var(--gold-dark);
    font-size: 20px;
    margin-right: 8px;
}

.sub-tagline {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-weight: 400;
    font-size: 16px;
}

.btn-primary {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: -0.3px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 168, 54, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--dark-blue);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--dark-blue);
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--white);
    border-color: transparent;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 100px 0;
}

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

.section-label {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-description strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.highlight-text {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 32px;
}

/* ============================================
   PROCESS FLOW
   ============================================ */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 48px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.process-step {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 16px;
    background: transparent;
    border-radius: 0;
    font-size: 16px;
    border-bottom: 2px solid var(--gold-dark);
}

.process-flow .arrow {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 400;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 64px 0;
}

.benefit-card {
    background: radial-gradient(circle at center, #f9d367 0%, #e9a836 100%);
    padding: 40px;
    border-radius: 0;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.benefit-card p {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 0;
    margin-bottom: 80px;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    gap: 80px;
    transition: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 80px;
}

.service-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-card:hover {
    transform: none;
}

.service-number {
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 120px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -4px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.service-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin: 32px 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 0;
    position: relative;
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-light);
}

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

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: bold;
}

.service-outcome {
    margin-top: 32px;
    padding: 24px;
    background: var(--light-gray);
    border-left: 4px solid var(--gold-dark);
    border-radius: 0;
    color: var(--text-dark);
    font-size: 18px;
}

.service-outcome strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.service-link {
    display: inline-block;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 24px;
    transition: color 0.3s ease;
    letter-spacing: -0.3px;
}

.service-link:hover {
    color: var(--gold-dark);
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.industry-card {
    background: var(--white);
    padding: 48px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.industry-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 18px;
}

/* ============================================
   PROCESS SECTION (Why Us)
   ============================================ */
.process-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
}

.process-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.process-section .section-header {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.process-section .service-card {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.process-sticky-container {
    position: relative;
}

.process-sticky-block {
    position: relative;
    min-height: 100vh;
    padding: 0;
}

.main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-content-block {
    position: relative;
}

.section-header-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 80px;
}

.flex-verticle-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-tag-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.bottom-28px {
    margin-bottom: 28px;
}

.tag-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-dark);
}

.section-tag-text {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.header-block {
    max-width: 655px;
}

.width-655px {
    max-width: 655px;
}

.span-text {
    display: inline-block;
    opacity: 1;
}


.main-span {
    display: inline-block;
    opacity: 1;
}

/* Process Scroll Liner Styles */
.process-scroll-liner {
    min-height: 200vh;
    padding-bottom: 100px;
}

.default-process-block {
    position: relative;
    min-height: 200vh;
    padding-bottom: 100px;
}

.scroll-liner-wrapper {
    position: sticky;
    top: 120px;
    z-index: 10;
    margin-bottom: 60px;
    background: var(--white);
    padding: 24px 0 32px;
}

.scroll-orders {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.card-order-block {
    flex: 1;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-order-block.is-active {
    transform: translateY(-2px);
}

.text-medium {
    font-size: 18px;
    font-weight: 600;
}

.color-dark-grey {
    color: var(--text-light);
}

.scroll-progress-bar-block {
    position: relative;
    height: 2px;
}

.scroll-progress-bar {
    position: relative;
    height: 2px;
    background: transparent;
    overflow: visible;
}

.scroll-indicator {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    transition: width 0.1s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
}

.scroll-liner-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.process-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.process-card-block {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.card-order-block.is-active .text-medium {
    color: var(--gold-dark);
    font-weight: 700;
}

.process-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-card-image-block {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    /*background: var(--light-gray);*/
    border-radius: 0;
    margin-bottom: 24px;
}

.process-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card-image.align-left {
    object-position: left center;
}

.process-card-block.is-active .process-card-image {
    transform: scale(1);
    opacity: 1;
}

.process-card-block:not(.is-active) .process-card-image {
    transform: scale(1.02);
    opacity: 0.6;
}

.process-card-text-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.body-text-default {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .process-card-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-liner-wrapper {
        position: relative;
        top: 0;
    }
    
    .scroll-indicator {
        width: 25%;
    }
}

@media (max-width: 700px) {
    .scroll-liner-wrapper { 
        padding: 8px 0 18px; 
    }
    .scroll-orders { 
        gap: 12px; 
    }
    .process-card-image-block { 
        width: 80%; 
    }
    .process-card-content { 
        gap: 12px; 
    }
}

@media (max-width: 600px) {
    .scroll-liner-wrapper { 
        margin-bottom: 16px; 
    }
    .process-card-grid { 
        gap: 18px; 
    }
    .body-text-default { 
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .process-sticky-block {
        padding: 80px 0;
    }
    
    .section-header {
        font-size: 36px;
    }
    
    .header-block {
        max-width: 100%;
    }
    
    .scroll-orders {
        gap: 16px;
    }
    
    .text-medium {
        font-size: 16px;
    }
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources-section {
    background: var(--light-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 64px 0;
}

.resource-card {
    background: var(--white);
    padding: 48px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

a.resource-card {
    text-decoration: none;
    display: block;
    color: inherit;
}

.resource-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.resource-type {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.resource-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.resource-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 18px;
}

.blog-topics {
    margin-top: 64px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.blog-list {
    list-style: none;
    display: block;
    text-align: left;
}

.blog-list li {
    padding: 16px 0;
    padding-left: 0;
    position: relative;
    color: var(--text-dark);
    font-size: 18px;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.7;
}

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

.blog-list li::before {
    content: '→';
    position: absolute;
    left: -24px;
    color: var(--gold-dark);
    font-weight: bold;
}

.blog-list li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-list li a:hover {
    color: var(--gold-dark);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--white);
}

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

.faq-item {
    background: var(--white);
    padding: 40px 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border-light);
}

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

.faq-question {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    cursor: pointer;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 18px;
}

.faq-item.active .faq-question {
    color: var(--gold-dark);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.cta-description {
    font-size: 22px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--gold-dark);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-color: transparent;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Skip to Content Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--gold-dark);
    outline-offset: 2px;
}

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

.error-message[style*="block"] {
    display: block;
}

.form-error-alert {
    background: #f8d7da;
    color: #721c24;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #dc3545;
}

/* Image Loading States */
img:not([loading="lazy"]):not(.logo-img):not(.footer-logo-img) {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded,
img[loading="lazy"],
.logo-img,
.footer-logo-img {
    opacity: 1;
}

.image-loading {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.image-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--gold-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .service-card {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 88px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 40px 24px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .section-description {
        font-size: 18px;
    }

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

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

    .process-section .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-card {
        flex-direction: column;
        gap: 32px;
        padding-bottom: 60px;
    }

    .service-number {
        font-size: 80px;
        min-width: auto;
    }

    .service-title {
        font-size: 28px;
    }

    .process-flow {
        flex-direction: column;
        gap: 12px;
    }

    .process-flow .arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
    }

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

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .industry-title {
        font-size: 24px;
    }
    
    .resource-title {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 20px;
    }
}

/* ============================================
   FORM PAGE STYLES
   ============================================ */
.form-page {
    margin-top: 88px;
    padding: 100px 0;
    min-height: calc(100vh - 88px);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Form page uses section-header, section-title, and section-description classes */
.form-container .section-title {
    margin-bottom: 16px; /* Override default margin for form page */
}

.form-container .section-description {
    max-width: 600px; /* Override default max-width for form page */
}

.contact-form {
    background: var(--white);
    padding: 60px;
    border: 1px solid var(--border-light);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.form-group label .required {
    color: var(--gold-dark);
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(233, 168, 54, 0.1);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23153263' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--dark-blue);
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--gold-dark);
}

.submit-button {
    width: 100%;
    background: var(--dark-blue);
    color: var(--white);
    padding: 18px 32px;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
    margin-top: 8px;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 168, 54, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px;
    background: var(--light-gray);
    border: 1px solid var(--border-light);
}

.form-success.active {
    display: block;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.success-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.back-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold-dark);
}

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

    .form-container .section-title {
        font-size: 36px;
    }

    .form-container .section-description {
        font-size: 18px;
    }

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

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