/* Google Fonts Import - Poppins (Headings) & Inter (Body) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --color-primary-dark: #0a1e2e;
    --color-primary-light: #1a2e3e;

    --color-accent-teal: #45CDD3;
    /* Main Brand Color */
    --color-accent-teal-light: #70dfe4;

    --color-accent-coral: #EF6B6B;
    /* Secondary Brand Color */
    --color-accent-coral-light: #ff8a8a;

    --color-bg-offwhite: #FAFAFA;
    --color-bg-pure: #FFFFFF;

    /* Typography Integration - Strict 2-Font System */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Mapping for legacy variable support */
    --font-serif: 'Poppins', sans-serif;
    /* Replaced serif with Premium Heading font */
    --font-sans: 'Inter', sans-serif;
    /* Replaced sans with Readable Body font */

    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
    --shadow-elite: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Masterclass Glow Tokens */
    --glow-teal: 0 0 30px 2px rgba(69, 205, 211, 0.25);
    --glow-coral: 0 0 30px 2px rgba(239, 107, 107, 0.25);
    --glow-white: 0 0 20px 2px rgba(255, 255, 255, 0.15);
}

/* Base Typography overrides */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary-dark);
    background-color: var(--color-bg-offwhite);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    /* Increased for better readability */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Ensure paragraph readability */
p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Premium Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(42, 157, 143, 0.1);
    box-shadow: var(--shadow-soft);
}

.text-gradient-coral {
    background: linear-gradient(135deg, var(--color-accent-coral), var(--color-accent-coral-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-teal-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #0a1e2e, #2A9D8F);
    /* Navy to Teal deep gradient */
}

.bg-gradient-coral-soft {
    background: linear-gradient(135deg, #fff5f2, #fff);
}

.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(42, 157, 143, 0.4);
}

/* Section Spacing - Compacted */
.section-premium {
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .section-premium {
        padding: 5rem 2rem;
    }
}

/* Glow Effects */
.shadow-glow-teal {
    box-shadow: 0 0 20px rgba(42, 157, 143, 0.4), 0 0 0 1px rgba(42, 157, 143, 0.2);
    transition: all 0.4s ease;
}

.shadow-glow-teal:hover {
    box-shadow: 0 0 30px rgba(42, 157, 143, 0.6), 0 0 0 2px rgba(42, 157, 143, 0.4);
    transform: translateY(-5px);
}

.shadow-glow-coral {
    box-shadow: 0 0 20px rgba(231, 111, 81, 0.4), 0 0 0 1px rgba(231, 111, 81, 0.2);
    transition: all 0.4s ease;
}

.shadow-glow-coral:hover {
    box-shadow: 0 0 30px rgba(231, 111, 81, 0.6), 0 0 0 2px rgba(231, 111, 81, 0.4);
    transform: translateY(-5px);
}

.shadow-glow-purple {
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4), 0 0 0 1px rgba(167, 139, 250, 0.2);
    transition: all 0.4s ease;
}

.shadow-glow-purple:hover {
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.6), 0 0 0 2px rgba(167, 139, 250, 0.4);
    transform: translateY(-5px);
}

/* Custom Bullet List */
.list-check-teal li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.list-check-teal li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-teal);
    font-weight: 900;
}

.list-check-coral li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.list-check-coral li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-coral);
    font-weight: 900;
}

.list-check-purple li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.list-check-purple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A78BFA;
    font-weight: 900;
}

/* Premium Navigation Links */
.nav-link-premium {
    position: relative;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-teal-light));
    transition: width 0.3s ease;
}

.nav-link-premium:hover {
    color: var(--color-accent-teal);
}

.nav-link-premium:hover::after {
    width: 100%;
}

/* Premium Header Button */
.btn-premium-header {
    background: linear-gradient(135deg, var(--color-accent-teal), #1d7c70);
    color: white;
    border-radius: 9999px;
    /* Pill shape */
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
    font-family: var(--font-heading);
}

.btn-premium-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 205, 211, 0.5);
    /* Updated color rgba */
    background: linear-gradient(135deg, #3bbac0, var(--color-accent-teal));
}

