/* ============================================
   PRIME TECH LINKS - LUXURY PREMIUM DESIGN
   Elite Business Solutions Platform
   ============================================ */

:root {
    /* Luxury Color Palette */
    --luxury-gold: #D4AF37;
    --luxury-gold-dark: #B8941E;
    --luxury-gold-light: #F4E5B8;
    --deep-navy: #0A1931;
    --royal-blue: #1854A3;
    --platinum: #E5E4E2;
    --charcoal: #36454F;
    --pure-white: #FFFFFF;
    
    /* Division Colors - Premium Versions */
    --real-estate-premium: #0D9488;
    --ict-premium: #0891B2;
    --fire-premium: #DC2626;
    --marketing-premium: #9333EA;
    --outsourcing-premium: #2563EB;
    
    /* Gradients */
    --luxury-gradient: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    --gold-gradient: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    --premium-overlay: linear-gradient(135deg, rgba(10, 25, 49, 0.95) 0%, rgba(24, 84, 163, 0.9) 100%);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --font-arabic: 'Tajawal', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1400px;
    
    /* Shadows */
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 25px 70px rgba(212, 175, 55, 0.3);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

body {
    font-family: var(--font-secondary);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--pure-white);
}

body.rtl {
    font-family: var(--font-arabic);
    direction: rtl;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

h1 {
    font-size: 4.5rem;
    letter-spacing: -2px;
}

h2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 2rem;
}

.luxury-title {
    position: relative;
    display: inline-block;
}

.luxury-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--luxury-gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.9;
}

/* ============================================
   NAVIGATION - LUXURY PREMIUM
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 49, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 25, 49, 1);
    box-shadow: var(--shadow-luxury);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    mix-blend-mode: normal;
    opacity: 1;
    filter: brightness(1.05) contrast(1.05) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
    display: block;
}

.logo:hover img {
    transform: scale(1.05) translateY(-1px);
    filter: brightness(1.1) contrast(1.08) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

/* Fallback for icon-based logo */
.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--pure-white);
    font-weight: bold;
}

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

.logo-text .brand-name {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: 1px;
}

.logo-text .brand-tagline {
    font-size: 0.75rem;
    color: var(--luxury-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 25px;
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link:hover {
    color: var(--luxury-gold);
}

.nav-link i {
    font-size: 0.85rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 25, 49, 0.98);
    backdrop-filter: blur(20px);
    min-width: 280px;
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.dropdown-item {
    display: block;
    padding: 14px 25px;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.dropdown-item i {
    margin-right: 12px;
    color: var(--luxury-gold);
    width: 20px;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--luxury-gold);
    padding-left: 35px;
}

/* Language Switcher */
.lang-switcher {
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn:hover {
    background: var(--luxury-gold);
    color: var(--deep-navy);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--pure-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ============================================
   HERO SECTION - LUXURY
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--luxury-gradient);
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(24, 84, 163, 0.2) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--luxury-gold) 35px, var(--luxury-gold) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--luxury-gold) 35px, var(--luxury-gold) 36px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--luxury-gold);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--luxury-gold);
}

.hero-badge span {
    color: var(--luxury-gold);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--pure-white);
    margin-bottom: 30px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

/* ============================================
   BUTTONS - LUXURY
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-luxury);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--deep-navy);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
}

.btn-outline:hover {
    background: var(--luxury-gold);
    color: var(--deep-navy);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header .subtitle {
    color: var(--luxury-gold);
}

.section-header h2 {
    margin-bottom: 25px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* ============================================
   CARDS - LUXURY
   ============================================ */

.card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-luxury);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: var(--luxury-gold);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover .card-icon::after {
    opacity: 1;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--deep-navy);
}

.card p {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--luxury-gradient);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="rgba(212,175,55,0.1)" d="M0,0 L50,20 L100,10 L150,30 L200,20 L250,35 L300,25 L350,40 L400,30 L450,45 L500,35 L550,50 L600,40 L650,55 L700,45 L750,60 L800,50 L850,65 L900,55 L950,70 L1000,60 L1050,75 L1100,65 L1150,80 L1200,70 L1200,120 L0,120 Z"></path></svg>') repeat-x;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: var(--font-primary);
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* ============================================
   PREMIUM BADGE
   ============================================ */

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--deep-navy);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ============================================
   FOOTER - LUXURY
   ============================================ */

footer {
    background: var(--deep-navy);
    color: var(--pure-white);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: var(--pure-white);
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-title {
    color: var(--luxury-gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--luxury-gold);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--luxury-gold);
    color: var(--deep-navy);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--luxury-gold);
}

.bg-light {
    background: #F8F9FA;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.py-5 { padding: 60px 0; }
.py-6 { padding: 80px 0; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 2rem; }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 25, 49, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .stat-number { font-size: 3rem; }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROFESSIONAL ENHANCED STYLES
   For About, Services, Case Studies Pages
   ============================================ */

/* Glass-morphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-luxury);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--luxury-gold);
}

/* Luxury Cards */
.luxury-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
}

.luxury-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    transition: var(--transition-smooth);
    border-radius: 20px;
}

.luxury-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.luxury-card:hover::after {
    width: 100%;
}

.luxury-card .card-icon {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.luxury-card h3 {
    font-size: 1.75rem;
    margin-bottom: 18px;
    color: var(--deep-navy);
}

.luxury-card p,
.luxury-card ul {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 1.05rem;
}

.luxury-card ul {
    list-style: none;
    padding: 0;
}

.luxury-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.luxury-card ul li:last-child {
    border-bottom: none;
}

.luxury-card ul li i {
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

/* Value Cards (Core Values) */
.value-card {
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
    border-top-color: var(--luxury-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.05) 0%, rgba(10, 25, 49, 0.02) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    transform: rotate(360deg) scale(1.1);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-navy);
}

.value-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1rem;
}

