@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-purple: #9b59b6;
    --primary-orange: #f39c12;
    --primary-teal: #1abc9c;
    --primary-yellow: #c0f400;
    --bg-dark: #08090c;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-card-bg: rgba(15, 17, 23, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-glow: rgba(26, 188, 156, 0.35);
    --text-main: #f8f9fa;
    --text-muted: #9ba1a6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --gradient-brand: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    --gradient-glow: linear-gradient(135deg, rgba(26, 188, 156, 0.15), rgba(155, 89, 182, 0.15));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Ambient Background Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.35;
    pointer-events: none;
    will-change: transform;
}
.glow-1 { top: -20%; left: -10%; width: 600px; height: 600px; background: var(--primary-purple); animation: float-glow-1 25s infinite ease-in-out alternate; }
.glow-2 { top: 40%; right: -15%; width: 500px; height: 500px; background: var(--primary-teal); animation: float-glow-2 20s infinite ease-in-out alternate; }
.glow-3 { bottom: -10%; left: 10%; width: 700px; height: 700px; background: var(--primary-orange); animation: float-glow-3 30s infinite ease-in-out alternate; }

@keyframes float-glow-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.15); }
}

@keyframes float-glow-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, -40px) scale(1.2); }
}

@keyframes float-glow-3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -80px) scale(1.1); }
}

/* Subtle Grid overlay */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    z-index: -1;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-teal);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(8, 9, 12, 0.7);
    transition: padding 0.3s, background 0.3s;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(8, 9, 12, 0.85);
    border-bottom-color: rgba(26, 188, 156, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    cursor: pointer;
}

.logo-dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    transition: transform 0.5s ease;
}

.logo:hover .logo-dots {
    transform: rotate(90deg);
}

.dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
}
.dot:nth-child(1) { background: var(--primary-purple); box-shadow: 0 0 8px var(--primary-purple); }
.dot:nth-child(2) { background: var(--primary-teal); box-shadow: 0 0 8px var(--primary-teal); }
.dot:nth-child(3) { background: var(--primary-orange); box-shadow: 0 0 8px var(--primary-orange); }
.dot:nth-child(4) { background: var(--primary-yellow); box-shadow: 0 0 8px var(--primary-yellow); }

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2.2rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

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

.nav-links a:hover { 
    color: var(--text-main); 
}

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

.cta-btn {
    background: var(--gradient-brand);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
    filter: brightness(1.1);
}

.cta-btn.secondary {
    background: transparent;
    border: 1.5px solid var(--primary-teal);
    color: var(--primary-teal);
    box-shadow: none;
}

.cta-btn.secondary:hover {
    background: rgba(26, 188, 156, 0.08);
    box-shadow: 0 0 15px rgba(26, 188, 156, 0.15);
}

/* Sections General */
section {
    padding: 9rem 5% 5rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-subtitle-text {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: -2.5rem auto 3.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-tag {
    background: rgba(26, 188, 156, 0.08);
    border: 1px solid rgba(26, 188, 156, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(26, 188, 156, 0.1);
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(26, 188, 156, 0.1); border-color: rgba(26, 188, 156, 0.2); }
    50% { box-shadow: 0 0 25px rgba(26, 188, 156, 0.25); border-color: rgba(26, 188, 156, 0.5); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 1000px;
}

.hero-title span.gradient-text {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-purple) 50%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(26, 188, 156, 0.15));
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 750px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--text-main);
}

.mouse-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary-teal);
    left: 50%;
    margin-left: -2px;
    top: 8px;
    border-radius: 2px;
    animation: scroll-anim 1.5s infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* 3D Glass Cards */
.glass-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transform-style: preserve-3d;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.1s ease-out;
    will-change: transform;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.glass-card:hover {
    border-color: var(--glass-border-glow);
    box-shadow: 0 15px 50px rgba(26, 188, 156, 0.15);
}

.glass-card-content {
    transform: translateZ(40px); /* 3D pop effect */
}

/* Purpose Section */
.purpose-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.purpose-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.ecosystem-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(243, 156, 18, 0.08);
    border: 1px solid rgba(243, 156, 18, 0.2);
    color: var(--primary-orange);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.purpose-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.purpose-text p strong {
    color: var(--text-main);
    font-weight: 600;
}

.qatar-nodes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.node-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, border-color 0.3s;
}

.node-item:hover {
    transform: translateX(10px);
    border-color: rgba(155, 89, 182, 0.3);
}

.node-icon {
    font-size: 1.8rem;
    min-width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.node-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-grid .glass-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    width: fit-content;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
}

.services-grid h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-grid p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: auto;
    transition: gap 0.3s;
}

.service-cta:hover {
    gap: 15px;
}

/* Interactive Scorecard Section */
.scorecard-container {
    background: linear-gradient(135deg, rgba(8, 9, 12, 0.8) 0%, rgba(15, 18, 25, 0.8) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.scorecard-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.quiz-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.quiz-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transform: translateY(-50%);
}

.quiz-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: linear-gradient(to right, var(--primary-teal), var(--primary-purple));
    z-index: -1;
    transform: translateY(-50%);
    transition: width 0.4s ease;
}

.step-indicator {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0f1115;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: border-color 0.4s, color 0.4s, background-color 0.4s, box-shadow 0.4s;
}

.step-indicator.active {
    border-color: var(--primary-teal);
    color: var(--text-main);
    background: rgba(26, 188, 156, 0.15);
    box-shadow: 0 0 15px rgba(26, 188, 156, 0.3);
}

.step-indicator.completed {
    border-color: var(--primary-purple);
    color: #fff;
    background: var(--primary-purple);
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.3);
}