/* Compact Premium Navigation System */
.nav-compact-premium {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(69, 205, 211, 0.1);
}

.nav-compact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Compact Logo */
.logo-compact-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.logo-compact-premium:hover {
    transform: translateY(-1px);
}

.logo-compact-premium img {
    height: 48px;
    width: auto;
}

.logo-text-compact {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-compact .brand-name {
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.01em;
}

.logo-text-compact .brand-name .accent {
    color: var(--color-accent-teal);
}

.logo-text-compact .tagline {
    font-size: 0.563rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-heading);
}

/* Compact Navigation Links */
.nav-links-compact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link-compact {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    /* Slightly increased for Poppins readability */
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Adjusted for Poppins */
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-coral));
    transition: width 0.3s ease;
}

.nav-link-compact:hover {
    color: var(--color-accent-teal);
}

.nav-link-compact:hover::after {
    width: 100%;
}

.nav-link-compact.active {
    color: var(--color-accent-teal);
}

.nav-link-compact.active::after {
    width: 100%;
}

/* Compact Dropdown */
.dropdown-compact {
    position: relative;
}

.dropdown-compact-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-compact-trigger i {
    font-size: 0.5rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.dropdown-compact:hover .dropdown-compact-trigger i {
    transform: rotate(180deg);
}

.dropdown-compact-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

.dropdown-compact:hover .dropdown-compact-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.5rem);
}

.dropdown-compact-item {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.813rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    font-family: var(--font-body);
}

.dropdown-compact-item:hover {
    background: linear-gradient(90deg, rgba(69, 205, 211, 0.05), transparent);
    color: var(--color-accent-teal);
    border-left-color: var(--color-accent-teal);
    padding-left: 1.5rem;
}

/* Compact CTA */
.cta-compact-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-accent-teal) 0%, #3bb5bb 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(69, 205, 211, 0.25);
    font-family: var(--font-heading);
}

.cta-compact-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(69, 205, 211, 0.4), 0 0 20px rgba(69, 205, 211, 0.2);
    background: linear-gradient(135deg, #3bb5bb 0%, var(--color-accent-teal) 100%);
}

.cta-compact-premium i {
    width: 14px;
    height: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn-compact {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn-compact:hover {
    background: rgba(69, 205, 211, 0.1);
    color: var(--color-accent-teal);
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .nav-links-compact {
        display: none;
    }

    .mobile-menu-btn-compact {
        display: flex;
    }

    .cta-compact-premium {
        display: none;
    }
}

.nav-cta-button {
    background-color: var(--color-accent-coral);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    font-family: var(--font-heading);
}

.nav-cta-button:hover {
    background-color: #d65a5a;
}

.nav-item-active {
    color: var(--color-accent-teal) !important;
}

/* Professional Footer Overrides */
.footer-professional {
    background-color: #000000 !important;
    border-top: none;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-newsletter-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent-teal);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Compact Premium Footer */
.footer-compact-premium {
    background: #000000 !important;
    border-top: 1px solid rgba(69, 205, 211, 0.1);
    padding: 3rem 0 1.5rem;
    font-family: var(--font-body);
}

.footer-compact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-compact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .footer-compact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-compact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Brand */
.footer-brand-compact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand-compact img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline-compact {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 320px;
    font-family: var(--font-body);
}

.footer-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-badge-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    font-family: var(--font-heading);
}

.trust-badge-compact i {
    width: 14px;
    height: 14px;
    color: var(--color-accent-teal);
}

/* Footer Headings */
.footer-heading-compact {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* Footer Links */
.footer-links-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-compact {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: var(--font-body);
}

.footer-link-compact:hover {
    color: var(--color-accent-teal);
    transform: translateX(4px);
}

/* Footer Social */
.footer-social-compact {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link-compact {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-link-compact:hover {
    background: var(--color-accent-teal);
    border-color: var(--color-accent-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(69, 205, 211, 0.3);
}

.social-link-compact i {
    width: 16px;
    height: 16px;
}

/* Footer Bottom */
.footer-bottom-compact {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-copyright-compact {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: var(--font-heading);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.footer-legal-link:hover {
    color: var(--color-accent-teal);
}

/* Footer Contact */
.footer-contact-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-phone-compact {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.footer-phone-compact:hover {
    color: var(--color-accent-teal);
}

/* Compact Premium Hero Section */
.hero-compact-premium {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 140px;
}

.hero-compact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-compact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-compact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(69, 205, 211, 0.15) 100%);
}

.hero-compact-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-compact-inner {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Badge */
.hero-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.95);
    width: fit-content;
    font-family: var(--font-heading);
}

.hero-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-teal);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Hero Heading */
.hero-heading-compact {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
}

.hero-heading-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-accent-teal) 0%, #3bb5bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-heading-compact {
        font-size: 2.5rem;
    }
}

/* Hero Description */
.hero-description-compact {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 500px;
    font-family: var(--font-body);
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-cta-primary {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--color-accent-teal);
    color: white;
    font-size: 0.938rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 205, 211, 0.3);
    font-family: var(--font-heading);
}

