/* ═══════════════════════════════════════════════════════════
   ARMEKA GROUP - Corporate Website Styles
   ═══════════════════════════════════════════════════════════ */

/* CSS Variables */
:root {
    --navy: #0F1B2D;
    --navy-light: #1A2D47;
    --navy-mid: #243B5C;
    
    --teal: #0365b1;
    --teal-dark: #002d51;
    --teal-light: #0365b1;
    --teal-pale: #CCFBF1;
    
    --copper: #C8702A;
    --copper-dark: #A85E22;
    --copper-light: #E8943D;
    
    --slate: #334155;
    --slate-light: #64748B;
    --slate-pale: #94A3B8;
    
    --cream: #FAFAF8;
    --warm-white: #F8F7F4;
    --cloud: #F1F0ED;
    
    --charcoal: #1E293B;
    --body-text: #475569;
    
    --shadow-sm: 0 1px 3px rgba(15, 27, 45, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 27, 45, 0.08);
    --shadow-lg: 0 12px 30px rgba(15, 27, 45, 0.12);
    --shadow-xl: 0 20px 40px rgba(15, 27, 45, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'roboto', system-ui, -apple-system, sans-serif;
    font-size: 18px; /* Increase from browser default (usually 16px) */
    color: var(--body-text);
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--cloud);
}
::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 45, 81, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

/* Logo */
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 10px;
}

.logo-icon span {
    color: var(--teal-light);
    font-weight: 900;
    font-size: 1.25rem;
}

.logo-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: var(--copper);
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.navbar:not(.
) .logo-name {
    color: #fff;
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--slate-light);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar:not(.scrolled) .logo-tagline {
    color: rgba(255,255,255,0.5);
}

/* Nav Links */
.navbar-nav .nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate);
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.75);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--teal);
    background: rgba(13, 148, 136, 0.06);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23334155' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, #0365b1, #0365b1);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
    color: #fff !important;
}

.btn-cta i {
    margin-left: 4px;
    font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn-primary-custom {
    background: linear-gradient(135deg, #0365b1, #0365b1);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.35);
    color: #fff;
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 20px rgba(200, 112, 42, 0.25);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 112, 42, 0.35);
    color: #fff;
}

.btn-outline-custom {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,27,45,0.95), rgba(15,27,45,0.8), rgba(15,27,45,0.5));
}

.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,27,45,0.5), transparent 50%, rgba(15,27,45,0.3));
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-badge i {
    color: var(--copper-light);
}

