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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9ba8;
    --accent-color: #7fb3b8;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(44, 95, 124, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes quote-image-pan {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-12px, -8px);
    }
    100% {
        transform: scale(1.04) translate(8px, 4px);
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-down {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(-100px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(20px, -20px) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
        transform: translate(10px, 10px) scale(1.05);
    }
}

@keyframes wave-animation {
    0% {
        transform: translateX(-100%) translateY(0);
    }
    50% {
        transform: translateX(0) translateY(-20px);
    }
    100% {
        transform: translateX(100%) translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes rotate-3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: rotateX(90deg) rotateY(90deg) rotateZ(45deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(180deg) rotateZ(90deg);
    }
    75% {
        transform: rotateX(270deg) rotateY(270deg) rotateZ(135deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }
}

@keyframes zigzag {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 40px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes spin-pulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.5;
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes explode {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes shimmer-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(44, 95, 124, 0.3),
                    0 0 40px rgba(74, 155, 168, 0.2),
                    0 0 60px rgba(127, 179, 184, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(44, 95, 124, 0.6),
                    0 0 80px rgba(74, 155, 168, 0.4),
                    0 0 120px rgba(127, 179, 184, 0.3);
    }
}

@keyframes color-shift {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(180deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes elastic-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-30px) scale(1.1);
    }
    50% {
        transform: translateY(0) scale(0.95);
    }
    75% {
        transform: translateY(-15px) scale(1.05);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.5s ease;
}

.navbar:hover .nav-container::after {
    width: 80%;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.02em;
    display: inline-block;
}

.logo a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover::before {
    width: 100%;
}

.logo a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

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

.nav-menu li {
    position: relative;
}

.nav-menu > li:not(:last-child) {
    margin-right: 0.2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    overflow: hidden;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44, 95, 124, 0.1), 
        rgba(74, 155, 168, 0.1));
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(44, 95, 124, 0.15), 
        rgba(74, 155, 168, 0.15));
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
}

.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 80%;
}

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

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, 
        rgba(44, 95, 124, 0.1), 
        rgba(74, 155, 168, 0.1));
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 1.75rem;
}

.dropdown-menu a:hover::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    display: block;
}

.dropdown-menu a.active {
    background: linear-gradient(135deg, 
        rgba(44, 95, 124, 0.15), 
        rgba(74, 155, 168, 0.15));
    color: var(--primary-color);
    font-weight: 600;
    padding-left: 1.75rem;
}

.dropdown-menu a.active::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    display: block;
}

/* CTA Button in Nav */
.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: 0.65rem 1.3rem !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
    margin-left: 0.5rem;
}

.nav-cta::before,
.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.4);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8ed 50%, #c0dce2 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: 
        radial-gradient(circle at 20% 50%, rgba(44, 95, 124, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 155, 168, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(127, 179, 184, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(44, 95, 124, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    will-change: transform;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.3), rgba(74, 155, 168, 0.3));
    top: 10%;
    left: 10%;
    animation: morph 20s ease-in-out infinite, drift 25s ease-in-out infinite, breathe 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(74, 155, 168, 0.3), rgba(127, 179, 184, 0.3));
    top: 60%;
    right: 15%;
    animation: morph 18s ease-in-out infinite reverse, drift 22s ease-in-out infinite reverse, spin-pulse 12s linear infinite;
    animation-delay: -5s;
    transform-style: preserve-3d;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(127, 179, 184, 0.3), rgba(44, 95, 124, 0.3));
    bottom: 20%;
    left: 20%;
    animation: morph 22s ease-in-out infinite, zigzag 15s ease-in-out infinite, color-shift 20s linear infinite;
    animation-delay: -10s;
    transform-style: preserve-3d;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.2), rgba(74, 155, 168, 0.2));
    top: 30%;
    right: 30%;
    animation: morph 25s ease-in-out infinite reverse, drift 30s ease-in-out infinite reverse, breathe 10s ease-in-out infinite;
    animation-delay: -8s;
    transform-style: preserve-3d;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(74, 155, 168, 0.25), rgba(127, 179, 184, 0.25));
    bottom: 10%;
    right: 10%;
    animation: morph 16s ease-in-out infinite, elastic-bounce 6s ease-in-out infinite, rotate-3d 20s linear infinite;
    animation-delay: -12s;
    transform-style: preserve-3d;
}

