/* ===============================================
   SPEAKING ENGAGEMENTS PAGE - COMPLETE CSS
   Part 1: Foundation, Header, Navigation & Sidebar
   =============================================== */

/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    --primary-navy: #0F2438;
    --primary-teal: #1A5F7A;
    --accent-emerald: #159895;
    --accent-gold: #D4AF37;
    --accent-mint: #57C5B6;
    --light-cream: #F8F6F0;
    --warm-gold: #B8860B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.15), rgba(21, 152, 149, 0.15));
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 2px solid rgba(87, 197, 182, 0.3);
}

.section-badge i {
    color: var(--accent-emerald);
    font-size: 16px;
}

.section-badge span {
    color: var(--accent-emerald);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: rgba(26, 26, 26, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   HEADER SECTION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.header-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(87, 197, 182, 0.2), transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.header.scrolled {
    padding: 8px 0;
    background: linear-gradient(135deg, rgba(15, 36, 56, 0.95) 0%, rgba(26, 95, 122, 0.95) 50%, rgba(21, 152, 149, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

/* ===================================
   LOGO STYLES
   =================================== */
.logo {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 12px rgba(87, 197, 182, 0.4));
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    border: 2px solid var(--accent-mint);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-smooth);
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.logo-link:hover .logo-ring {
    opacity: 0.6;
    width: 85px;
    height: 85px;
}

.logo-link:hover .logo-wrapper img {
    transform: scale(1.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.logo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.logo-link:hover .logo-title {
    color: var(--accent-gold);
    text-shadow: 2px 2px 12px rgba(212, 175, 55, 0.5);
}

.logo-link:hover .logo-subtitle {
    color: var(--accent-gold);
}

/* ===================================
   DESKTOP NAVIGATION
   =================================== */
.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 12px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-hover-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-mint));
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover .link-hover-effect,
.nav-link.active .link-hover-effect {
    width: 70%;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.15), rgba(212, 175, 55, 0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
    z-index: 1;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--warm-gold), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--white);
}

/* ===================================
   DROPDOWN MENU
   =================================== */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1000;
    margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--accent-emerald);
    padding-left: 25px;
}

/* ===================================
   HAMBURGER MENU
   =================================== */
.hamburger {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger-box {
    width: 32px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 32px;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(87, 197, 182, 0.3);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after {
    background: var(--accent-gold);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.5);
}

.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.hamburger.active .hamburger-inner::after {
    opacity: 0;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .logo-title {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 15px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
        animation: fadeIn 0.8s ease-out 0.4s both;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .hamburger {
        display: none;
    }

    .header-content {
        padding: 22px 0;
    }

    .logo-wrapper {
        width: 75px;
        height: 75px;
    }

    .logo-title {
        font-size: 26px;
    }

    .logo-subtitle {
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - LARGE DESKTOP
   =================================== */
@media (min-width: 1440px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        padding: 13px 26px;
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 360px) {
    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .logo-wrapper {
        width: 55px;
        height: 55px;
    }
}

/* ===================================
   SIDEBAR STYLES
   =================================== */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    z-index: 1002;
    transition: var(--transition-smooth);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(87, 197, 182, 0.15), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.sidebar.active {
    right: 0;
}

/* Sidebar Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-mint));
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--warm-gold), var(--accent-emerald));
}

/* ===================================
   SIDEBAR CLOSE BUTTON
   =================================== */
.sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.sidebar-close:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   SIDEBAR CONTENT
   =================================== */
.sidebar-content {
    padding: 90px 35px 35px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* ===================================
   SIDEBAR HEADER
   =================================== */
.sidebar-header {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.sidebar-logo-wrapper {
    position: relative;
    width: 75px;
    height: 75px;
}

.sidebar-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(87, 197, 182, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.sidebar-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 85px;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowExpand 2s ease-in-out infinite;
}

@keyframes glowExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.sidebar-logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-logo-text p {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.sidebar-tagline {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.sidebar-tagline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   SIDEBAR NAVIGATION
   =================================== */
.sidebar-nav {
    flex: 1;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-mint));
    transition: var(--transition-fast);
    border-radius: 0 4px 4px 0;
}

.sidebar-link:hover::before {
    height: 100%;
}

.sidebar-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.15), rgba(212, 175, 55, 0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
    z-index: -1;
}

.sidebar-link:hover::after {
    transform: scaleX(1);
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: var(--accent-gold);
}

.link-icon {
    width: 22px;
    font-size: 18px;
    color: var(--accent-mint);
    transition: var(--transition-fast);
}

.sidebar-link:hover .link-icon {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.sidebar-link .link-text {
    flex: 1;
}

.link-arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
    color: var(--accent-gold);
}

.sidebar-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.2));
    border-color: var(--accent-gold);
}

.contact-highlight:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 134, 11, 0.3));
}

/* ===================================
   SIDEBAR SOCIAL
   =================================== */
