/* ============================================
   MR Global - Professional Corporate Stylesheet
   Tailored to Official Brand Identity & Logo Palette
   ============================================ */

/* ============================================
   1. CSS Custom Properties & Design Tokens
   ============================================ */
:root {
    /* Brand Colors (Direct from MR Global Logo) */
    --primary: #1B3B53;            /* Logo Deep Navy Slate ("MR") */
    --primary-dark: #0F2333;       /* Midnight Navy */
    --primary-light: #244C6A;      /* Medium Navy */
    
    --brand-teal: #3BA4B8;         /* Logo Vibrant Ocean Teal ("GLOBAL") */
    --brand-teal-dark: #2A8495;    /* Deep Teal Hover */
    --brand-teal-light: #E8F7FA;   /* Soft Teal Tint */
    
    --brand-purple: #663E84;       /* Logo Rich Violet / Purple ("M" Emblem) */
    --brand-purple-light: #F3ECF8; /* Soft Purple Tint */
    
    --brand-mint: #10B981;         /* Logo Vibrant Green / Mint (Swoosh) */
    --brand-mint-light: #ECFDF5;   /* Soft Mint Tint */
    
    /* Primary Accent mapped to Logo Teal */
    --accent: #3BA4B8;
    --accent-hover: #2A8495;
    --accent-light: #64C5D6;
    --teal: #3BA4B8;
    --teal-light: #E8F7FA;
    
    /* Neutral & Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;           /* Clean Slate Surface */
    --bg-alt: #F0F6F8;             /* Brand Tinted Alt */
    --bg-dark: #0E1F2D;            /* Deep Brand Dark Background */
    --bg-dark-surface: #172D40;    /* Dark Card Surface */
    
    /* Typography & Text Colors */
    --text-main: #1B3B53;          /* Headings (Logo Slate) */
    --text-body: #334E68;          /* Body text */
    --text-muted: #627D98;         /* Captions */
    --text-light: #9FB3C8;         /* Light muted */
    --text-white: #FFFFFF;
    
    /* Borders & Dividers */
    --border-color: #E2E8F0;
    --border-color-light: #F0F4F8;
    --border-color-dark: #244C6A;
    
    /* Brand Gradients from Logo */
    --gradient-primary: linear-gradient(135deg, #1B3B53 0%, #244C6A 50%, #3BA4B8 100%);
    --gradient-accent: linear-gradient(135deg, #3BA4B8 0%, #2A8495 100%);
    --gradient-logo: linear-gradient(135deg, #663E84 0%, #3BA4B8 50%, #10B981 100%);
    --gradient-hero: linear-gradient(135deg, rgba(14, 31, 45, 0.92) 0%, rgba(27, 59, 83, 0.82) 60%, rgba(59, 164, 184, 0.45) 100%);
    --gradient-dark: linear-gradient(180deg, #0E1F2D 0%, #08131C 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(27, 59, 83, 0.05);
    --shadow-sm: 0 2px 8px -1px rgba(27, 59, 83, 0.08);
    --shadow-md: 0 8px 24px -4px rgba(27, 59, 83, 0.1), 0 2px 6px -2px rgba(27, 59, 83, 0.05);
    --shadow-lg: 0 20px 40px -12px rgba(27, 59, 83, 0.16), 0 4px 12px -2px rgba(27, 59, 83, 0.06);
    --shadow-xl: 0 25px 50px -12px rgba(27, 59, 83, 0.22);
    --shadow-glow: 0 0 25px rgba(59, 164, 184, 0.3);
    
    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --topbar-height: 42px;
    --header-height: 80px;
}

/* ============================================
   2. Reset & Global Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   3. Typography & Section Headings
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

p:last-child {
    margin-bottom: 0;
}

.text-gradient {
    background: linear-gradient(135deg, #3BA4B8 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-title.title-left {
    text-align: left;
    margin-left: 0;
}

/* ============================================
   4. Containers & Utilities
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

.section-padding {
    padding: 6rem 0;
}

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

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--text-white);
}

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

/* ============================================
   5. Buttons & Interactive Links
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid transparent;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-white);
    box-shadow: 0 4px 14px 0 rgba(59, 164, 184, 0.38);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px 0 rgba(59, 164, 184, 0.5);
    background: linear-gradient(135deg, #3296A8 0%, #237483 100%);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--primary);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border-color);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   6. Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0E1F2D;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.preloader-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: preloaderPulse 2s infinite ease-in-out;
}

.preloader-spinner-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
}

.preloader-spinner {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #3BA4B8;
    border-right: 3px solid #10B981;
    border-bottom: 3px solid #663E84;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

.preloader-text {
    color: #9FB3C8;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.03); opacity: 1; }
}

/* ============================================
   7. Top Information Bar
   ============================================ */
.top-bar {
    background: #0E1F2D;
    color: #9FB3C8;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
    transition: var(--transition-base);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--topbar-height);
    padding-top: 6px;
    padding-bottom: 6px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #CBD5E1;
    transition: var(--transition-fast);
}

.top-info-item i {
    color: var(--brand-teal);
    font-size: 0.85rem;
}

.top-info-item a:hover {
    color: var(--text-white);
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social-links a {
    color: #9FB3C8;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    transition: var(--transition-fast);
}

.top-social-links a:hover {
    background: var(--brand-teal);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ============================================
   8. Main Navigation Header
   ============================================ */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px -2px rgba(27, 59, 83, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 4px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--brand-teal);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-teal);
}

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

.nav-cta-btn {
    margin-left: 8px;
}

/* Mobile Hamburger Button */
.hamburger {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1030;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Drawer Backdrop */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(14, 31, 45, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-base);
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ============================================
   9. Hero Section & Slider
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0E1F2D;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 31, 45, 0.93) 0%, rgba(27, 59, 83, 0.82) 55%, rgba(59, 164, 184, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 4rem 0;
    color: var(--text-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(59, 164, 184, 0.2);
    border: 1px solid rgba(59, 164, 184, 0.4);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: #64C5D6;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: #37EA9D;
}

.hero-title {
    color: var(--text-white);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #64C5D6 0%, #37EA9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    color: #CBD5E1;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E2E8F0;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: #37EA9D;
    font-size: 1.1rem;
}

/* Hero Controls */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.hero-arrow:hover {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-base);
}

.hero-dot.active {
    width: 32px;
    background: var(--brand-teal);
    border-radius: 10px;
}

/* ============================================
   10. Page Banners (Inner Pages)
   ============================================ */
.page-banner {
    position: relative;
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.15;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-banner p {
    color: #CBD5E1;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: #9FB3C8;
}

.breadcrumb a {
    color: #E2E8F0;
}

.breadcrumb a:hover {
    color: #64C5D6;
}

.breadcrumb span {
    color: #64C5D6;
}

/* ============================================
   11. Stats / Counter Cards
   ============================================ */
.counters-section {
    padding: 0 0 5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 5;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-right: 1px solid var(--border-color);
}

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

.counter-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.counter-item:hover .counter-icon-wrap {
    background: var(--brand-teal);
    color: var(--text-white);
    transform: scale(1.08);
}

.counter-info {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* In-page trusted counter section */
.trusted-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trusted-section .counters-grid {
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
}

/* ============================================
   12. Services Section & Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 164, 184, 0.35);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: var(--text-white);
    transform: scale(1.08) rotate(3deg);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--brand-teal);
    transition: var(--transition-fast);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Service Detail Cards (Inner Page) */
.services-detail-section {
    padding: 5rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail:hover .service-detail-image img {
    transform: scale(1.04);
}

.service-detail-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
}

.service-features li i {
    color: #10B981;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================
   13. Why Choose Us Section
   ============================================ */
.why-choose-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.why-choose-media {
    position: relative;
}

.why-choose-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.why-choose-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-choose-badge .badge-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #37EA9D;
    line-height: 1;
}

.why-choose-badge .badge-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #E2E8F0;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-choose-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition-base);
}

.why-choose-item:hover {
    background: var(--bg-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 164, 184, 0.35);
}

.why-choose-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.why-choose-item:hover .why-choose-icon {
    background: var(--brand-teal);
    color: var(--text-white);
}

.why-choose-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.why-choose-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   14. Logo Carousel / Client Partners
   ============================================ */
.logo-carousel-section {
    padding: 4.5rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-light) 0%, transparent 100%);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-light) 0%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    height: 70px;
    min-width: 180px;
    transition: var(--transition-base);
}

.logo-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.logo-item img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.85);
    transition: var(--transition-base);
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   15. Industries Section
   ============================================ */
