/* Modern Design System & Variables */
:root {
    /* Brand Colors */
    --primary-teal: #006D77;
    --primary-teal-dark: #004d54;
    --secondary-cyan: #83C5BE;
    --accent-crimson: #D62828;
    --accent-crimson-hover: #b12222;

    /* Neutrals */
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-main: #2B2D42;
    --text-muted: #4A4E69;
    --border-color: rgba(0, 109, 119, 0.1);

    /* Glassmorphism & Effects */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

[v-cloak] {
    display: none;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-crimson);
    border-radius: 2px;
}

h2.center::after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.5rem;
}

/* Global Components */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 80px 0;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-crimson);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(214, 40, 40, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-crimson-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.23);
}

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

.btn-outline:hover {
    background: var(--primary-teal);
    color: white;
}

/* Sticky Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Styles */
.logo img {
    height: 60px;
    /* Controlled height */
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

header.scrolled .logo img {
    height: 50px;
}

/* Hero Carousel Extensions */
.hero-carousel {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-recognition {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f7f8 100%);
}

.award-img {
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 109, 119, 0.15);
    border-radius: 40px;
}

.award-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--primary-teal);
    z-index: 10;
}

.award-badge-floating span {
    font-weight: 800;
    color: var(--primary-teal);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Recognition Enhancements in Consultant Section */
.fellow-tag {
    background: var(--primary-teal);
    color: white;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 10px;
    font-weight: 600;
}

.recognition-watermark {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 109, 119, 0.03);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

.recognition-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 109, 119, 0.1);
}

.recog-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.recog-text strong {
    display: block;
    color: var(--accent-crimson);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.recog-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-crimson);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-teal);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation CTA Button */
.cta-button {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: var(--accent-crimson);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 14px 0 rgba(214, 40, 40, 0.39);
}

.cta-button:hover {
    background-color: var(--accent-crimson-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.3);
}

/* CS TV Button with Vintage Style */
.cs-tv-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    color: #ffd700;
    text-decoration: none;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs-tv-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: vintage-glow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vintage-glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.tv-icon {
    width: 20px;
    height: 20px;
    stroke: #ffd700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    transition: var(--transition-base);
}

.cs-tv-button:hover {
    background: linear-gradient(135deg, #2d5a8a 0%, #1e3a5f 100%);
    border-color: #ffed4e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cs-tv-button:hover .tv-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
}

/* Refined Immersive Hero */
.hero-immersive {
    padding: 140px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(131, 197, 190, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    /* Prioritize text legibility */
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 109, 119, 0.08);
    color: var(--primary-teal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-text-content h1 {
    margin-bottom: 2rem;
}

.text-accent {
    color: var(--accent-crimson);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-img {
    width: 100%;
    max-width: 520px;
    height: 550px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    display: block;
    margin: 0;
    /* Left align in its grid area */
    transform: translateX(-50px);
    /* The 7:23 PM shift */
    transition: var(--transition-base);
    position: relative;
}

.hero-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Slide 2 Specific constraints */
.hero-recognition .hero-main-img {
    max-width: 580px;
    height: 480px;
    transform: translateX(-30px);
    /* Slightly less shift for the wider award image */
}

.experience-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    z-index: 10;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 0.5px;
    text-align: center;
}

/* Modern Services Overview */
.services-modern {
    background-color: var(--bg-light);
}

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

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

.sub-badge {
    color: var(--accent-crimson);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.service-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card-modern {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: var(--transition-base);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    background: var(--bg-white);
    border-color: var(--primary-teal);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.text-link {
    color: var(--primary-teal);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    transition: var(--transition-fast);
}

.text-link:hover {
    gap: 15px;
    color: var(--accent-crimson);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Customer Service TV Section - Enhanced */
.customer-service-tv {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f2 100%);
    position: relative;
    overflow: hidden;
}

.customer-service-tv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 109, 119, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cs-tv-hero {
    position: relative;
    z-index: 1;
}

.tv-player-frame {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid rgba(0, 109, 119, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 109, 119, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Decorative Corner Accents */
.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-teal);
}

.corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 30px 0 0 0;
}

.corner-tr {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 30px 0 0;
}

.corner-bl {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 30px;
}

.corner-br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 30px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

/* CTA Section */
.cstv-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.05) 0%, rgba(131, 197, 190, 0.08) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 109, 119, 0.1);
}

.cta-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-cstv-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #004d54 100%);
    color: white;
    text-decoration: none;
    border: none;
    box-shadow:
        0 8px 20px rgba(0, 109, 119, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.btn-cstv-explore:hover::before {
    left: 100%;
}

.btn-cstv-explore:hover {
    background: linear-gradient(135deg, #007d8a 0%, var(--primary-teal) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(0, 109, 119, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.play-icon {
    width: 18px;
    height: 18px;
    fill: white;
    transition: var(--transition-base);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: white;
    transition: var(--transition-base);
}

.btn-cstv-explore:hover .play-icon {
    transform: scale(1.15);
}

.btn-cstv-explore:hover .arrow-icon {
    transform: translateX(5px);
}

.customer-service-tv h2 {
    margin-bottom: 50px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: var(--black);
    margin-top: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Modern About Section */
.about-modern {
    background-color: var(--bg-white);
}

.container-narrow {
    max-width: 900px;
}

.about-content-wrapper {
    text-align: center;
}

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-teal);
    margin-bottom: 2.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.mv-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition-base);
}

.mv-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-teal);
}