.sidebar-social {
    margin: 35px 0 25px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.social-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-mint));
    transform: scale(0);
    transition: var(--transition-fast);
    border-radius: 50%;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ===================================
   SIDEBAR FOOTER
   =================================== */
.sidebar-footer {
    padding-top: 25px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.footer-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
}

.design-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.design-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
}

.design-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.design-credit a:hover::after {
    width: 100%;
}

.design-credit a:hover {
    color: var(--white);
}

/* ===================================
   OVERLAY
   =================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 36, 56, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    backdrop-filter: blur(8px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .sidebar {
        max-width: 450px;
    }

    .sidebar-logo-wrapper {
        width: 85px;
        height: 85px;
    }

    .sidebar-logo-text h2 {
        font-size: 28px;
    }

    .sidebar-logo-text p {
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 360px) {
    .sidebar {
        max-width: 100%;
    }

    .sidebar-content {
        padding: 80px 25px 25px;
    }
}

/* ===================================
   RESPONSIVE - LANDSCAPE MOBILE
   =================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .sidebar-header {
        margin-bottom: 20px;
    }

    .sidebar-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .sidebar-logo-text h2 {
        font-size: 22px;
    }

    .sidebar-tagline {
        padding: 10px 15px;
    }

    .sidebar-link {
        padding: 14px 18px;
        font-size: 15px;
    }

    .sidebar-menu {
        gap: 6px;
    }
}

/* ===============================================
   Part 2: Hero, About, Institutions & Talks Sections
   =============================================== */

/* ===================================
   SPEAKING HERO SECTION
   =================================== */
.speaking-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-mint);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 3s; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 6s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 9s; }
.particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 12s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 15s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0.8;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(87, 197, 182, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    color: var(--white);
    font-size: 14px;
}

.badge-text {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 50px auto;
    flex-wrap: nowrap;
    max-width: 1200px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

.stat-icon i {
    color: var(--white);
    font-size: 24px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::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;
}

.hero-cta-btn:hover::before {
    left: 100%;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s infinite;
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ===================================
   ABOUT ROOTED VOICES SECTION
   =================================== */
.about-rooted-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--accent-emerald);
}

.about-highlight {
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.1), rgba(21, 152, 149, 0.1));
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--white);
    font-size: 20px;
}

.about-highlight p {
    font-size: 16px;
    color: var(--primary-navy);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--white);
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   TEAM INTRO CONTENT (within Institutions)
   =================================== */
.team-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0;
}

.intro-description {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.8;
    margin-bottom: 30px;
}

.intro-organizations {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
}

.intro-organizations li {
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.05), rgba(21, 152, 149, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--accent-emerald);
    font-size: 15px;
    color: var(--primary-navy);
    font-weight: 500;
    transition: var(--transition-fast);
}

.intro-organizations li:hover {
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.1), rgba(21, 152, 149, 0.1));
    transform: translateX(8px);
    border-left-color: var(--accent-gold);
}

/* ===================================
   FEATURED INSTITUTIONS SECTION
   =================================== */
.institutions-section {
    background: var(--light-cream);
}

/* ===================================
   POPULAR TALKS SECTION
   =================================== */
.popular-talks-section {
    background: var(--white);
}

.talks-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.talk-category {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.talk-category:hover {
    border-color: var(--accent-emerald);
    box-shadow: var(--shadow-lg);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-cream);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    color: var(--white);
    font-size: 28px;
}

.category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-navy);
}

.talks-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.talk-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px;
    background: rgba(87, 197, 182, 0.05);
    border-radius: 15px;
    transition: var(--transition-fast);
    border-left: 4px solid transparent;
}

.talk-item:hover {
    background: rgba(87, 197, 182, 0.1);
    border-left-color: var(--accent-gold);
    transform: translateX(10px);
}

.talk-item > i {
    color: var(--accent-emerald);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.talk-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.talk-content p {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===============================================
   Part 3: Custom, Formats, Testimonials, Booking, Footer & Responsive
   =============================================== */

/* ===================================
   CUSTOM PRESENTATIONS SECTION
   =================================== */
.custom-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    position: relative;
    overflow: hidden;
}

.custom-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-mint), transparent);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: shapeFloat 15s infinite alternate;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
    animation: shapeFloat 20s infinite alternate-reverse;
}

@keyframes shapeFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

.custom-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.custom-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

.custom-icon i {
    color: var(--white);
    font-size: 35px;
}

.custom-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.custom-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.custom-topics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.topic-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.topic-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.topic-tag i {
    color: var(--accent-gold);
    font-size: 16px;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.custom-btn:hover {
    background: var(--warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* ===================================
   EVENT FORMATS SECTION
   =================================== */
.formats-section {
    background: var(--white);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.format-card {
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.05), rgba(21, 152, 149, 0.05));
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid rgba(87, 197, 182, 0.2);
}

.format-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(87, 197, 182, 0.08));
}