.hero-badge .pulse {
    width: 6px;
    height: 6px;
    background: var(--teal-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--teal-light), var(--teal), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .text-teal {
    color: var(--teal-light);
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Cards */
.hero-cards {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card.offset {
    margin-left: 2rem;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.hero-card-icon i {
    color: var(--teal-light);
    font-size: 1.25rem;
}

.hero-card-icon.copper {
    background: rgba(200, 112, 42, 0.2);
}

.hero-card-icon.copper i {
    color: var(--copper-light);
}

.hero-card-number {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hero-card-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-card-text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.hero-card-subtext {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
}

.hero-card-cert {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero-card-cert i {
    color: var(--teal-light);
}

.hero-card-cert.copper i {
    color: var(--copper-light);
}

.hero-progress {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.hero-progress-bar {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, var(--teal), var(--copper));
    border-radius: 3px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
}

.scroll-indicator span {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════ */

.stats-section {
    position: relative;
    margin-top: -4rem;
    z-index: 10;
    padding-bottom: 2rem;
}

.stats-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--cloud);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(13, 148, 136, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-icon i {
    color: var(--teal);
    font-size: 1.125rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════════════════════ */

.section {
    padding: 6rem 0;
}

.section-cream {
    background: var(--cream);
}

.section-navy {
    background: var(--navy);
}

.section-header {
    margin-bottom: 3.5rem;
}

.line-accent {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--copper));
    border-radius: 2px;
    margin-bottom: 1rem;
}

.line-accent.center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--teal);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--body-text);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

.section-desc.center {
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */

.card-lift {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.card-lift:hover .card-icon {
    background: var(--teal);
}

.card-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.card-icon.teal {
    background: rgba(13, 148, 136, 0.1);
}

.card-icon.teal i {
    color: var(--teal);
}

.card-icon.copper {
    background: rgba(200, 112, 42, 0.1);
}

.card-icon.copper i {
    color: var(--copper);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card-lift:hover .card-title {
    color: var(--teal);
}

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

.card-number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(15, 27, 45, 0.03);
    line-height: 1;
    transition: color 0.3s ease;
}

.card-lift:hover .card-number {
    color: rgba(13, 148, 136, 0.06);
}

/* ═══════════════════════════════════════════════════════════
   CERTIFICATION CARDS
   ═══════════════════════════════════════════════════════════ */

.cert-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
}

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

.cert-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(200,112,42,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-icon {
    transform: scale(1.1);
}

.cert-icon i {
    color: var(--navy);
    font-size: 1.5rem;
}

.cert-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cert-desc {
    color: var(--slate-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-content {
    background: var(--navy);
    padding: 5rem 3rem;
    position: relative;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 30px 30px;
}

.cta-accent {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--copper));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-image {
    position: relative;
    min-height: 450px;
}

.cta-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════════════════════ */

.page-hero {
    background: var(--navy);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-glow-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 320px;
    height: 320px;
    background: rgba(13, 148, 136, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.page-hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 380px;
    height: 380px;
    background: rgba(200, 112, 42, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero .line-accent {
    background: linear-gradient(90deg, var(--teal), var(--copper));
}

.page-hero .section-subtitle {
    color: var(--teal-light);
}

.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.5);
    max-width: 640px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.about-img-accent-1 {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 96px;
    height: 96px;
    border: 2px solid rgba(13, 148, 136, 0.15);
    border-radius: 16px;
}

.about-img-accent-2 {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(200, 112, 42, 0.15);
    border-radius: 12px;
}

.about-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-stat {
    background: var(--cream);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    flex: 1;
}

.about-stat-icon {
    color: var(--teal);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.about-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.about-stat-label {
    font-size: 1rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Company Cards */
.company-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.35s ease;
}

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

.company-card-accent {
    height: 4px;
}

.company-card-accent.teal { background: var(--teal); }
.company-card-accent.copper { background: var(--copper); }
.company-card-accent.navy { background: var(--navy); }

.company-card-body {
    padding: 2rem;
}

.company-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.company-card-icon.teal { background: rgba(13, 148, 136, 0.1); }
.company-card-icon.teal i { color: var(--teal); }
.company-card-icon.copper { background: rgba(200, 112, 42, 0.1); }
.company-card-icon.copper i { color: var(--copper); }
.company-card-icon.navy { background: rgba(15, 27, 45, 0.08); }
.company-card-icon.navy i { color: var(--navy); }

.company-card-icon i {
    font-size: 1.25rem;
}

.company-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.company-card-desc {
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--cream);
    color: var(--slate);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin: 0.2rem;
}

.tag i {
    color: var(--teal);
    font-size: 1rem;
}

/* Location Cards */
.location-card {
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    height: 100%;
}

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

.location-card.hq {
    background: var(--navy);
    border: none;
    box-shadow: var(--shadow-xl);
}

.location-card:not(.hq) {
    background: #fff;
}

.location-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-card.hq .location-icon {
    background: rgba(255,255,255,0.1);
}

.location-card:not(.hq) .location-icon {
    background: rgba(13, 148, 136, 0.06);
}

.location-card.hq .location-icon i {
    color: var(--copper-light);
}

.location-card:not(.hq) .location-icon i {
    color: var(--teal);
}

.location-icon i {
    font-size: 1.25rem;
}

.location-city {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.location-card.hq .location-city {
    color: #fff;
}

.location-card:not(.hq) .location-city {
    color: var(--navy);
}

.location-type {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.location-card.hq .location-type {
    color: var(--copper-light);
}

.location-card:not(.hq) .location-type {
    color: var(--teal);
}

.location-sub {
    font-size: 1rem;
}

.location-card.hq .location-sub {
    color: rgba(255,255,255,0.4);
}

.location-card:not(.hq) .location-sub {
    color: var(--slate-light);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */

.service-block {
    margin-bottom: 5rem;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon.teal { background: var(--teal); }
.service-icon.copper { background: var(--copper); }

.service-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.service-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}

.service-desc {
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.service-features-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-icon i {
    color: var(--navy);
    font-size: 0.875rem;
}

.feature-text {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 4px;
}

/* Process Steps */
.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.35s ease;
}

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

.process-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(13, 148, 136, 0.1);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.process-desc {
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.6;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    color: rgba(13, 148, 136, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   TECHNOLOGY PAGE
   ═══════════════════════════════════════════════════════════ */

.platform-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.platform-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.platform-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,27,45,0.2), transparent);
}

.platform-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.platform-icon i {
    color: var(--teal);
    font-size: 1.125rem;
}

.platform-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
}

.platform-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.platform-desc {
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.platform-feature i {
    color: var(--navy);
    font-size: 1rem;
}

.platform-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate);
}

/* Channel Cards */
.channel-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.35s ease;
}

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

.channel-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.channel-card:hover .channel-icon {
    background: var(--teal);
}

.channel-icon i {
    color: #fff;
    font-size: 1.125rem;
}

.channel-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.channel-card:hover .channel-title {
    color: var(--teal);
}

.channel-desc {
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Cloud Platform Cards */
.cloud-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cloud-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: rgba(13, 148, 136, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.cloud-card-content {
    position: relative;
    z-index: 2;
}

.cloud-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.cloud-icon i {
    color: var(--copper-light);
    font-size: 1.25rem;
}

.cloud-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
}

.cloud-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--copper-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cloud-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.6;
    margin: 1.25rem 0;
}

.cloud-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
}

.cloud-feature i {
    color: var(--teal-light);
    font-size: 1rem;
}

.cloud-feature span {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES PAGE
   ═══════════════════════════════════════════════════════════ */

.industry-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
}

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

.industry-card-accent {
    height: 4px;
}

.industry-card-accent.teal { background: var(--teal); }
.industry-card-accent.copper { background: var(--copper); }

.industry-card-body {
    padding: 2rem;
}

.industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon.teal { background: rgba(13, 148, 136, 0.1); }
.industry-icon.teal i { color: var(--teal); }
.industry-icon.copper { background: rgba(200, 112, 42, 0.1); }
.industry-icon.copper i { color: var(--copper); }

.industry-icon i {
    font-size: 1.25rem;
}

.industry-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.industry-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.industry-desc {
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.industry-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-services li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.industry-services li i {
    color: var(--teal);
    font-size: 1rem;
}

/* Region Cards */
.region-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
}

.region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 27, 45, 0.3);
}

.region-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(13, 148, 136, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.region-card-content {
    position: relative;
    z-index: 2;
}

.region-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.region-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.region-desc {
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.region-clients {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.region-clients li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.region-clients li i {
    color: var(--teal-light);
    font-size: 1rem;
}

.region-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--copper-light);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.region-location i {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */

.contact-cards {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(13, 148, 136, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.contact-card-icon i {
    color: var(--teal);
    font-size: 1.125rem;
}

.contact-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-card-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate);
}

.contact-card-text a {
    color: var(--teal);
}

.contact-card-text a:hover {
    color: var(--teal-dark);
}

.contact-card-sub {
    font-size: 1rem;
    color: var(--slate-light);
    margin-top: 0.25rem;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
}

.form-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 1px solid var(--cloud);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--slate);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-control::placeholder {
    color: var(--slate-pale);
}

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

/* Sidebar Cards */
.sidebar-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 1.25rem;
}

.sidebar-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sidebar-card-title i {
    color: var(--teal);
}

.hq-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hq-item i {
    color: var(--teal);
    font-size: 0.875rem;
    margin-top: 2px;
}

.hq-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.hq-item-text {
    font-size: 1rem;
    color: var(--body-text);
    line-height: 1.5;
}

.regional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.regional-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.regional-item i {
    color: var(--teal);
    font-size: 1rem;
}

.regional-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

/* Why Card */
.why-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.why-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(13, 148, 136, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

.why-card-content {
    position: relative;
    z-index: 2;
}

.why-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.why-item i {
    color: var(--copper-light);
    font-size: 1rem;
}

.why-item span {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

/* Map */
.map-section {
    background: var(--cream);
    padding: 4rem 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--cloud);
}

.map-container iframe {
    display: block;
}

/* Success Alert */
.alert-success-custom {
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-success-custom p {
    color: var(--teal-dark);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success-custom i {
    color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    background: var(--navy);
    color: #fff;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--copper), var(--teal));
}

.footer-brand {
    text-decoration: none;
}

.footer-brand .logo-icon {
    background: rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
    color: #fff;
}

.footer-brand .logo-tagline {
    color: rgba(255,255,255,0.4);
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-cert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.badge-cert i {
    font-size: 1rem;
}

.badge-cert i.bi-shield-check {
    color: var(--teal-light);
}

.badge-cert i.bi-award {
    color: var(--copper-light);
}

.footer-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal-light);
    transform: translateX(4px);
}

.footer-links a i {
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact li i {
    color: var(--teal-light);
    font-size: 1rem;
    margin-top: 2px;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-contact li a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    margin: 0;
}

.certifications {
    color: rgba(255,255,255,0.2);
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link {
        color: var(--slate) !important;
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        color: var(--teal) !important;
        background: rgba(13, 148, 136, 0.06);
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-cards {
        display: none;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--cloud);
    }
    
    .cta-content {
        padding: 3rem 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .regional-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */

.text-teal { color: var(--teal) !important; }
.text-copper { color: var(--copper) !important; }
.text-navy { color: var(--navy) !important; }

.bg-teal { background-color: var(--teal) !important; }
.bg-copper { background-color: var(--copper) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-cream { background-color: var(--cream) !important; }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate);
    font-weight: 500;
}

.check-list li i {
    color: var(--teal);
    font-size: 0.75rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon i {
    color: var(--teal);
    font-size: 0.625rem;
}