.mv-card h3 {
    color: var(--accent-crimson);
    margin-bottom: 1rem;
}

/* Premium Consultant Section */
.consultant-premium {
    background-color: var(--bg-light);
}

.consultant-card-wide {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-radius: 40px;
    overflow: visible;
    min-height: 600px;
    position: relative;
}

.consultant-image-side {
    position: relative;
    overflow: hidden;
    border-radius: 40px 0 0 40px;
    z-index: 1;
}

.consultant-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 109, 119, 0.4) 0%, transparent 50%);
}

.consultant-info-side {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    border-radius: 0 40px 40px 0;
}

.profile-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent-crimson);
    margin-bottom: 0.5rem;
    display: block;
}

.consultant-title {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.expert-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: rgba(0, 109, 119, 0.05);
    border: 2px solid rgba(0, 109, 119, 0.1);
    min-width: 140px;
    transition: var(--transition-base);
}

.stat-item:hover {
    background: rgba(0, 109, 119, 0.08);
    border-color: var(--primary-teal);
    transform: translateY(-2px);
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.achievements-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.achievements-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-crimson);
    font-weight: 900;
}

.accent-quote {
    border-left: 4px solid var(--accent-crimson);
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.accent-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-teal);
}

.consultant-actions {
    display: flex;
    gap: 1rem;
}

.btn.small {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

/* Premium Detailed Services */
.detailed-services-premium {
    background-color: var(--bg-white);
}

.detailed-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.service-detail-item {
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    border: 1px solid transparent;
    /* Prepare for hover border */
    transition: var(--transition-base);
}

.service-detail-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
    border-color: var(--primary-teal);
    /* Light teal border matching summary cards */
    box-shadow: 0 15px 30px rgba(0, 109, 119, 0.08);
}

.s-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 109, 119, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
}

.service-detail-item h3 {
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

/* Immersive Testimonials */
.testimonials-immersive {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.testimonial-slider-modern {
    padding: 3rem 0;
}

.card-slide {
    padding: 3.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 5rem;
    color: var(--accent-crimson);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.card-slide p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.client-meta {
    display: flex;
    flex-direction: column;
}

.client-meta strong {
    font-size: 1.1rem;
    color: var(--primary-teal);
}

.client-meta span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-grey);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact h2 {
    margin-bottom: 30px;
}

.contact p {
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-blue);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .cta-button {
    width: auto;
    align-self: center;
}

/* Modern Events Grid */
.event-list-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card-modern {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
}

/* Modern Training Form */
.training-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
    border-radius: 30px;
    max-width: 600px;
    margin: 3rem auto;
}

.training-form-modern input,
.training-form-modern select,
.training-form-modern textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 1rem;
}

/* Modern Footer Styles */
.footer-modern {
    background: var(--primary-teal);
    color: white;
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-cyan);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-cyan);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
}