.industries-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-card:hover {
    background: var(--bg-white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 164, 184, 0.35);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-base);
}

.industry-card:hover .industry-icon {
    background: var(--gradient-accent);
    color: var(--text-white);
    transform: scale(1.1);
}

.industry-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

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

/* ============================================
   16. Work Process Section
   ============================================ */
.process-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 3rem;
}

.process-step {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 164, 184, 0.35);
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-accent);
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -56px auto 1.5rem;
    box-shadow: 0 4px 14px rgba(59, 164, 184, 0.35);
    border: 4px solid var(--bg-white);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.process-step p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   17. Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.testimonials-slider {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item {
    min-width: 100%;
    padding: 20px;
}

.testimonial-content {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote-icon {
    color: #A3D8E2;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2.5px solid var(--brand-teal);
}

.testimonial-info {
    text-align: left;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary);
}

.testimonial-info span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dot.active {
    width: 32px;
    background: var(--brand-teal);
    border-radius: 10px;
}

/* ============================================
   18. Call-To-Action (CTA) Section
   ============================================ */
.cta-section {
    padding: 5.5rem 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 164, 184, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.cta-content p {
    color: #CBD5E1;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

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

/* ============================
   19. About Page Specifics
   ============================ */
.about-intro {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-vision-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.mission-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 164, 184, 0.35);
}

.mission-vision-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.mission-vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.mission-vision-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Core Values */
.core-values {
    padding: 6rem 0;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.core-value-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-base);
}

.core-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 164, 184, 0.35);
}

