/* Wabi Tech - Custom Styles */
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #14b8a6;
    --accent-color: #f97316;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --dark-lighter: #334155;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --border-color: #334155;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition-base: all 0.3s ease;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 12px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-surface);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 1);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
    transition: var(--transition-base);
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.cta-nav {
    background: var(--primary-color);
    color: white !important;
    border-radius: var(--border-radius);
    margin-left: 1rem;
}

.cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-nav::after {
    display: none;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-secondary);
    color: var(--dark-bg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    filter: blur(60px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    filter: blur(40px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-dot {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Journey Map */
.journey-section {
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.journey-map {
    overflow-x: auto;
    padding: 2rem 0;
}

.journey-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: max-content;
    padding: 0 2rem;
}

.journey-item {
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 300px;
    transition: var(--transition-base);
}

.journey-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.journey-item[data-level="novice"] { border-color: var(--secondary-color); }
.journey-item[data-level="practitioner"] { border-color: var(--primary-color); }
.journey-item[data-level="specialist"] { border-color: var(--accent-color); }

.journey-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.journey-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.journey-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.journey-skills {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.journey-skills li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.journey-skills li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.journey-duration {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
}

.journey-connector {
    flex-shrink: 0;
}

.journey-connector svg {
    width: 100px;
    height: 20px;
    color: var(--border-color);
}

/* Featured Course */
.featured-course-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.course-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.course-content {
    padding-left: 2rem;
}

.course-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.course-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.course-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.course-modules h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.course-modules ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.course-modules li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.course-modules li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.course-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.currency {
    font-size: 1rem;
    color: var(--text-muted);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.course-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lab Section */
.lab-section {
    background: var(--dark-bg);
}

.lab-card {
    background: var(--dark-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.lab-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.lab-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.lab-card:hover .lab-image img {
    transform: scale(1.1);
}

.lab-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--success-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lab-content {
    padding: 1.5rem;
}

.lab-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.lab-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.lab-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonial-section {
    background: var(--dark-surface);
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Resources */
.resources-section {
    background: var(--dark-bg);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.resource-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-link:hover {
    gap: 1rem;
}

/* Events */
.events-section {
    background: var(--dark-surface);
}

.events-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.event-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-meta i {
    color: var(--primary-color);
}

/* Why Section */
.why-section {
    background: var(--dark-bg);
}

.why-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition-base);
}

.why-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-muted);
}

.partners-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--dark-surface);
    border-radius: var(--border-radius);
}

.partners-title {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: var(--transition-base);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary-color);
}

.partners-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.newsletter-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.newsletter-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-form .input-group {
    box-shadow: var(--shadow-lg);
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.newsletter-form .btn:hover {
    background: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}

.footer-compliance {
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* About Page */
.mission-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-marker {
    grid-column: 2;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border: 4px solid var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    justify-self: center;
}

.timeline-content {
    background: var(--dark-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
}

.team-card {
    background: var(--dark-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
}
.legal-content-section .contact-icon{
    margin: 0 auto;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}

.team-content {
    padding: 2rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.team-social a:hover {
    color: var(--primary-color);
}

.founder-card {
    border: 2px solid var(--primary-color);
}

.method-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
}

.method-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--text-muted);
}

.methodology-cta {
    margin-top: 3rem;
}

.methodology-note {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    margin: 0;
}

.contact-quick-card {
    background: var(--dark-surface);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.contact-details i {
    color: var(--primary-color);
    width: 20px;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 2rem;
}

/* Contact Page */
.form-wrapper {
    background: var(--dark-surface);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-form .form-control.is-invalid {
    border-color: var(--error-color);
}

.contact-form .invalid-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
}

.contact-form .form-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-check-input {
    background-color: var(--dark-bg);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-secondary);
}

.recaptcha-note {
    background: rgba(99, 102, 241, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.button-spinner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-feedback-message {
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-feedback-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
    display: block;
}

.form-feedback-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
    display: block;
}

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.info-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-details small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-connect {
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.social-connect h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.response-time-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.response-time-badge i {
    color: var(--success-color);
}

.response-time-badge strong {
    color: var(--success-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-card {
    background: var(--dark-surface);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.faq-card h2 {
    margin-bottom: 2rem;
}

.faq-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition-base);
    color: var(--text-secondary);
}

.faq-link-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    color: var(--text-primary);
}

.faq-link-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.faq-link-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.faq-link-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Legal Pages */
.legal-content-section {
    padding: 4rem 0;
}

.legal-document {
    background: var(--dark-surface);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-primary);
}

.contact-info {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.cookie-table,
.cookie-detail-table {
    background: var(--dark-bg);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.cookie-table thead,
.cookie-detail-table thead {
    background: var(--dark-surface);
    color: var(--text-primary);
}

.cookie-table td,
.cookie-table th,
.cookie-detail-table td,
.cookie-detail-table th {
    border-color: var(--border-color);
    padding: 1rem;
}

.corporate-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.address-block {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }
    
    .timeline-marker {
        grid-column: 1;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 2;
        text-align: left;
    }
    
    .contact-info-wrapper {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .journey-track {
        flex-direction: column;
        align-items: stretch;
    }
    
    .journey-connector {
        display: none;
    }
    
    .course-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .course-pricing {
        flex-direction: column;
        text-align: center;
    }
    
    .partners-logos {
        gap: 1.5rem;
    }
    
    .partner-logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons button {
        flex: 1;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

.navbar-brand img{
    max-width: 200px;
}

html{
    overflow-x: hidden;
}

@media(max-width: 580px){
    .newsletter-form .input-group{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form .input-group > *{
        border-radius: 12px!important;
        overflow: hidden!important;
        width: 100%;
    }
    .newsletter-wrapper{
        padding: 30px 15px;
    }
}