.shape-6 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(127, 179, 184, 0.25), rgba(44, 95, 124, 0.25));
    top: 50%;
    left: 5%;
    animation: morph 19s ease-in-out infinite reverse, drift 24s ease-in-out infinite reverse, spin-pulse 14s linear infinite;
    animation-delay: -15s;
    transform-style: preserve-3d;
}

.shape-7 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.25), rgba(127, 179, 184, 0.25));
    top: 15%;
    right: 5%;
    animation: explode 8s ease-in-out infinite, rotate-3d 25s linear infinite;
    animation-delay: -3s;
    transform-style: preserve-3d;
}

.shape-8 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(74, 155, 168, 0.3), rgba(44, 95, 124, 0.3));
    bottom: 30%;
    right: 25%;
    animation: zigzag 18s ease-in-out infinite, breathe 7s ease-in-out infinite, color-shift 15s linear infinite;
    animation-delay: -7s;
    transform-style: preserve-3d;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(44, 95, 124, 0.5);
    will-change: transform;
    animation: shimmer-glow 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation: float-up 20s linear infinite, spin-pulse 3s linear infinite, shimmer-glow 2s ease-in-out infinite;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    box-shadow: 0 0 15px rgba(74, 155, 168, 0.8);
}

.particle:nth-child(2) {
    left: 20%;
    animation: float-up 25s linear infinite;
    animation-delay: -2s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(3) {
    left: 30%;
    animation: float-down 22s linear infinite, elastic-bounce 4s ease-in-out infinite, color-shift 8s linear infinite;
    animation-delay: -4s;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    box-shadow: 0 0 12px rgba(127, 179, 184, 0.7);
}

.particle:nth-child(4) {
    left: 40%;
    animation: float-up 28s linear infinite;
    animation-delay: -6s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(5) {
    left: 50%;
    animation: float-down 24s linear infinite, rotate-3d 6s linear infinite, shimmer-glow 2.5s ease-in-out infinite;
    animation-delay: -8s;
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    box-shadow: 0 0 18px rgba(74, 155, 168, 0.9);
}

.particle:nth-child(6) {
    left: 60%;
    animation: float-up 26s linear infinite;
    animation-delay: -10s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(7) {
    left: 70%;
    animation: float-down 23s linear infinite;
    animation-delay: -12s;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
}

.particle:nth-child(8) {
    left: 80%;
    animation: float-up 27s linear infinite;
    animation-delay: -14s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(9) {
    left: 90%;
    animation: float-down 21s linear infinite;
    animation-delay: -16s;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
}

.particle:nth-child(10) {
    left: 15%;
    animation: float-up 29s linear infinite;
    animation-delay: -18s;
    width: 6px;
    height: 6px;
}

/* Hero Waves */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(44, 95, 124, 0.1) 50%, 
        transparent 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    animation: wave-animation 15s ease-in-out infinite;
}

.wave-1 {
    height: 150px;
    animation-duration: 20s;
    opacity: 0.6;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(44, 95, 124, 0.15) 50%, 
        transparent 100%);
}

.wave-2 {
    height: 120px;
    animation-duration: 18s;
    animation-delay: -5s;
    opacity: 0.4;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(74, 155, 168, 0.12) 50%, 
        transparent 100%);
}

.wave-3 {
    height: 100px;
    animation-duration: 22s;
    animation-delay: -10s;
    opacity: 0.3;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(127, 179, 184, 0.1) 50%, 
        transparent 100%);
}

/* Orbiting Elements */
.orbiting-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 30px rgba(44, 95, 124, 0.6),
                0 0 60px rgba(74, 155, 168, 0.4);
    animation: orbit 15s linear infinite, breathe 4s ease-in-out infinite;
    transform-origin: 0 0;
}

