/*
 * LUCENTRA LLC - UI/UX IMPROVEMENTS
 * Inspired by Falcon LLC and 2025-2026 Design Trends
 * Enhanced corporate trading website design
 */

/* ========================================
   CSS CUSTOM PROPERTIES - ENHANCED
   ======================================== */
:root {
    /* Enhanced Color Palette */
    --gradient-gold: linear-gradient(135deg, #D4A84B 0%, #E8C97A 50%, #D4A84B 100%);
    --gradient-navy: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
    --gradient-premium: linear-gradient(135deg, #1A365D 0%, #D4A84B 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* Enhanced Shadows */
    --shadow-glow-gold: 0 0 40px rgba(212, 168, 75, 0.3);
    --shadow-glow-navy: 0 0 40px rgba(26, 54, 93, 0.3);
    --shadow-card-hover: 0 25px 50px -12px rgba(26, 54, 93, 0.25);

    /* Timing Functions */
    --ease-premium: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   ENHANCED HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated gradient overlay */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.92) 0%,
        rgba(26, 54, 93, 0.85) 50%,
        rgba(15, 35, 65, 0.95) 100%
    );
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Floating particles effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 168, 75, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 164, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 168, 75, 0.05) 0%, transparent 70%);
    z-index: 2;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

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

/* Hero content enhancements */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

/* Animated hero title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: titleReveal 1.2s var(--ease-premium) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated tagline with gold gradient */
.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0 2.5rem;
    animation: taglineReveal 1.2s var(--ease-premium) 0.3s forwards;
    opacity: 0;
}

@keyframes taglineReveal {
    to { opacity: 1; }
}

/* Enhanced hero buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsReveal 1.2s var(--ease-premium) 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes buttonsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ENHANCED NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-premium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Logo animation */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s var(--ease-premium);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Nav links with underline animation */
.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s var(--ease-premium);
}

.nav-link:hover {
    color: #D4A84B;
}

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

/* ========================================
   GLASSMORPHISM CARDS
   ======================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* ========================================
   ENHANCED SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-premium);
    cursor: pointer;
}

/* 3D tilt effect on hover */
.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: var(--shadow-card-hover);
}

/* Service card image with overlay */
.service-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-premium);
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(26, 54, 93, 0.4) 60%,
        rgba(26, 54, 93, 0.9) 100%
    );
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.8;
}

/* Service content */
.service-content {
    padding: 2rem;
    position: relative;
}

/* Animated number badge */
.service-card[data-number]::before {
    content: attr(data-number);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(212, 168, 75, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-gold);
    z-index: 10;
    transition: all 0.4s var(--ease-premium);
}

.service-card:hover[data-number]::before {
    background: var(--primary-gold);
    color: #ffffff;
    transform: rotate(360deg) scale(1.1);
}

/* Service icon styling */
.service-icon-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s var(--ease-premium);
}

.service-icon-small svg {
    color: var(--primary-gold);
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon-small {
    background: var(--gradient-gold);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-glow-gold);
}

.service-card:hover .service-icon-small svg {
    color: var(--primary-navy);
}

/* Service link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-navy);
}

/* ========================================
   ENHANCED INDUSTRY CARDS
   ======================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.5s var(--ease-premium);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(26, 54, 93, 0.7) 70%,
        rgba(26, 54, 93, 0.95) 100%
    );
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(
        180deg,
        rgba(212, 168, 75, 0.1) 0%,
        rgba(26, 54, 93, 0.85) 70%,
        rgba(26, 54, 93, 0.98) 100%
    );
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    transition: transform 0.4s var(--ease-premium);
}

.industry-card:hover .industry-content {
    transform: translateY(-8px);
}

.industry-icon-small {
    width: 48px;
    height: 48px;
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.4s var(--ease-premium);
}

.industry-icon-small svg {
    color: var(--primary-gold);
    width: 24px;
    height: 24px;
}

.industry-card:hover .industry-icon-small {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow-gold);
}

.industry-card:hover .industry-icon-small svg {
    color: var(--primary-navy);
}

.industry-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   ENHANCED STATS SECTION
   ======================================== */
.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
}

/* Animated gradient border */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s var(--ease-premium);
}

.stat-card:hover::before,
.stat-card.aos-animate::before {
    transform: scaleY(1);
}

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

/* Animated counter number */
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* ========================================
   ENHANCED VALUE CARDS
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.4s var(--ease-premium);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.value-card:hover::after {
    width: 60%;
}

.value-badge {
    width: 70px;
    height: 70px;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s var(--ease-premium);
}

.value-badge svg {
    color: var(--primary-gold);
    width: 32px;
    height: 32px;
}

.value-card:hover .value-badge {
    background: var(--gradient-gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-gold);
}

.value-card:hover .value-badge svg {
    color: var(--primary-navy);
}

/* ========================================
   ENHANCED BUTTONS
   ======================================== */
.btn-primary,
.btn-primary-large {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
    text-decoration: none;
}

.btn-primary::before,
.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before,
.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.4);
}

.btn-secondary,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-premium);
    text-decoration: none;
}

.btn-secondary:hover,
.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Small button variants */
.btn-primary-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s var(--ease-premium);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 75, 0.3);
}

/* ========================================
   ENHANCED INSIGHT CARDS
   ======================================== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.insight-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-premium);
}

.insight-card:hover .insight-image img {
    transform: scale(1.08);
}

.insight-content {
    padding: 1.5rem;
}

.insight-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(212, 168, 75, 0.1);
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.insight-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.insight-card:hover .insight-content h3 {
    color: var(--primary-gold);
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.insight-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.insight-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.insight-link:hover {
    color: var(--primary-navy);
}

/* ========================================
   ENHANCED GLOBAL SECTION
   ======================================== */
.section-global {
    position: relative;
    background: var(--primary-navy);
    padding: 6rem 0;
    overflow: hidden;
}

.global-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
    animation: globalPulse 10s ease-in-out infinite alternate;
}

@keyframes globalPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.global-stat {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-premium);
}

.global-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 168, 75, 0.3);
    transform: translateY(-5px);
}

.global-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.global-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   ENHANCED CTA SECTION
   ======================================== */
.section-cta {
    position: relative;
    padding: 8rem 0;
    background: var(--primary-navy);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
}

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

.cta-content h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ENHANCED FOOTER
   ======================================== */
.footer {
    background: #0F2341;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    color: #ffffff;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Newsletter form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-contact svg {
    color: var(--primary-gold);
    width: 16px;
    height: 16px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--primary-navy);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-premium);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.3);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 168, 75, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .global-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: 0.1em;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #E2E8F0;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-navy);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* ========================================
   SECTION BACKGROUNDS
   ======================================== */
.section-services {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.section-industries {
    background: #ffffff;
}

.section-values {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-insights {
    background: #f8fafc;
}

.section-partners {
    background: #ffffff;
    padding: 4rem 0;
}

/* Partners carousel styling */
.partners-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    padding: 1.5rem 2rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

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

/* ========================================
   FILTER BUTTONS (Insights)
   ======================================== */
.insights-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(26, 54, 93, 0.2);
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    color: #ffffff;
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    transition: transform 0.5s var(--ease-premium);
}

.cookie-consent.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid rgba(26, 54, 93, 0.2);
    color: var(--text-secondary);
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid var(--primary-navy);
    color: var(--primary-navy);
}

.cookie-btn-confirm {
    background: var(--primary-gold);
    border: none;
    color: var(--primary-navy);
}

.cookie-btn-confirm:hover {
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
}
