/* ============================================
   NXT GEN Marketing Group — Main Styles
   DEEP NAVY HEADER & FOOTER + WHITE BODY
   ============================================ */

/* -------- RESET & BASE -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #0A1628;
    background: #FFFFFF;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* -------- COLORS -------- */
:root {
    --primary: #0A1628;
    --primary-light: #1A2D4A;
    --primary-dark: #050C18;
    --secondary: #4A90D9;
    --secondary-dark: #357ABD;
    --secondary-light: #7AB3E6;
    --text-light: #FFFFFF;
    --text-dark: #0A1628;
    --text-muted: #6B7A8A;
    --bg-light: #F0F5FA;
    --bg-white: #FFFFFF;
    --bg-dark: #0A1628;
    --border: #D0DCE8;
    --shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-hover: 0 12px 48px rgba(10, 22, 40, 0.2);
}

/* -------- TYPOGRAPHY -------- */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
}

p {
    color: #6B7A8A;
}

/* -------- BUTTONS -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 48px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(2px);
}

.btn-primary {
    background: #0A1628;
    color: #FFFFFF;
    border-color: #0A1628;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.35);
}

.btn-primary:hover {
    background: #1A2D4A;
    border-color: #1A2D4A;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4A90D9;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-call {
    background: #2D7D5A;
    color: #FFFFFF;
    border-color: #2D7D5A;
    box-shadow: 0 4px 20px rgba(45, 125, 90, 0.35);
    animation: pulse-call 2s infinite;
}

.btn-call:hover {
    background: #1F6B4A;
    border-color: #1F6B4A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(45, 125, 90, 0.5);
}

@keyframes pulse-call {
    0% { box-shadow: 0 4px 20px rgba(45, 125, 90, 0.35); }
    50% { box-shadow: 0 4px 40px rgba(45, 125, 90, 0.55); }
    100% { box-shadow: 0 4px 20px rgba(45, 125, 90, 0.35); }
}

.btn-call i {
    animation: ring 2s infinite;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    25% { transform: rotate(5deg); }
    30% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.btn-call-outline {
    background: transparent;
    color: #2D7D5A;
    border-color: #2D7D5A;
    box-shadow: none;
}

.btn-call-outline:hover {
    background: #2D7D5A;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(45, 125, 90, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    min-height: 56px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    min-height: 40px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-text {
    background: none;
    border: none;
    color: #4A90D9;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.btn-text:hover {
    color: #357ABD;
    transform: translateX(4px);
}

/* -------- BADGE -------- */
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    background: #4A90D9;
    color: #FFFFFF;
}

.badge-dark {
    background: #0A1628;
    color: #FFFFFF;
}

.badge-primary {
    background: #4A90D9;
    color: #FFFFFF;
}

.badge-light {
    background: #FFFFFF;
    color: #0A1628;
}

/* -------- SECTIONS -------- */
.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-light {
    background: #FFFFFF;
    color: #0A1628;
}

.section-light p {
    color: #6B7A8A;
}

.section-dark {
    background: #0A1628;
    color: #FFFFFF;
}

.section-dark p {
    color: #A0B0C5;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header .badge {
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-header.light h2 {
    color: #0A1628;
}

.section-header p {
    font-size: 1.125rem;
    color: #A0B0C5;
}

.section-header.light p {
    color: #6B7A8A;
}

.text-center {
    text-align: center;
}

/* ============================================
   NAVIGATION - DEEP NAVY HEADER
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0A1628;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 100px;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

/* -------- LOGO -------- */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) { .logo-img { height: 120px; } }
@media (max-width: 768px)  { .logo-img { height: 90px; } }
@media (max-width: 480px)  { .logo-img { height: 70px; } }

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4A90D9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A90D9;
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-family: inherit;
    transition: color 0.2s ease;
    margin-top: 2px;
}