.orbit-1 {
    width: 25px;
    height: 25px;
    animation: orbit 20s linear infinite, spin-pulse 5s linear infinite;
    transform: translate(-50%, -50%) translateX(150px);
}

.orbit-2 {
    width: 18px;
    height: 18px;
    animation: orbit 25s linear infinite reverse, breathe 3s ease-in-out infinite;
    animation-delay: -5s;
    transform: translate(-50%, -50%) translateX(200px);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.orbit-3 {
    width: 22px;
    height: 22px;
    animation: orbit 18s linear infinite, elastic-bounce 6s ease-in-out infinite;
    animation-delay: -10s;
    transform: translate(-50%, -50%) translateX(120px);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Glowing Orbs */
.glowing-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: breathe 6s ease-in-out infinite, drift 30s ease-in-out infinite;
    will-change: transform, opacity;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 95, 124, 0.4), transparent 70%);
    top: 20%;
    left: 15%;
    animation: breathe 8s ease-in-out infinite, drift 35s ease-in-out infinite, shimmer-glow 5s ease-in-out infinite;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74, 155, 168, 0.4), transparent 70%);
    bottom: 25%;
    right: 20%;
    animation: breathe 7s ease-in-out infinite, drift 32s ease-in-out infinite reverse, color-shift 12s linear infinite;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 179, 184, 0.35), transparent 70%);
    top: 60%;
    left: 50%;
    animation: breathe 9s ease-in-out infinite, zigzag 20s ease-in-out infinite, spin-pulse 10s linear infinite;
    animation-delay: -8s;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-portrait {
    display: flex;
    justify-content: center;
}

.portrait-frame {
    width: 320px;
    height: 420px;
    border-radius: 30px;
    padding: 12px;
    background: linear-gradient(160deg, rgba(44, 95, 124, 0.6), rgba(127, 179, 184, 0.5));
    box-shadow: 0 25px 60px rgba(44, 95, 124, 0.3);
    position: relative;
    overflow: hidden;
}

.portrait-frame::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.8s ease-out 0.2s both;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out both;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.title-line:nth-child(3) {
    animation-delay: 0.7s;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 1s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.9s both;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-text-stroke: 1px black;
    text-stroke: 1px black;
    paint-order: stroke fill;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 1.1s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 1.3s both;
    flex-wrap: wrap;
}

.hero-author {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    animation: fadeIn 1s ease-out 1.5s both;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.hero {
    padding: 3rem 2rem 6rem;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Quote Card */
.quote-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 247, 248, 0.9));
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    margin: 3rem 0;
    box-shadow: 0 20px 50px rgba(44, 95, 124, 0.18);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 2.5rem;
    align-items: stretch;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    animation: slideInLeft 0.8s ease-out;
}

.quote-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(74, 155, 168, 0.2), transparent 55%);
    z-index: -1;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(44, 95, 124, 0.2);
}

.quote-content {
    position: relative;
    padding-right: 1rem;
}

.quote-icon {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: Georgia, serif;
    line-height: 1;
    animation: fadeIn 1s ease-out;
    pointer-events: none;
}

.quote-card blockquote {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    margin: 0;
    border-left: 4px solid rgba(44, 95, 124, 0.2);
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-text + .quote-text {
    padding-top: 1rem;
    border-top: 1px solid rgba(44, 95, 124, 0.1);
}

.quote-author {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(44, 95, 124, 0.1);
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-end;
}

.quote-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    box-shadow: 0 20px 45px rgba(44, 95, 124, 0.2);
}

.quote-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.15), rgba(0, 0, 0, 0.35));
    opacity: 0.7;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: quote-image-pan 25s ease-in-out infinite;
    transform-origin: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Button */