.footer-contact i {
    color: var(--secondary-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-modern {
        padding: 4rem 0 2rem;
    }
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-content {
        order: -1;
    }

    .hero-ctas {
        justify-content: center;
    }

    .consultant-card-wide {
        grid-template-columns: 1fr;
    }

    .hero-main-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        display: none;
        /* Hidden by default on small screens */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .cta-button {
        margin-top: 20px;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    /* Related Events & Media Section */
    .related-events-media {
        padding: 80px 20px;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        background-color: var(--light-grey);
    }

    .related-events-media h2 {
        margin-bottom: 50px;
        color: var(--primary-blue);
    }

    .event-list-media {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .event-card-media {
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .event-card-media:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .event-card-media .event-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .event-card-media h3 {
        color: var(--secondary-blue);
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .event-card-media p {
        font-size: 0.9em;
        line-height: 1.6;
        color: var(--neutral-grey);
        margin-bottom: 15px;
        flex-grow: 1;
    }

    .event-card-media .video-container-small {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: var(--black);
        margin-bottom: 15px;
    }

    .event-card-media .video-container-small iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .event-card-media .learn-more {
        display: inline-block;
        margin-top: 10px;
        color: var(--accent-color);
        font-weight: 600;
        text-decoration: none;
    }

    .event-card-media .learn-more:hover {
        text-decoration: underline;
    }

    /* Responsive adjustments for service detail pages */
    .service-detail-hero h1 {
        font-size: 2em;
    }

    .service-detail-content {
        padding: 40px 20px;
    }

    .related-events-media {
        padding: 40px 20px;
    }

    .event-list-media {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Page Specific Extensions */
.service-detail-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f7f8 100%);
    padding-bottom: 60px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.section-padding {
    padding: 100px 0;
}

.challenge-card,
.solution-card {
    padding: 3.5rem;
    border-radius: 30px;
}

.challenge-card {
    background: #FFFAFA;
}

.solution-card {
    background: #F0F7F8;
    border-color: var(--secondary-cyan);
}

.methodology-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.method-step {
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary-cyan);
}

.method-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

/* Mobile adjustments for service pages */
@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
}

/* Event Section & Details Styles */
.event-theme-dark {
    background-color: #050d10;
    color: #fff;
}

.event-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.event-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(5, 13, 16, 0.95) 30%, rgba(0, 109, 119, 0.4) 100%), url('images/bg/event_hero_placeholder.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.event-date-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-crimson);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.event-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.event-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.event-meta-info {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary-cyan);
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mini Nav */
.event-mini-nav {
    background: rgba(5, 13, 16, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 1rem 0;
}

.event-mini-nav ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
}

.event-mini-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-mini-nav a:hover {
    color: var(--primary-teal);
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.speaker-card {
    cursor: pointer;
}

.speaker-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/5;
}

.speaker-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.speaker-card:hover .speaker-img-wrapper img {
    transform: scale(1.05);
}

.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 109, 119, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

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

.speaker-overlay span {
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 30px;
}

/* Schedule Tabs */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 109, 119, 0.2);
}

.schedule-day {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.schedule-day.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.schedule-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.schedule-item.highlighted {
    padding: 2.5rem;
    background: rgba(0, 109, 119, 0.05);
    border-radius: 20px;
    border-bottom: none;
    margin: 1rem 0;
}

.sch-time {
    font-weight: 800;
    color: var(--secondary-cyan);
    font-size: 1.1rem;
}

.sch-desc h3 {
    margin-bottom: 0.5rem;
}

/* Side Sheet (Modal) */
.side-sheet-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.side-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-sheet-content {
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    color: var(--primary-dark);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 4rem 3rem;
    position: relative;
    overflow-y: auto;
}

.side-sheet-overlay.active .side-sheet-content {
    transform: translateX(0);
}

.close-sheet {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-dark);
    line-height: 1;
}

.sheet-speaker-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
}

/* Premium Homepage Event Cards */
.event-card-premium {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2.5rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 2rem;
}

.event-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
}