.quiz-question-box {
    min-height: 250px;
    position: relative;
    z-index: 1;
}

.quiz-question {
    display: none;
    animation: fade-in 0.5s ease forwards;
}

.quiz-question.active {
    display: block;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-text {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1.5px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.option-card:hover {
    border-color: rgba(26, 188, 156, 0.3);
    background: rgba(26, 188, 156, 0.02);
}

.option-card.selected {
    border-color: var(--primary-teal);
    background: rgba(26, 188, 156, 0.06);
    box-shadow: 0 0 20px rgba(26, 188, 156, 0.1);
}

.option-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
}

.option-card.selected .option-title {
    color: var(--primary-teal);
}

.option-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.results-display {
    display: none;
    text-align: center;
    animation: fade-in 0.6s ease forwards;
}

.results-display.active {
    display: block;
}

.score-meter {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-circle {
    transform: rotate(-90deg);
}

.score-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.score-circle-bar {
    fill: none;
    stroke: url(#meter-gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 1.5s ease-out;
}

.score-val {
    position: absolute;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.score-val span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.results-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.results-info p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.recommendation-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(192, 244, 0, 0.08);
    border: 1px solid rgba(192, 244, 0, 0.2);
    color: var(--primary-yellow);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Trainer Section */
.trainer-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trainer-img-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    transform: translateZ(50px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.trainer-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(8, 9, 12, 0.8) 100%);
    z-index: 1;
}

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

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

.trainer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-address {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 1rem 0 2.5rem;
    line-height: 1.6;
}

.contact-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Footer styling */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 5%;
    background: rgba(8, 9, 12, 0.9);
    backdrop-filter: blur(16px);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 5;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Modal Popup styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    width: 90%;
    max-width: 600px;
    background: rgba(12, 14, 20, 0.95);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.modal-close:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fade-in 0.4s ease forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color 0.3s, background-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(26, 188, 156, 0.02);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* Service select list inside form */
.service-selector {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-select-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.service-select-item:hover {
    border-color: rgba(26, 188, 156, 0.3);
}

.service-select-item.selected {
    border-color: var(--primary-teal);
    background: rgba(26, 188, 156, 0.04);
}

.service-select-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-select-item.selected .service-select-radio {
    border-color: var(--primary-teal);
}

.service-select-item.selected .service-select-radio::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-teal);
    border-radius: 50%;
}

.service-select-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mock Calendar Selector inside form */
.calendar-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
}

.time-slot {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.6rem 0.2rem;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.time-slot:hover {
    border-color: rgba(26, 188, 156, 0.3);
    color: var(--primary-teal);
}

.time-slot.selected {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    box-shadow: 0 0 15px rgba(26, 188, 156, 0.2);
}

.booking-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

/* Success Animations */
.booking-success-view {
    text-align: center;
    padding: 2rem 0;
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(26, 188, 156, 0.1);
    border: 2px solid var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    animation: bounce-success 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounce-success {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Confetti effect placeholder */
.confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* Responsive design adjustments */
@media (max-width: 1024px) {
    .services-grid, .sessions-curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.15rem; }
    .services-grid, .sessions-curriculum-grid { grid-template-columns: 1fr; }
    .trainer-card { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .trainer-img-wrapper { margin: 0 auto; }
    .options-grid { grid-template-columns: 1fr; }
    .quiz-steps { margin-bottom: 2rem; }
    .step-indicator { width: 35px; height: 35px; font-size: 0.85rem; }
    .scorecard-container { padding: 2rem; }
    .trainer-stats { justify-content: center; }
    .footer-content { flex-direction: column; gap: 1.5rem; }
}

/* Workshop Styles */
.carousel-container {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(243, 156, 18, 0.15);
    background: #08090c;
}

.carousel-slides {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    width: 200%; /* 2 slides */
}

.carousel-slide {
    width: 50%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 9, 12, 0.7);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(243, 156, 18, 0.25);
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
    transform: translateY(-50%) scale(1.12);
}

.carousel-control.prev { left: 24px; }
.carousel-control.next { right: 24px; }

.carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.indicator.active {
    background: var(--primary-orange);
    transform: scale(1.25);
    box-shadow: 0 0 12px var(--primary-orange);
}

@media (max-width: 768px) {
    .carousel-control {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .carousel-control.prev { left: 12px; }
    .carousel-control.next { right: 12px; }
    .carousel-indicators { bottom: 12px; }
    .indicator { width: 9px; height: 9px; }
}

/* Who We Work With - Segments Section Styles */
#segments {
    padding: 7rem 5%;
    position: relative;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

.segment-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

.segment-card .glass-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.segment-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-teal);
    margin-bottom: 0.8rem;
    display: block;
}

.segment-headline {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}

.segment-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes the proof and cta to the bottom */
}

.segment-proof {
    font-size: 0.82rem;
    color: var(--primary-yellow);
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.45;
}

.segment-cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    margin-top: auto;
}

/* Card 1: Accented Primary Styling */
.segment-card.primary {
    border-color: rgba(243, 156, 18, 0.35); /* primary-orange border highlight */
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.08);
}

.segment-card.primary:hover {
    border-color: rgba(243, 156, 18, 0.6);
    box-shadow: 0 20px 50px rgba(243, 156, 18, 0.15);
}

.segment-card.primary .segment-label {
    color: var(--primary-orange);
}

.segment-card.primary .segment-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-purple) 100%);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.segment-card.primary .segment-cta:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.35);
}

/* Responsive grid stacking on tablet/mobile */
@media (max-width: 1024px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .segments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    #segments {
        padding: 5rem 5%;
    }
}