.cta-section {
    text-align: center;
    position: relative;
    isolation: isolate;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(74, 155, 168, 0.18);
    filter: blur(35px);
    z-index: -1;
    opacity: 0.7;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.cta-section::before {
    top: -60px;
    left: -40px;
}

.cta-section::after {
    bottom: -80px;
    right: -20px;
}

.cta-section:hover::before {
    transform: translate(10px, 10px) scale(1.05);
    opacity: 0.8;
}

.cta-section:hover::after {
    transform: translate(-10px, -10px) scale(1.05);
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.large {
    padding: 1.35rem 3.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(44, 95, 124, 0.3);
    background: #2c5f7c;
    color: #ffffff;
    border: none;
    background-image: none;
}

.cta-button.large::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(44, 95, 124, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Awards Section */
.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 32px;
    background: radial-gradient(circle at top, rgba(44, 95, 124, 0.08), rgba(127, 179, 184, 0.05));
    border: 1px solid rgba(44, 95, 124, 0.12);
    box-shadow: 0 25px 60px rgba(44, 95, 124, 0.12);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.awards-row {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.awards-row-top {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.awards-row-bottom {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.awards-row-bottom .award-card {
    flex: 1 1 280px;
    max-width: 360px;
}

.awards-grid::before,
.awards-grid::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(74, 155, 168, 0.15);
    filter: blur(40px);
    z-index: 0;
}

.awards-grid::before {
    top: -80px;
    left: -60px;
}

.awards-grid::after {
    bottom: -100px;
    right: -40px;
}

.award-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.award-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(44, 95, 124, 0.2);
}

.award-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.award-card:nth-child(2) .award-icon {
    animation-delay: 0.5s;
}

.award-card:nth-child(3) .award-icon {
    animation-delay: 1s;
}

.award-card:nth-child(4) .award-icon {
    animation-delay: 1.5s;
}

.award-card:nth-child(5) .award-icon {
    animation-delay: 2s;
}

.award-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.award-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.award-years {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Publications Section */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.08), rgba(127, 179, 184, 0.08));
    border: 1px solid rgba(44, 95, 124, 0.12);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.publications-grid::before,
.publications-grid::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(74, 155, 168, 0.18);
    filter: blur(35px);
    z-index: 0;
}

.publications-grid::before {
    top: -80px;
    right: -60px;
}

.publications-grid::after {
    bottom: -100px;
    left: -40px;
}

.publication-card {
    --card-accent: var(--primary-color);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(232, 247, 248, 0.9));
    backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 55px rgba(44, 95, 124, 0.18);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.publication-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 95, 124, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.publication-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--card-accent), rgba(127, 179, 184, 0.8));
}

.publication-card:nth-child(2) {
    --card-accent: #4a9ba8;
}

.publication-card:nth-child(3) {
    --card-accent: #7fb3b8;
}

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

.publication-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 35px 70px rgba(44, 95, 124, 0.25);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.card-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--card-accent), rgba(74, 155, 168, 0.7));
    color: white;
    box-shadow: 0 10px 25px rgba(44, 95, 124, 0.2);
    animation: float 4s ease-in-out infinite;
}

.card-header h3 {
    color: var(--card-accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 95, 124, 0.08);
}

.book-item:hover {
    background: rgba(44, 95, 124, 0.08);
    transform: translateX(12px);
    box-shadow: 0 10px 25px rgba(44, 95, 124, 0.15);
}

.book-item:last-child {
    margin-bottom: 0;
}

.book-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.book-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.speaking-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 95, 124, 0.08);
}

.speaking-item:hover {
    background: rgba(44, 95, 124, 0.08);
    transform: translateX(12px);
    box-shadow: 0 10px 25px rgba(44, 95, 124, 0.15);
}

.speaking-item.highlight-item {
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.15), rgba(74, 155, 168, 0.15));
    border: 2px solid var(--card-accent);
    box-shadow: inset 0 0 20px rgba(44, 95, 124, 0.1);
}

.speaking-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.speaking-topic {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
}

.speaking-venues {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Editorial Section */
.editorial-container {
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 32px;
    background: linear-gradient(120deg, rgba(44, 95, 124, 0.08), rgba(74, 155, 168, 0.08));
    border: 1px solid rgba(44, 95, 124, 0.12);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.editorial-column {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 2.8rem;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(44, 95, 124, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.editorial-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.editorial-column:hover::before {
    transform: scaleY(1);
}

.editorial-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(44, 95, 124, 0.2);
}

.editorial-column ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.editorial-column li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.2rem;
}

.editorial-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--primary-color);
    opacity: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

.editorial-column li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.editorial-column li:last-child {
    border-bottom: none;
}

.editorial-column li:hover {
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(8px);
}

.media-name {
    font-weight: 500;
    transition: all 0.3s ease;
}

.editorial-container::before,
.editorial-container::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(127, 179, 184, 0.2);
    filter: blur(40px);
    z-index: 0;
}