.format-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.format-card:hover .format-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    transform: scale(1.15) rotate(360deg);
}

.format-icon i {
    color: var(--white);
    font-size: 32px;
}

.format-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.format-card p {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    background: var(--light-cream);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-emerald);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 80px;
    color: rgba(87, 197, 182, 0.15);
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-cream);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
}

/* ===================================
   BOOKING CTA SECTION
   =================================== */
.booking-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-emerald) 100%);
    position: relative;
    overflow: hidden;
}

.booking-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.booking-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

.booking-particles .particle:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.booking-particles .particle:nth-child(2) { left: 75%; top: 65%; animation-delay: 5s; }
.booking-particles .particle:nth-child(3) { left: 50%; top: 45%; animation-delay: 10s; }

.booking-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: iconBounce 3s infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.booking-icon i {
    color: var(--white);
    font-size: 40px;
}

.booking-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.booking-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 50px;
}

.booking-description strong {
    color: var(--accent-gold);
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.12);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(8px);
    border-color: var(--accent-gold);
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--white);
    font-size: 15px;
    text-align: left;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
}

.booking-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.booking-btn.primary:hover {
    background: linear-gradient(135deg, var(--warm-gold), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.booking-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.booking-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-3px);
}

.booking-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 18px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo-sub {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 2.5px;
    line-height: 1;
    margin-top: 3px;
}

.footer-tagline {
    font-size: 15px;
    font-style: italic;
    color: var(--accent-mint);
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
    color: var(--accent-mint);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-list a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-credits a:hover {
    color: var(--white);
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.4);
    transition: var(--transition-fast);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ===================================
   RESPONSIVE - MOBILE (max-width: 768px)
   =================================== */
@media (max-width: 768px) {
    .speaking-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-badge {
        padding: 10px 20px;
        margin-bottom: 25px;
    }

    .badge-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-stats {
        gap: 20px;
        margin: 35px 0;
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        padding: 20px 25px;
        min-width: 140px;
        max-width: 160px;
        flex: 0 1 calc(33.333% - 15px);
        gap: 12px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    .stat-content h3 {
        font-size: 24px;
    }

    .stat-content p {
        font-size: 11px;
        line-height: 1.3;
    }

    .hero-cta-btn {
        padding: 15px 35px;
        font-size: 15px;
        margin-top: 20px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-organizations {
        grid-template-columns: 1fr;
    }

    .formats-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .booking-benefits {
        grid-template-columns: 1fr;
    }

    .booking-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-btn {
        width: 100%;
        justify-content: center;
    }

    .booking-contact {
        flex-direction: column;
        gap: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .talk-item {
        flex-direction: column;
    }

    .custom-content h2 {
        font-size: 32px;
    }

    .booking-content h2 {
        font-size: 32px;
    }
}

/* ===================================
   RESPONSIVE - TABLET (769px - 1024px)
   =================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-item {
        padding: 25px 35px;
        min-width: 180px;
    }

    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP (min-width: 1024px)
   =================================== */
@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
        animation: fadeIn 0.8s ease-out 0.4s both;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .hamburger {
        display: none;
    }

    .header-content {
        padding: 22px 0;
    }

    .logo-wrapper {
        width: 75px;
        height: 75px;
    }

    .logo-title {
        font-size: 26px;
    }

    .logo-subtitle {
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL (max-width: 480px)
   =================================== */
@media (max-width: 480px) {
    .speaking-hero {
        padding: 110px 0 70px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 5px;
    }

    .hero-stats {
        gap: 15px;
        margin: 30px 0;
    }

    .stat-item {
        padding: 18px 20px;
        min-width: 110px;
        max-width: 130px;
        flex: 0 1 calc(33.333% - 10px);
        gap: 10px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 16px;
    }

    .stat-content h3 {
        font-size: 20px;
    }

    .stat-content p {
        font-size: 10px;
        line-height: 1.2;
    }

    .hero-cta-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-badge,
    .section-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .custom-content h2,
    .booking-content h2 {
        font-size: 28px;
    }

    .topic-tag {
        font-size: 12px;
        padding: 10px 18px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .logo-wrapper {
        width: 55px;
        height: 55px;
    }

    .sidebar {
        max-width: 100%;
    }

    .sidebar-content {
        padding: 80px 25px 25px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* ===================================
   RESPONSIVE - EXTRA SMALL MOBILE (max-width: 380px)
   =================================== */
@media (max-width: 380px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-item {
        padding: 15px 15px;
        min-width: 95px;
        max-width: 110px;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
    }

    .stat-icon i {
        font-size: 14px;
    }

    .stat-content h3 {
        font-size: 18px;
    }

    .stat-content p {
        font-size: 9px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .header,
    .sidebar,
    .overlay,
    .back-to-top,
    .hero-particles,
    .booking-particles,
    .custom-bg-shapes {
        display: none;
    }

    body {
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}