/* ==========================================================================
   shahjiandsons Consulting - CORPORATE CONSULTING STYLESHEET
   ========================================================================== */

/* Importing Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --navy-dark: #0F172A;
    --navy-slate: #1E293B;
    --royal-blue: #2563EB;
    --royal-hover: #1D4ED8;
    --cyan-accent: #06B6D4;
    --cyan-hover: #0891B2;
    --bg-base: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-glass: rgba(255, 255, 255, 0.75);
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    
    /* Borders & Shadows */
    --border-color: rgba(15, 23, 42, 0.08);
    --border-glass: rgba(255, 255, 255, 0.35);
    --border-glow: rgba(37, 99, 235, 0.15);
    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.03);
    --shadow-medium: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-glass: 0 8px 32px rgba(15, 23, 42, 0.04);
    
    /* Typography */
    --ff-heading: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Base resets & scroll-behavior */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--ff-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 48px; /* Adjust as needed */
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
}

.logo-text span {
    color: var(--cyan-accent);
}
/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--cyan-accent) 100%);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s ease-out;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: var(--royal-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cyan-accent);
}

/* Core Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

a {
    transition: var(--transition-fast);
    text-decoration: none;
}

.gradient-text {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Structural Components */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

.bg-alt-section {
    background-color: var(--bg-alt);
}

/* Glassmorphism Elements */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-glow);
}

/* Header & Navigation */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

#site-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

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

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-symbol {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transform: rotate(-6deg);
    transition: var(--transition-smooth);
}

.logo:hover .logo-symbol {
    transform: rotate(0deg) scale(1.05);
}

.logo-symbol i {
    color: #FFFFFF;
    font-size: 1.15rem;
}

.logo-text {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--royal-blue);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.25rem;
}

.nav-link a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-blue);
    transition: var(--transition-fast);
}

.nav-link a:hover {
    color: var(--royal-blue);
}

.nav-link a:hover::after {
    width: 100%;
}

.nav-link.active a {
    color: var(--royal-blue);
    font-weight: 600;
}

.nav-link.active a::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: var(--navy-dark);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan-accent) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--royal-hover) 0%, var(--cyan-hover) 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.btn-white {
    background: #FFFFFF;
    color: var(--royal-blue);
    box-shadow: var(--shadow-soft);
}

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
}

/* Section Header standard */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4.5rem auto;
}

.section-header .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--royal-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cyan-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge i {
    font-size: 0.7rem;
    animation: pulse-glow 2s infinite;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    border: 4px solid #FFFFFF;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.hero-stats-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stats-badge i {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-stats-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-stats-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Infinity Ticker */
.ticker-section {
    background: var(--navy-dark);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    gap: 4rem;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #FFFFFF;
    font-size: 1.15rem;
    font-family: var(--ff-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ticker-item i {
    color: var(--cyan-accent);
}

/* About Company */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 6px solid #FFFFFF;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-bullets {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 550;
    font-size: 0.95rem;
}

.about-bullet-item i {
    color: var(--cyan-accent);
    font-size: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-body {
    padding: 2.5rem 2rem;
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
}

.service-card:hover .service-icon {
    background: var(--royal-blue);
    color: #FFFFFF;
    transform: scale(1.05);
    transition: var(--transition-fast);
}

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

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Why Choose Us & Metrics dashboard */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.why-us-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.why-us-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-us-bullet {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-us-bullet-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.08);
    color: var(--cyan-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-us-bullet-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.why-us-bullet-text p {
    font-size: 0.95rem;
}

.metric-dashboard-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    border-radius: 24px;
    padding: 2.5rem;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.metric-header h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-header h3 i {
    color: var(--royal-blue);
}

.metric-header span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan-accent);
    text-transform: uppercase;
}

.metric-bars {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.metric-bar-item span {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.metric-bar-track {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--cyan-accent) 100%);
    border-radius: 10px;
}

/* Hiring Models / Work Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    padding: 3rem 2.25rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.process-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.process-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.process-card .model-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.process-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: auto;
}

.process-list li {
    font-size: 0.9rem;
    font-weight: 550;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-list li i {
    color: var(--royal-blue);
    font-size: 0.85rem;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
    border-color: var(--cyan-accent);
}

.industry-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.05);
    color: var(--cyan-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.3rem;
}

.industry-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

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

/* Statistics Counter */
.counter-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-slate) 100%);
    padding: 5rem 0;
    color: #FFFFFF;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.counter-item h3 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--cyan-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #FBBF24;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan-accent) 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.author-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.author-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--royal-blue);
    box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--royal-blue);
}

/* CTA Banner */
.cta-banner {
    padding: 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--royal-blue) 100%);
    border-radius: 30px;
    padding: 5rem 4rem;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-wrapper h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

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

/* Footer Section */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info .logo-text {
    color: #FFFFFF;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h5 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--cyan-accent);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--cyan-accent);
    margin-top: 0.25rem;
}

.footer-contact-item a {
    color: inherit;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* Page Banner/Breadcrumbs */
.page-banner {
    background: white;
    padding: 6.5rem 0 5rem 0;
    color: #2563EB;
    text-align: center;
    border-bottom: solid 1px #2563EB;
}

.page-banner h1 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: #2563EB;
    margin-bottom: 0.75rem;
}

.breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.95rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--cyan-accent);
}

.breadcrumb li::after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li:last-child {
    color: #2563EB;
}

/* Document Reading Pages Style */
.doc-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.doc-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem 0;
}

.doc-content h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem 0;
}

.doc-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.doc-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.doc-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

.contact-info-panel h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-info-panel p {
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--royal-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.contact-item-text p, .contact-item-text a {
    font-size: 0.97rem;
    color: var(--text-secondary);
}

.contact-item-text a:hover {
    color: var(--royal-blue);
}

.contact-form-panel {
    padding: 3rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    border-radius: 24px;
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    margin-bottom: 2rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    background-color: var(--bg-alt);
}

.form-control:focus {
    outline: none;
    border-color: var(--royal-blue);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

textarea.form-control {
    height: 140px;
    resize: none;
}

.form-feedback {
    display: none;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 550;
}

.form-feedback.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #B91C1C;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Map Frame Style */
.map-section {
    padding: 0 0 8rem 0;
}

.map-card {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-alt);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--royal-blue);
    margin-bottom: 1.25rem;
}

.map-placeholder h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
    section {
        padding: 6rem 0;
    }
    
    .hero-grid, .about-grid, .why-us-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content, .about-content, .why-us-content, .contact-info-panel {
        align-items: center;
        text-align: center;
    }
    
    .why-us-content h2, .about-content h2 {
        text-align: center;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions, .cta-buttons {
        justify-content: center;
    }
    
    .services-grid, .process-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 3rem;
    }
    
    .footer-grid > div:last-child {
        grid-column: span 3;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FFFFFF;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 90;
        padding: 2rem;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-link a {
        font-size: 1.1rem;
    }
    
    .services-grid, .process-grid, .testimonials-grid, .industries-grid, .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-grid > div:last-child {
        grid-column: span 1;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .about-bullets {
        grid-template-columns: 1fr;
    }
}

/* Hamburger active transformation */
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
    position: relative;
}

.hamburger.is-active .hamburger-inner::before {
    transform: rotate(-90deg);
    top: 0;
}

.hamburger.is-active .hamburger-inner::after {
    opacity: 0;
}