.core-value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
}

.core-value-card:hover .core-value-icon {
    background: var(--brand-teal);
    color: var(--text-white);
}

/* Timeline */
.timeline-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #CBD5E1;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 45%;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-teal);
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
}

.timeline-content {
    width: 45%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-teal);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px rgba(59, 164, 184, 0.25);
    z-index: 2;
}

/* Executive Leadership / Team */
.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    padding-bottom: 24px;
}

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

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #E2E8F0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.team-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-teal);
}

/* ============================================
   20. Contact Section & Interactive Form
   ============================================ */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 44px 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card h3 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    color: #64C5D6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: #CBD5E1;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.contact-info-text a {
    color: #CBD5E1;
}

.contact-info-text a:hover {
    color: var(--text-white);
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.95rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    color: var(--text-main);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3.5px rgba(59, 164, 184, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 0 0 6rem;
}

.map-container {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Preview on Home Page */
.contact-preview-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-preview-map {
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-preview-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-mini-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-base);
}

.contact-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 164, 184, 0.35);
}

.contact-mini-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-mini-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--primary);
}

.contact-mini-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

/* FAQ Accordion */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-fast);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--brand-teal);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease;
    padding: 0 24px;
    background: #FAFAFC;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 24px;
    border-top: 1px solid var(--border-color-light);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   21. Footer Section
   ============================================ */
.footer {
    background: #0B1924;
    color: #9FB3C8;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 4rem;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--brand-teal);
    border-radius: var(--radius-full);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-description {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #9FB3C8;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social-links a:hover {
    background: var(--brand-teal);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9FB3C8;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--brand-teal);
    transition: transform var(--transition-fast);
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--brand-teal);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

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

.footer-contact-item a:hover {
    color: var(--text-white);
}

.footer-bottom {
    background: #060E15;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
    color: #627D98;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   22. Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--gradient-accent);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(59, 164, 184, 0.38);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 164, 184, 0.55);
}