.editorial-container::before {
    top: -80px;
    right: -60px;
}

.editorial-container::after {
    bottom: -90px;
    left: -50px;
}

.media-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Fancy Page Header */
.fancy-page-header {
    position: relative;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8ed 50%, #c0dce2 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    padding: 8rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.fancy-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(44, 95, 124, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 155, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(127, 179, 184, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.fancy-page-header .header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fancy-page-header .header-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: morph 20s ease-in-out infinite, drift 25s ease-in-out infinite;
}

.fancy-page-header .header-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.3), rgba(74, 155, 168, 0.3));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.fancy-page-header .header-shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(74, 155, 168, 0.3), rgba(127, 179, 184, 0.3));
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.fancy-page-header .header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.fancy-page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(44, 95, 124, 0.2);
}

.fancy-page-header .header-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fancy-page-header .header-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite, scaleIn 0.8s ease-out;
}

/* Page Content */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.page-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Enhanced Content Cards */
.fancy-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.fancy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.fancy-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 95, 124, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.fancy-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(44, 95, 124, 0.2);
}

.fancy-card h2,
.fancy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.fancy-card h2 {
    font-size: 2rem;
}

.fancy-card h3 {
    font-size: 1.5rem;
}

.fancy-card p {
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.fancy-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Grid */
.fancy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.fancy-grid-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fancy-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.fancy-grid-item:hover::before {
    transform: scaleY(1);
}

.fancy-grid-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 50px rgba(44, 95, 124, 0.2);
}

.fancy-grid-item .item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.fancy-grid-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fancy-grid-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Enhanced Form */
.fancy-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.fancy-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.fancy-form input,
.fancy-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.fancy-form input:focus,
.fancy-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 95, 124, 0.1);
    transform: translateY(-2px);
}

.fancy-form button[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
    position: relative;
    overflow: hidden;
}

.fancy-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.fancy-form button[type="submit"]:hover::before {
    left: 100%;
}

.fancy-form button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(44, 95, 124, 0.4);
}

/* Enhanced List */
.fancy-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.fancy-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 3rem;
}

.fancy-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.fancy-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(44, 95, 124, 0.15);
    border-left-width: 6px;
}

/* Publication Item */
.publication-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.publication-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.publication-item:hover::before {
    transform: scaleY(1);
}

.publication-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(44, 95, 124, 0.2);
}

.publication-item h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.publication-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.publication-item strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 1000;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 15px;
        margin-bottom: 0.5rem;
    }

    .nav-menu a::after {
        bottom: 12px;
        width: 40%;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.8);
        margin-top: 0.5rem;
        border-radius: 10px;
        padding: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }

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

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

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-portrait {
        order: -1;
    }

    .portrait-frame {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .awards-grid {
        gap: 1.5rem;
    }

    .awards-row {
        display: flex;
        flex-direction: column;
    }

    .awards-row-bottom {
        align-items: stretch;
    }

    .awards-row-bottom .award-card {
        max-width: none;
    }

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

    h2 {
        font-size: 1.5rem;
    }

    .publications-grid,
    .editorial-grid {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 2rem 0;
    }

    .fancy-page-header {
        padding: 5rem 1rem 4rem;
    }

    .fancy-page-header h1 {
        font-size: 2rem;
    }

    .fancy-page-header .header-subtitle {
        font-size: 1.1rem;
    }

    .fancy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fancy-card,
    .fancy-grid-item,
    .publication-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 4rem 1rem;
    }

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

    .quote-box {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .fancy-page-header {
        padding: 4rem 1rem 3rem;
    }

    .fancy-page-header h1 {
        font-size: 1.75rem;
    }

    .fancy-form {
        padding: 2rem 1.5rem;
    }
}

