/* ========================================
   H&G Infinity Capital - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-navy: #1e3a5f;
    --primary-navy-dark: #152a45;
    --primary-navy-light: #2a4a73;
    --primary-gold: #c9a227;
    --primary-gold-light: #d4b445;
    --primary-gold-dark: #b08f1f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(201, 162, 39, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Raleway', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-navy);
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }
.text-white { color: var(--white); }
.text-light { color: rgba(255, 255, 255, 0.8); }

/* ========================================
   Custom Cursor
   ======================================== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    opacity: 0.6;
}

/* Cursor hover effects */
.cursor-dot.cursor-hover {
    width: 10px;
    height: 10px;
}

.cursor-outline.cursor-hover {
    width: 40px;
    height: 40px;
    border-color: var(--primary-gold);
    background: rgba(201, 162, 39, 0.1);
}

/* White dot only on gold elements */
.cursor-dot.cursor-gold-hover {
    background: var(--white);
}

/* Cursor click effect */
.cursor-dot.cursor-click {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-outline.cursor-click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Hide default cursor when custom cursor is active */
body {
    cursor: none;
}

a, button, input, textarea, select, .btn, .nav-link, .service-block, .case-card, .team-card, .sector-item {
    cursor: none;
}

/* ========================================
   Preloader
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.loader-infinity {
    font-size: 2.5rem;
    color: var(--primary-gold);
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo img {
    height: 70px;
    transition: var(--transition-normal);
}

.logo .logo-text {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-top: 2px;
    transition: var(--transition-normal);
}

.header.scrolled .logo img {
    height: 55px;
}

.header.scrolled .logo .logo-text {
    font-size: 0.6rem;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--primary-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-normal);
}

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

.nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    padding: 15px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown li a:hover {
    background: var(--off-white);
    color: var(--primary-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.header.scrolled .hamburger .bar {
    background: var(--primary-navy);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(42, 74, 115, 0.9) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    padding-top: 100px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
    background: var(--primary-navy);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Section Headers
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-tag.light {
    color: var(--primary-gold);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.approach .section-subtitle {
    color: var(--primary-gold);
}

.section-header {
    margin-bottom: 60px;
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.global-map-wrapper {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.3);
}

.global-map-wrapper img {
    height: auto;
    object-fit: contain;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-gold);
    border-radius: 8px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-navy);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.badge-highlight {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 5px 0;
}

.global-corridor {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    border-radius: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.corridor-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.global-corridor .corridor-separator {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 900;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--off-white);
    padding-bottom: 40px;
}

.service-block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition-normal);
}

.service-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    border-radius: 12px;
    color: var(--primary-gold);
    font-size: 2.5rem;
}

.service-image {
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-gold), var(--primary-navy)) border-box;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-main {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.service-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-list {
    display: grid;
    gap: 12px;
}

.service-list.two-col {
    grid-template-columns: 1fr 1fr;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-list li i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.service-highlight {
    display: flex;
    gap: 40px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.highlight-text {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sector Grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: var(--off-white);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-normal);
}

.sector-item:hover {
    background: var(--primary-navy);
}

.sector-item:hover i,
.sector-item:hover span {
    color: var(--white);
}

.sector-item i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.sector-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Core Capabilities Section
   ======================================== */
.capabilities {
    background: var(--off-white);
    padding-top: 30px;
}

.capability-block {
    margin-bottom: 60px;
}

.capability-block:last-child {
    margin-bottom: 0;
}

.capability-header {
    margin-bottom: 40px;
}

.capability-header .section-title {
    font-size: 2rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.capability-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-navy) 100%);
}

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

.capability-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    border-radius: 12px;
    margin-bottom: 25px;
}

.capability-icon i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.capability-icon.custom-icon {
    background: transparent;
    width: 120px;
    height: 120px;
}

.capability-icon.custom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.capability-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.capability-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Approach Section
   ======================================== */
.approach {
    position: relative;
    background: var(--primary-navy);
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern.png') repeat;
    opacity: 0.05;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.approach-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.approach-number {
    position: absolute;
    top: -15px;
    left: 30px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 2rem;
}

.approach-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.approach-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ========================================
   Case Studies / Track Record
   ======================================== */
.track-record-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.track-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-navy) 100%);
}

.track-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.track-category {
    display: inline-block;
    background: var(--primary-navy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.track-highlight {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.track-card h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

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

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

.case-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.case-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.case-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.75rem;
    transition: var(--transition-normal);
}

.case-card:hover .case-icon {
    background: var(--primary-gold);
    color: var(--white);
}

.case-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.case-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========================================
   Leadership Section
   ======================================== */
.leadership.section {
    padding-top: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-slow);
}

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.9), transparent);
    opacity: 1;
    transition: var(--transition-normal);
    z-index: 2;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.team-social a:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
    background: var(--off-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.why-content h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.why-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.grid-item.large,
.grid-item.full-width {
    grid-column: span 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--white);
}

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

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-navy);
    border-radius: 12px;
    color: var(--primary-gold);
    font-size: 1.25rem;
}

.contact-text h4 {
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0 0 5px 0;
}

.contact-text p {
    margin: 0;
}

.contact-offices {
    align-items: flex-start;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.office-card {
    background: var(--off-white);
    border-radius: 10px;
    padding: 15px;
    border-left: 3px solid var(--primary-gold);
}

.office-card .office-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 6px;
    display: block;
}

.office-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-text p,
.contact-text a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-text a:hover {
    color: var(--primary-gold);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    padding: 50px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background: var(--white);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-navy-dark);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo .logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 5px;
}

.footer-logo .logo-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-gold);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

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

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-gold);
    width: 20px;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-navy);
    transform: translateY(-5px);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .sector-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--white) !important;
        font-size: 1.1rem;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .dropdown {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .global-corridor {
        gap: 10px;
        padding: 15px 20px;
    }

    .corridor-item {
        font-size: 0.95rem;
    }

    .capability-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capability-card {
        padding: 30px;
    }

    .track-record-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .track-highlight {
        font-size: 2rem;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        padding: 30px;
    }

    .service-main {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .service-list.two-col {
        grid-template-columns: 1fr;
    }

    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-header .section-title {
        font-size: 1.5rem;
    }

    .capability-card h3 {
        font-size: 1.2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        padding: 15px 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -50px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .service-highlight {
        flex-direction: column;
        gap: 20px;
    }

    .sector-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Animations (AOS-like)
   ======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}
