/* ============================================
   Dark Blue Software - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d1642;
    --accent: #42a5f5;
    --accent-light: #64b5f6;
    --accent-dark: #1e88e5;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 50%, #42a5f5 100%);
    --gradient-hero: linear-gradient(135deg, #0d1642 0%, #1a237e 40%, #1e3a8a 70%, #2563eb 100%);
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --bg-light: #f8f9ff;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 35, 126, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 35, 126, 0.15);
    --shadow-hover: 0 12px 48px rgba(26, 35, 126, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Utility Classes ---------- */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #90caf9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary) !important;
}

/* ---------- Buttons ---------- */
.btn {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.btn-accent {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

/* ---------- Navbar ---------- */
#mainNavbar {
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1050;
}

#mainNavbar.scrolled {
    background: rgba(13, 22, 66, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.brand-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

#mainNavbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 8px 16px;
    font-size: 0.95rem;
    position: relative;
}

#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: #fff;
}

#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    transform: scaleX(1);
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(66, 165, 245, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(66, 165, 245, 0.15);
    border: 1px solid rgba(66, 165, 245, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Hero Code Block */
.hero-visual {
    position: relative;
}

.hero-code-block {
    background: rgba(13, 22, 66, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(66, 165, 245, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #28c840; }

.code-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.code-body {
    padding: 24px;
    font-family: 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    white-space: pre;
    overflow-x: auto;
}

.code-keyword { color: #c792ea; }
.code-class { color: #ffcb6b; }
.code-string { color: #c3e88d; }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    text-decoration: none;
}

.scroll-down:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ---------- Page Header ---------- */
.page-header {
    background: var(--gradient-hero);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.page-header .breadcrumb {
    margin-bottom: 16px;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item a:hover {
    color: #fff;
}

.page-header .breadcrumb-item.active {
    color: var(--accent-light);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Section Headers ---------- */
.section-badge {
    display: inline-block;
    background: rgba(26, 35, 126, 0.08);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Product Cards (Home) ---------- */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #fff;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-product-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-product-link:hover {
    color: var(--accent);
    gap: 4px;
}

.btn-product-link i {
    transition: transform 0.3s ease;
}

.btn-product-link:hover i {
    transform: translateX(4px);
}

/* ---------- Feature Cards ---------- */
.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: var(--gradient-hero);
    padding: 80px 0;
    position: relative;
}

.stat-item {
    color: #fff;
    padding: 20px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    display: inline;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 500;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author h6 {
    font-weight: 700;
    font-size: 0.95rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient-hero);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ---------- About Page ---------- */
.about-image-block {
    position: relative;
    padding: 20px;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), rgba(66, 165, 245, 0.3));
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-img-placeholder {
    position: relative;
    z-index: 1;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    color: var(--accent-light);
}

.about-stat {
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.about-stat h3 {
    font-weight: 800;
    margin-bottom: 4px;
}

/* Mission Cards */
.mission-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
    transition: var(--transition);
}

.mission-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Value Cards */
.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: #fff;
}

.value-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Team Cards */
.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* Tech Badges */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid rgba(26, 35, 126, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tech-badge:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tech-badge i {
    font-size: 1.2rem;
}

/* ---------- Products Page ---------- */
.product-screenshot {
    position: relative;
}

.screenshot-browser {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 35, 126, 0.08);
}

.browser-header {
    background: #f1f3f4;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-url {
    margin-left: 16px;
    font-size: 0.8rem;
    color: #666;
    background: #fff;
    padding: 4px 16px;
    border-radius: 4px;
    flex: 1;
    max-width: 200px;
}

.screenshot-placeholder {
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.section-divider {
    max-width: 100px;
    margin: 0 auto;
    border-color: rgba(26, 35, 126, 0.1);
}

.feature-check {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ---------- Services Page ---------- */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon-wrap {
    margin-bottom: 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
    top: 8px;
}

/* Process Cards */
.process-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.06);
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26, 35, 126, 0.06);
    line-height: 1;
}

.process-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--primary);
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- Contact Page ---------- */
.contact-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.15);
}

.contact-form-card .input-group-text {
    background: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-right: none;
    color: var(--primary);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.contact-form-card .input-group .form-control,
.contact-form-card .input-group .form-select {
    border-left: none;
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
}

.contact-info-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: #fff;
}

.contact-info-card h4 {
    color: #fff;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-light);
}

.contact-info-item h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

.contact-info-item a,
.contact-info-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-info-item a:hover {
    color: #fff;
}

.contact-info-card hr {
    border-color: rgba(255, 255, 255, 0.15);
}

.social-link-sm {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-link-sm:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.map-placeholder {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.map-overlay i {
    color: var(--accent-light);
}

/* ---------- Legal Pages ---------- */
.legal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(26, 35, 126, 0.06);
}

.legal-content h4:first-of-type {
    margin-top: 24px;
}

.legal-content h6 {
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 4px 0;
    line-height: 1.7;
}

.contact-block {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 16px;
    border-left: 4px solid var(--primary);
}

.contact-block a {
    color: var(--primary);
}

.contact-block a:hover {
    color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--primary-dark);
    padding: 60px 0 0;
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 20px;
}

.footer-bottom {
    padding-bottom: 24px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-bottom a {
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-light) !important;
}

/* ---------- Back to Top ---------- */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    #mainNavbar .navbar-collapse {
        background: rgba(13, 22, 66, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 16px;
    }

    #mainNavbar .btn-accent {
        margin-top: 12px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-form-card {
        padding: 24px;
    }

    .legal-content {
        padding: 24px;
    }

    .hero-scroll-indicator {
        bottom: 100px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 575.98px) {
    .brand-name {
        font-size: 1rem;
    }

    .hero-section {
        padding-top: 80px;
    }

    .about-img-placeholder {
        height: 280px;
    }

    .screenshot-placeholder {
        height: 250px;
    }
}