.hero-cta-primary:hover {
    background: #3bb5bb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 205, 211, 0.4);
}

.hero-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.938rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats-compact {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    /* Prevent overlap */
}

@media (max-width: 640px) {
    .hero-stats-compact {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

/* Top Bar Styles */
/* Top Bar Styles */
@keyframes topBarGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.top-bar-premium {
    background: linear-gradient(270deg, #05101a, #0d3b45, #05101a);
    background-size: 200% 200%;
    animation: topBarGradient 15s ease infinite;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.top-bar-item:last-child {
    margin-left: auto;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-item:hover {
    color: #4CC6C6;
}

.top-bar-item i {
    width: 14px;
    height: 14px;
    color: #4CC6C6;
}

/* Show on desktop */
@media (min-width: 1024px) {
    .top-bar-premium {
        display: block;
    }

    .nav-compact-premium {
        top: 36px;
        /* Height of top bar approx */
        transition: top 0.3s;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, #0a1e2e 0%, #1a3e5e 50%, #0a1e2e 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 6rem 2rem;
    }
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(69, 205, 211, 0.5);
    box-shadow: 0 25px 50px -12px rgba(69, 205, 211, 0.25);
}

.testimonial-card.coral:hover {
    border-color: rgba(231, 111, 81, 0.5);
    box-shadow: 0 25px 50px -12px rgba(231, 111, 81, 0.25);
}

/* Star Rating */
.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i,
.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #F4D03F;
    fill: #F4D03F;
}

/* Quote Text */
.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 0;
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(69, 205, 211, 0.3);
    line-height: 1;
}

.testimonial-quote p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A9D8F, #4CC6C6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    font-family: var(--font-heading);
}

.testimonial-avatar.coral {
    background: linear-gradient(135deg, #E76F51, #F47474);
}

.testimonial-avatar.cyan {
    background: linear-gradient(135deg, #4CC6C6, #2A9D8F);
}

.testimonial-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.125rem;
    font-family: var(--font-heading);
}

.testimonial-role {
    color: #2A9D8F;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-role.coral {
    color: #E76F51;
}

.testimonial-role.cyan {
    color: #4CC6C6;
}

/* Grid Layout for Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Decorative Background Blurs */
.testimonial-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.testimonial-bg-blur.teal {
    background: #2A9D8F;
    width: 24rem;
    height: 24rem;
    top: -12rem;
    left: -12rem;
}

.testimonial-bg-blur.coral {
    background: #E76F51;
    width: 24rem;
    height: 24rem;
    bottom: -12rem;
    right: -12rem;
}