.event-card-date {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.event-month {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Additional Event Helper Classes */
.text-white-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.text-white-link:hover {
    opacity: 1;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* Homepage Events Refinement - Immersive Teal */
.events-listing-immersive {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #004d55 100%);
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.events-listing-immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg/events_pattern.jpg');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.events-listing-immersive h2,
.events-listing-immersive .section-intro {
    color: #fff !important;
}

.event-card-glass {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 2rem;
}

.event-card-glass:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-teal);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-card-glass .event-card-date {
    background: rgba(0, 109, 119, 0.15);
    border: 1px solid rgba(0, 109, 119, 0.2);
}

.event-card-glass .event-day {
    color: var(--secondary-cyan);
}

.event-card-glass .event-month {
    color: #fff;
    opacity: 0.8;
}

.event-card-glass h3 {
    color: #fff;
    font-size: 1.8rem;
}

.event-card-glass .sub-badge {
    background: var(--accent-crimson);
    color: #fff;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-cyan) 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 109, 119, 0.3);
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 109, 119, 0.4);
    color: #fff;
}

/* Airbnb Inspired Events Hub Styles */
.events-hub-container {
    padding: 2rem 0;
}

.filter-bar-wrapper {
    position: sticky;
    top: 80px;
    z-index: 90;
    background: var(--bg-white);
    padding: 1rem 0;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.category-filters {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-base);
    min-width: 60px;
    padding: 0.5rem 0;
    position: relative;
    border-bottom: 2px solid transparent;
}

.category-btn.active {
    opacity: 1;
    border-bottom: 2px solid var(--text-main);
}

.category-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-label {
    font-size: 0.75rem;
    font-weight: 600;
}

.status-toggle {
    display: flex;
    background: #f1f1f1;
    padding: 4px;
    border-radius: 50px;
    border: 1px solid #ddd;
}

.toggle-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.toggle-btn.active {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.airbnb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.airbnb-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.airbnb-card:hover {
    transform: translateY(-5px);
}

.card-image-box {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.airbnb-card:hover .card-image-box img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

.card-date {
    font-weight: 400;
    color: var(--text-muted);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0.2rem 0;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Workshop Card — Amber/Gold variant */
.airbnb-card.workshop-card .card-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(245, 158, 11, 0.18) 0%, rgba(217, 119, 6, 0.08) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.airbnb-card.workshop-card .card-image-box {
    border-bottom: 3px solid #f59e0b;
}

.airbnb-card.workshop-card .card-tag {
    background: rgba(245, 158, 11, 0.92);
    color: white;
}

.airbnb-card.workshop-card .card-link {
    color: #d97706;
}

.airbnb-card.workshop-card:hover {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.18);
}

.airbnb-card.workshop-card .card-title {
    font-size: 0.98rem;
}

.card-footer-row {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 0.95rem;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-teal);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.card-link:hover {
    border-bottom: 1px solid var(--primary-teal);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .filter-bar-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .status-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Modern Grid — Asymmetric Masonry */
.contact-modern-grid {
    display: grid;
    /* 3-col layout: col 1 spans phone + postal, col 2 is email (tall), col 3 spans location + socials */
    grid-template-columns: 1fr 1.3fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Explicit placement */
.contact-info-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

/* Phone   — top-left */
.contact-info-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: stretch;
}

/* Email — tall centre */
.contact-info-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

/* Location — top-right */
.contact-info-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

/* Postal   — mid-left */
.contact-info-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* Facebook — mid-right */
.contact-info-card:nth-child(6) {
    grid-column: 1 / 4;
    grid-row: 3;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}

/* YouTube  — full-width bottom row, centred */

.contact-info-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-base);
    /* fix text overflow */
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

/* Email card gets a distinct background accent to draw the eye */
.contact-info-card:nth-child(2) {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.06) 0%, rgba(99, 102, 241, 0.02) 100%) !important;
    border: 1.5px solid rgba(99, 102, 241, 0.18) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 109, 119, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-teal);
    font-size: 1.8rem;
    transition: var(--transition-base);
}

.contact-info-card:hover .contact-icon {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.1);
}

/* Per-icon color overrides */
.contact-icon-phone {
    background: rgba(0, 109, 119, 0.1);
    color: #006d77;
}

.contact-icon-email {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.contact-icon-location {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.contact-icon-postal {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.contact-icon-facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.contact-icon-youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.contact-icon-phone svg,
.contact-icon-email svg,
.contact-icon-location svg,
.contact-icon-postal svg {
    transition: var(--transition-base);
}

.contact-info-card:hover .contact-icon-phone {
    background: #006d77;
    color: white;
}

.contact-info-card:hover .contact-icon-email {
    background: #6366f1;
    color: white;
}

.contact-info-card:hover .contact-icon-location {
    background: #10b981;
    color: white;
}

.contact-info-card:hover .contact-icon-postal {
    background: #f59e0b;
    color: white;
}

.contact-info-card:hover .contact-icon-facebook {
    background: #1877f2;
    color: white;
}

.contact-info-card:hover .contact-icon-youtube {
    background: #ff0000;
    color: white;
}

/* Responsive collapse for masonry contact grid */
@media (max-width: 900px) {
    .contact-modern-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .contact-info-card:nth-child(1),
    .contact-info-card:nth-child(2),
    .contact-info-card:nth-child(3),
    .contact-info-card:nth-child(4),
    .contact-info-card:nth-child(5),
    .contact-info-card:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
        align-self: auto;
    }

    .contact-info-card:nth-child(6) {
        grid-column: 1 / 3;
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .contact-modern-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card:nth-child(6) {
        grid-column: 1;
    }
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Scroll To Top — inline anchor/button variant (used on pages without script.js global) */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 109, 119, 0.35);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #004d54;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 109, 119, 0.45);
}

.scroll-top-btn svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    transition: transform 0.25s ease;
}

.scroll-top-btn:hover svg {
    transform: translateY(-2px);
}

/* Scroll To Top */
#globalScrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 109, 119, 0.35);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#globalScrollToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#globalScrollToTop:hover {
    background: #004d54;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 109, 119, 0.45);
}