.dropdown-btn:hover { color: #4A90D9; }

.dropdown-btn i {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.dropdown-btn.open i { transform: rotate(180deg); }

.navbar-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.2s ease;
    position: relative;
    text-decoration: none;
}

.navbar-link:hover { color: #4A90D9; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #0A1628;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    color: #FFFFFF;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #1A2D4A;
    color: #4A90D9;
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
    width: 48px;
    height: 48px;
}

@media (min-width: 1024px) { .hamburger { display: none; } }

.btn-cta { display: none; }
@media (min-width: 1024px) { .btn-cta { display: inline-flex; } }

/* ============================================
   MOBILE MENU - DEEP NAVY
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #0A1628;
    z-index: 2000;
    padding: 1.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open { right: 0; }

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease;
    text-decoration: none;
}

.mobile-links a:hover { color: #4A90D9; }

.mobile-services-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
}

.mobile-services-row > a {
    flex: 1;
    border-bottom: none;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
    text-decoration: none;
}

.mobile-services-row > a:hover { color: #4A90D9; }

.mobile-dropdown-btn {
    background: none;
    border: none;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    width: 44px;
    height: 44px;
    transition: color 0.2s ease;
}

.mobile-dropdown-btn:hover { color: #4A90D9; }

.mobile-dropdown-btn i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.mobile-dropdown-btn.open i { transform: rotate(180deg); }

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0;
    background: rgba(26, 45, 74, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-dropdown-menu.open { max-height: 500px; }

.mobile-dropdown-menu a {
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.625rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
}

.mobile-dropdown-menu a:last-child { border-bottom: none; }

.mobile-dropdown-menu a:hover {
    color: #4A90D9;
    background: rgba(26, 45, 74, 0.8);
}

.mobile-cta {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #0A1628;
    margin-top: 100px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.60) 50%, rgba(10, 22, 40, 0.40) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 800px;
    padding: 4rem 2rem;
    color: #FFFFFF;
}

.slide-content .badge {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.slide-content h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.slide-content h1 span { color: #4A90D9; }

.slide-content p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

@media (max-width: 768px) {
    .slider-arrow { width: 40px; height: 40px; font-size: 0.875rem; }
    .slider-arrow.prev { left: 0.75rem; }
    .slider-arrow.next { right: 0.75rem; }
}

.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #4A90D9;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.5);
}

.dot:hover { background: rgba(255, 255, 255, 0.6); }
.dot.active:hover { background: #4A90D9; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: #F0F5FA;
    padding: 2rem 0;
    border-bottom: 1px solid #D0DCE8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-weight: 500;
    color: #0A1628;
    font-size: 0.875rem;
}

.trust-item i {
    color: #4A90D9;
    font-size: 1.125rem;
}

@media (max-width: 480px) {
    .trust-item { font-size: 0.75rem; gap: 0.375rem; }
    .trust-item i { font-size: 0.875rem; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: #FFFFFF;
    border: 1px solid #D0DCE8;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    border-color: #4A90D9;
    background: #F0F5FA;
}

.service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #4A90D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.service-card h4 { margin-bottom: 0.5rem; color: #0A1628; }
.service-card p { font-size: 0.9375rem; color: #6B7A8A; margin-bottom: 1.25rem; }
.service-card .btn-text { color: #4A90D9; }
.service-card .btn-text:hover { color: #357ABD; }

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid #D0DCE8;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    background: #F0F5FA;
    border-color: #4A90D9;
}

.feature-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F0F5FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #4A90D9;
    margin: 0 auto 1.25rem;
}

.feature-card h4 { color: #0A1628; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9375rem; color: #6B7A8A; }

/* ============================================
   CTA BOX
   ============================================ */
.cta-box {
    background: #F0F5FA;
    border: 1px solid #D0DCE8;
    border-radius: 24px;
    padding: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    color: #0A1628;
}

.cta-box .badge { margin-bottom: 1rem; }
.cta-box h2 { color: #0A1628; margin-bottom: 1rem; }
.cta-box p {
    color: #6B7A8A;
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0A1628;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer .logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: #A0B0C5;
    font-size: 0.9375rem;
    max-width: 320px;
    margin-top: 0.75rem;
}

.footer h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer a {
    display: block;
    color: #A0B0C5;
    font-size: 0.875rem;
    padding: 0.375rem 0;
    transition: color 0.2s ease;
}

.footer a:hover { color: #4A90D9; }

.footer a i {
    width: 20px;
    margin-right: 0.5rem;
    color: #4A90D9;
}

/* SOCIAL ICONS */
.social-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin-top: 1.25rem !important;
}

.social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #1A2D4A !important;
    color: #FFFFFF !important;
    font-size: 1.125rem !important;
    padding: 0 !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
}

.social-links a i {
    display: block !important;
    width: 1em !important;
    height: 1em !important;
    line-height: 1 !important;
    text-align: center !important;
    font-size: inherit !important;
    margin: 0 !important;
    transform: translateY(1px) !important;
}

.social-links a:hover {
    background: #4A90D9 !important;
    color: #FFFFFF !important;
    transform: translateY(-3px) !important;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p { color: #A0B0C5; font-size: 0.875rem; }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.footer-links a {
    display: inline;
    padding: 0;
    font-size: 0.875rem;
    color: #A0B0C5;
}

.footer-links a:hover { color: #4A90D9; }
.footer-links span { color: #4A90D9; }

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================
   LOGO SLIDER
   ============================================ */
.logo-slider-section {
    padding: 3rem 0;
    background: #0A1628;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.logo-slider-section .section-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A0B0C5;
    margin-bottom: 2rem;
}

.logo-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: slideLogos 20s linear infinite;
    width: max-content;
}

.logo-slider-track:hover { animation-play-state: paused; }

.logo-slider-track .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 1rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid #D0DCE8;
    border-radius: 12px;
    min-width: 160px;
    min-height: 80px;
    transition: all 0.3s ease;
    opacity: 1;
}

.logo-slider-track .logo-item:hover {
    opacity: 1;
    border-color: #4A90D9;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: #FFFFFF;
}

.logo-slider-track .logo-item img {
    max-height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: none;
}

@keyframes slideLogos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-slider-track .logo-item {
        min-width: 120px;
        min-height: 60px;
        padding: 0.75rem 1rem;
    }
    .logo-slider-track .logo-item img { max-height: 35px; }
    .logo-slider-track { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .logo-slider-track .logo-item {
        min-width: 90px;
        min-height: 50px;
        padding: 0.5rem 0.75rem;
    }
    .logo-slider-track .logo-item img { max-height: 25px; }
    .logo-slider-track { gap: 1rem; }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        min-height: 500px;
        margin-top: 80px;
    }
    .slide-content {
        padding: 2rem 1.5rem;
        align-items: center;
        text-align: center;
    }
    .slide-content p { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .slider-dots { bottom: 1.5rem; }
    .navbar { height: 80px; }
    .navbar .container { height: 80px; }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 85vh;
        min-height: 450px;
        margin-top: 70px;
    }
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
    .cta-box { padding: 2rem 1.25rem; }
    .cta-box p { font-size: 1rem; }
}

/* ============================================
   UTILITY HELPERS
   ============================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-left  { text-align: left; }
.text-right { text-align: right; }

.d-flex        { display: flex; }
.align-center  { align-items: center; }
.justify-center{ justify-content: center; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.w-100 { width: 100%; }