/* =====================================================
   SPOROS WEALTH MANAGEMENT - PREMIUM STYLES
   ===================================================== */

:root {
    /* Premium Color Palette */
    --primary-gold: #D4A574;
    --primary-navy: #1B365D;
    --primary-dark: #0A1628;
    --accent-gold: #F4E4C1;
    --accent-sage: #86BAA1;
    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --text-light: #8895A7;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #E9ECEF;
    --border-light: #DEE2E6;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* =====================================================
   PREMIUM NAVIGATION
   ===================================================== */

.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.premium-nav.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-base);
}

.brand-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.brand-logo-image {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
    background: white;
    padding: 6px;
}

.brand-logo-image:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.brand-text-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-main-large {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
    font-family: var(--font-heading);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

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

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

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

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    padding: 20px 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: var(--transition-base);
    margin-top: 20px;
}

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

.dropdown-link {
    display: block;
    padding: 12px 25px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition-base);
}

.dropdown-link:hover {
    background: var(--bg-light);
    color: var(--primary-gold);
    padding-left: 30px;
}

/* Mega Menu */
.mega-menu {
    min-width: 600px;
    left: -200px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
}

.mega-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-column a {
    display: block;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-base);
}

.mega-column a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-button {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.client-login {
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.client-login:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-navy));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(27, 54, 93, 0.8) 0%,
        rgba(212, 165, 116, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line-2 {
    display: block;
    color: var(--accent-gold);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-number.five-stars {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2px !important;
    height: 43px !important; /* Same height as all stat-numbers */
    margin-bottom: 5px !important;
    background: none !important; /* Remove any background */
    border: none !important; /* Remove any border */
    box-shadow: none !important; /* Remove any shadow */
}

.stat-number.five-stars i {
    color: #F4E4C1 !important;
    font-size: 20px !important; /* Simple, clean star size */
    line-height: 1 !important;
}

/* Ensure all stat items have same structure and baseline alignment */
.stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* Make all stat-numbers the same baseline height */
.stat-number {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 43px !important; /* Fixed height for alignment */
    margin-bottom: 5px !important;
}

/* Make all stat-labels align consistently at same position */
.stat-item .stat-label {
    margin-top: 0 !important;
    position: relative !important;
    top: 0 !important;
}

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

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    color: var(--accent-gold);
    font-size: 20px;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-navy));
    color: white;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 165, 116, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--primary-navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* =====================================================
   AWARDS BANNER
   ===================================================== */

.awards-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.awards-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.award-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.award-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-badge {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-flex !important;
    gap: 3px !important;
    outline: none !important;
}

.star-badge i {
    color: #F4E4C1 !important;
    font-size: 20px !important;
    margin: 0 !important;
    text-shadow: none !important;
}

.award-text h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.award-text p {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.award-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--border-light),
        transparent
    );
}

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

.mentions-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.media-logos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media-logo {
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
}

.media-logo.orange-coast {
    color: #FF6B35;
    font-family: Georgia, serif;
}

.media-logo.bloomberg {
    color: #000;
    font-family: Arial, sans-serif;
}

.media-logo.wsj {
    color: #000;
    font-family: Georgia, serif;
    font-style: italic;
}

.media-logo:hover {
    opacity: 0.7;
}

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

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================
   INTRODUCTION SECTION
   ===================================================== */

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

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

.intro-content {
    padding-right: 40px;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.intro-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.intro-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visual-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(27, 54, 93, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 50px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.visual-card:hover .visual-overlay {
    opacity: 1;
}

.overlay-content h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* =====================================================
   SERVICES OVERVIEW
   ===================================================== */

.services-overview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-card.premium {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.service-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-navy);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.service-link {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

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

/* =====================================================
   PHILOSOPHY SECTION
   ===================================================== */

.philosophy-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--primary-dark);
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(27, 54, 93, 0.95) 0%,
        rgba(10, 22, 40, 0.95) 100%
    );
}

.philosophy-content {
    position: relative;
    z-index: 2;
    color: white;
}

.philosophy-section .section-label {
    color: var(--accent-gold);
}

.philosophy-section .section-title {
    color: white;
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

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

.philosophy-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.philosophy-item h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

.philosophy-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-style: italic;
}

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

.author-info h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.author-rating {
    display: flex;
    gap: 5px;
}

.author-rating i {
    color: var(--primary-gold);
    font-size: 16px;
}

.testimonials-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.review-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 14px;
}

.review-source i {
    color: #4285f4;
    font-size: 18px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-phone {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-phone:hover {
    color: white;
}

/* =====================================================
   FOOTER
   ===================================================== */

.premium-footer {
    background: var(--primary-dark);
    color: white;
}

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

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

.footer-logo-enhanced {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-brand-main {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.footer-brand-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-bottom {
    padding: 30px 0 20px 0;
}

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

.footer-disclosures p {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-disclosures a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-disclosures a:hover {
    color: white;
}

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

.footer-legal {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.legal-links a:hover {
    color: white;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.regulatory-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.regulatory-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

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

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

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

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

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

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 380px !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        z-index: 1000 !important;
        padding: 120px 40px 40px !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        border-left: 3px solid var(--primary-gold) !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        border: 3px solid red !important; /* DEBUG: Red border to see menu */
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1002 !important;
        background: rgba(255, 0, 0, 0.1) !important; /* Temporary red tint for debugging */
        cursor: pointer !important;
        pointer-events: auto !important;
    }
    
    /* Mobile menu header */
    .nav-menu.active::before {
        content: 'Navigation';
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(212, 165, 116, 0.2);
    }
    
    /* Clean Mobile menu styles */
    .nav-menu.active .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-menu.active .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(27, 54, 93, 0.1);
    }
    
    .nav-menu.active .nav-link {
        padding: 25px 0;
        font-size: 20px;
        font-weight: 500;
        color: var(--primary-dark);
        text-align: left;
        display: block;
        width: 100%;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .nav-menu.active .nav-link:hover {
        color: var(--primary-gold);
        background: rgba(212, 165, 116, 0.05);
    }
    
    .nav-menu.active .nav-link.active {
        color: var(--primary-gold);
        background: rgba(212, 165, 116, 0.1);
    }
    
    /* Hide all dropdown menus on mobile */
    .nav-menu.active .dropdown-menu {
        display: none !important;
    }
    
    .nav-menu.active .has-dropdown:hover .dropdown-menu {
        display: none !important;
    }
    
    /* Clean mobile nav actions */
    .nav-menu.active .nav-actions {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 2px solid rgba(27, 54, 93, 0.1);
    }
    
    .nav-menu.active .nav-button {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 15px 20px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .nav-menu.active .cta-button {
        background: linear-gradient(135deg, var(--primary-gold), var(--primary-navy));
        color: white;
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }
    
    /* Dark overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .intro-content {
        padding-right: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .brand-link {
        gap: 15px;
    }
    
    .brand-logo-image {
        width: 70px;
        height: 70px;
    }
    
    .brand-main-large {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .brand-tagline {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .footer-logo-enhanced {
        gap: 15px;
    }
    
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .footer-brand-main {
        font-size: 16px;
    }
    
    .footer-brand-sub {
        font-size: 9px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .awards-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .award-highlight {
        justify-content: center;
    }
    
    .award-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            var(--border-light),
            transparent
        );
        justify-self: center;
    }
    
    .media-logos {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}