/* Modern Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 80px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--luxury-gold);
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    width: 45%;
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.timeline-content:hover {
    border-color: var(--luxury-gold);
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
}

.timeline-year {
    display: inline-block;
    background: var(--gold-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.timeline-content p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-luxury);
    border: 2px solid transparent;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--luxury-gold);
}

.team-image {
    height: 220px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--luxury-gold);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.team-card:hover .team-image::before {
    opacity: 1;
}

.team-card:hover .team-image i {
    transform: scale(1.1);
}

.team-info {
    padding: 30px 25px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--deep-navy);
}

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

.team-bio {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Organizational Structure */
.organizational-structure {
    padding: 40px 0;
}

.org-level {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.org-level.divisions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto 50px;
}

.org-card {
    background: white;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 3px solid transparent;
    position: relative;
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 18px 18px 0 0;
}

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

.org-card.headquarters {
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
}

.org-card.division:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold);
}

.org-card.subsidiary {
    border-color: var(--royal-blue);
}

.org-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.org-card.headquarters .org-icon {
    background: var(--gold-gradient);
    color: white;
}

.org-card h3,
.org-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--deep-navy);
}

.org-card p {
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Service Divisions */
.service-division {
    padding: 60px 0;
    position: relative;
}

.division-content {
    padding: 30px 0;
}

.division-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
}

.division-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--deep-navy);
}

.division-content p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.service-item {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.service-item:hover {
    transform: translateX(8px);
    border-left-color: var(--luxury-gold);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 15px;
    display: block;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.service-item p {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--luxury-gold) 50%, transparent 100%);
    margin: 80px auto;
    max-width: 600px;
    opacity: 0.3;
}

/* Case Studies */
.case-study-featured {
    background: white;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.case-study-featured:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.case-image-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.case-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-tags .tag {
    background: var(--luxury-gold);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.case-study-content {
    padding: 20px 0;
}

.case-study-content h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--deep-navy);
}

.case-subtitle {
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-challenge,
.case-solution,
.case-results {
    margin-bottom: 30px;
}

.case-challenge h4,
.case-solution h4,
.case-results h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-navy);
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-challenge h4::before {
    content: '⚡';
    font-size: 1.8rem;
}

.case-solution h4::before {
    content: '💡';
    font-size: 1.8rem;
}

.case-results h4::before {
    content: '🏆';
    font-size: 1.8rem;
}

.case-challenge p,
.case-solution ul {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 1.05rem;
}

.case-solution ul {
    list-style: none;
    padding: 0;
}

.case-solution ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.case-solution ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxury-gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.results-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.result-metric {
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-radius: 16px;
    padding: 25px 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.result-metric:hover {
    transform: scale(1.05);
    border-color: var(--luxury-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.4;
}

/* Results Grid (Stats Section Alternative) */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.result-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--luxury-gold);
}

.result-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.result-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: var(--font-primary);
    margin-bottom: 10px;
}

.result-label {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.85;
    font-weight: 500;
}

/* Section Backgrounds */
.section {
    padding: 100px 0;
}

.section.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--deep-navy);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
    max-width: 800px;
}

/* Hero Sections for Pages */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    margin-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 49, 0.4);
}

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

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer Specific */
.footer {
    background: var(--deep-navy);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--luxury-gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--luxury-gold);
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    z-index: 9999;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--gold-gradient);
    transform: rotate(360deg) scale(1.1);
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

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

.benefit-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1rem;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.process-step {
    position: relative;
    padding: 35px 30px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--luxury-gold);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.step-content p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1rem;
}

/* Industry Cards */
.industry-card {
    background: white;
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    margin-bottom: 30px;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--luxury-gold);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.industry-card i {
    font-size: 3.5rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition-smooth);
}

.industry-card:hover i {
    transform: scale(1.2);
    color: var(--luxury-gold-dark);
}

.industry-card h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin: 0;
}

/* Case Study Cards (Compact) */
.case-study-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.case-study-card:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
}

.case-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tag-small {
    background: rgba(212, 175, 55, 0.15);
    color: var(--luxury-gold-dark);
    padding: 4px 14px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.case-study-card h3 {
    font-size: 1.6rem;
    margin: 20px 0 15px;
    color: var(--deep-navy);
}

.case-study-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 25px;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.15);
}

.mini-metric {
    text-align: center;
    flex: 1;
}

.mini-metric strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: var(--font-primary);
    margin-bottom: 5px;
}

.mini-metric span {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.75;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--luxury-gold);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--luxury-gold);
    font-size: 1.2rem;
    margin-right: 4px;
}

.testimonial-text {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 700;
    color: var(--deep-navy);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.author-title {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 0.9rem;
}

/* Award Cards */
.award-card {
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--luxury-gold);
    margin-bottom: 30px;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.25);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.award-icon i {
    font-size: 2.8rem;
    color: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.award-card:hover .award-icon {
    background: var(--gold-gradient);
    transform: rotate(360deg) scale(1.1);
}

.award-card:hover .award-icon i {
    color: white;
}

.award-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--deep-navy);
    line-height: 1.4;
}

.award-card p {
    color: var(--luxury-gold-dark);
    opacity: 0.85;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin-left: 80px;
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .glass-card,
    .luxury-card {
        padding: 35px 25px;
    }
    
    .case-study-featured {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .results-row {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .timeline-content {
        margin-left: 60px;
        padding-left: 25px;
    }
}