#globalScrollToTop svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    transition: transform 0.25s ease;
}

#globalScrollToTop:hover svg {
    transform: translateY(-2px);
}

/* Special Event Slide */
.hero-event-slide .hero-text-content h1 {
    margin-bottom: 1.2rem;
}

.event-golden-badge {
    color: #c98a2c !important;
    /* Gold color matching poster text */
}

.event-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal-dark);
}

.event-quick-info .info-item i {
    width: 32px;
    font-size: 1.3rem;
    color: #c98a2c;
    vertical-align: middle;
}

/* Composed HTML/CSS Poster Graphic - PNG Variation */
.hero-poster-composed {
    position: relative;
    max-width: 480px;
    height: 600px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 15px;
    background: transparent;
    transform: none !important;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align the PNG to the bottom */
}

/* New creative background shapes */
.poster-bg-element {
    position: absolute;
    z-index: 1;
}

.circle-accent {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(201, 138, 44, 0.2) 0%, rgba(0, 109, 119, 0.4) 100%);
    border-radius: 50%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 60px rgba(0, 109, 119, 0.3);
}

.dot-grid {
    width: 150px;
    height: 150px;
    top: 40px;
    right: 0;
    background-image: radial-gradient(var(--primary-teal) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.3;
}

.transparent-png {
    width: 100%;
    height: auto;
    max-height: 110%;
    /* Let the speaking png break out of the top slightly */
    position: relative;
    z-index: 2;
}

.transparent-png img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* Poster Layout Authenticity Updates */
.poster-style-heading {
    text-transform: uppercase;
    line-height: 0.95;
    font-size: clamp(3.2rem, 5.5vw, 4.8rem) !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.poster-floating-datetime {
    position: absolute;
    bottom: 180px;
    left: -10px;
    z-index: 10;
    text-align: left;
}

.poster-floating-datetime .pf-date,
.poster-floating-datetime .pf-time {
    display: block;
    color: #eb9b1e;
    /* Matching the deep orange/gold from the actual poster */
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.25;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* contrast against speaker/background */
}

.poster-floating-datetime .superscript {
    font-size: 1rem;
    vertical-align: super;
}

.poster-theme-box {
    position: absolute;
    bottom: 20px;
    left: -40px;
    width: 120%;
    /* wider than the graphic container naturally */
    max-width: 500px;
    z-index: 15;
    padding: 1.2rem;
    background: #eb9b1e;
    /* Matching the orange theme block */
    box-shadow: 0 15px 35px rgba(235, 155, 30, 0.3);
}

.poster-theme-box .theme-label {
    display: block;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.poster-theme-box .theme-title {
    color: white;
    font-size: 1.15rem;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
    font-weight: 800;
}

@media (max-width: 992px) {
    .poster-theme-box {
        left: -10px;
        width: 100%;
        max-width: 100%;
        position: relative;
        bottom: 0;
        margin-top: -30px;
    }

    .poster-floating-datetime {
        bottom: 150px;
        left: 20px;
        transform: scale(0.85);
    }
}

/* Tickets Contact Row - Imported from event-details */
.tickets-contact-heading {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tickets-contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.tkt-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(0, 109, 119, 0.1);
    box-shadow: 0 4px 15px rgba(0, 109, 119, 0.06);
    transition: all 0.3s ease;
}

.tkt-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 109, 119, 0.13);
    border-color: var(--primary-teal);
    color: var(--text-main);
}

.tkt-contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(0, 109, 119, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.tkt-contact-card:hover .tkt-contact-icon {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.08);
}

.tkt-contact-icon-fb {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.tkt-contact-card:hover .tkt-contact-icon-fb {
    background: #1877f2;
    color: white;
}

.tkt-contact-icon-yt {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.tkt-contact-card:hover .tkt-contact-icon-yt {
    background: #ff0000;
    color: white;
}

.tkt-contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.tkt-contact-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .tickets-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tickets-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}