
/* ========================================
   HERO SECTION STYLES
   ======================================== */

/* Hero Section Base */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Headline */
.hero-headline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-headline span {
    color: #dc2626; /* red-600 */
}

/* Hero Description */
.hero-description {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 120%;
    opacity: 0.9;
}


.primary-btn {
    display: inline-block;
    width: fit-content;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: var(--color-red-600);
    color: var(--color-white);
    border-radius: calc(infinity * 1px);
    transition: color 0.3s ease, scale 0.1s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.primary-btn:hover {
    background-color: var(--color-red-700);
    scale: 105%;
}

.primary-btn::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;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

@media (max-width: 767px) {    
    .primary-btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .primary-btn {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .primary-btn {
        padding: 1rem 2rem;
    }
}

@media (min-width: 1024px) {
    .primary-btn {
        padding: 1.6875rem 2.5rem;
    }
}
/* Hero Media */
.hero-media {
    position: relative;
    z-index: 1;
}

/* Hero Placeholder */
.hero-placeholder {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-placeholder:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {    
    .hero-content {
        order: 2;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    
    .hero-media {
        order: 1;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-placeholder {
        height: 200px;
        border-radius: 1rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-placeholder {
        height: 400px;
        border-radius: 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {    
    .hero-placeholder {
        height: 485px;
        border-radius: 2rem;
    }
    
    .hero-headline {
        font-size: 5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-headline {
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 0.5em;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-placeholder {
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

/* Mobile Animation Override */
@media (max-width: 767px) {
    .hero-placeholder {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .hero-content {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
}

/* ========================================
   CUSTOM COLOR OVERRIDES
   ======================================== */

/* Override gray-800 with custom color */
.bg-gray-800 {
    background-color: #161616 !important;
}

/* ========================================
   COURSES SECTION STYLES
   ======================================== */

/* Courses Section Base */
.courses-section {
    position: relative;
    overflow: hidden;
}

/* Courses Header */
.courses-header {
    text-align: left;
}

.courses-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.courses-subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* Courses Slider */
.courses-slider-container {
    position: relative;
}

.courses-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.courses-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Course Cards */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-card-inner {
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-card-inner:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Course Image */
.course-image {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-image:hover {
    transform: scale(1.05);
}

/* Course Content */
.course-content {
    position: relative;
}

/* Course Tag */
.course-tag {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.course-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.4);
}

/* Course Title */
.course-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.course-title:hover {
    color: #fca5a5; /* light red */
}

/* Course Details */
.course-details {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
}

.course-duration,
.course-format {
    position: relative;
    padding-left: 1.5rem;
}

.course-duration::before,
.course-format::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: #dc2626;
    border-radius: 50%;
}

/* Course Link */
.course-link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.course-link:hover::after {
    transform: translateX(4px);
}

/* Navigation */
.courses-navigation {
    position: relative;
    z-index: 10;
}

.navigation-container {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.courses-nav-btn {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.courses-nav-btn::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;
}

.courses-nav-btn:hover::before {
    left: 100%;
}

.courses-nav-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.courses-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.courses-nav-btn:not(:disabled):hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .courses-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .courses-header {
        margin-bottom: 2rem;
    }
    
    .courses-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .courses-subtitle {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .course-card {
        width: 280px;
        margin-right: 1rem;
    }
    
    .course-image {
        height: 12rem;
    }
    
    .course-content {
        padding: 1rem;
    }
    
    .course-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .course-duration,
    .course-format {
        font-size: 0.75rem;
    }
    
    .course-link {
        font-size: 0.75rem;
    }
    
    .courses-navigation {
        margin-top: 2rem;
    }
    
    .navigation-container {
        padding: 0.5rem;
    }
    
    .courses-nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .courses-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .courses-header {
        margin-bottom: 3rem;
    }
    
    .courses-title {
        font-size: 2rem;
    }
    
    .courses-subtitle {
        font-size: 1.125rem;
    }
    
    .course-card {
        width: 384px;
        margin-right: 1.5rem;
    }
    
    .course-image {
        height: 14rem;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-title {
        font-size: 1.25rem;
    }
    
    .course-duration,
    .course-format {
        font-size: 0.875rem;
    }
    
    .course-link {
        font-size: 0.875rem;
    }
    
    .courses-navigation {
        margin-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .courses-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .courses-header {
        margin-bottom: 3rem;
    }
    
    .courses-title {
        font-size: 4rem;
    }
    
    .courses-subtitle {
        font-size: 1.25rem;
    }
    
    .course-card {
        width: 400px;
        margin-right: 1.5rem;
    }
    
    .course-image {
        height: 16rem;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-title {
        font-size: 1.5rem;
    }
    
    .course-duration,
    .course-format {
        font-size: 1rem;
    }
    
    .course-link {
        font-size: 1rem;
    }
    
    .courses-navigation {
        margin-top: 2rem;
    }
}

/* Animation Classes */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.courses-header {
    animation: fadeInUp 0.8s ease-out;
}

.courses-slider {
    /* Animation removed to allow JavaScript transform control */
}

.courses-navigation {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Touch and Drag Styles */
.courses-slider {
    cursor: grab;
    user-select: none;
}

.courses-slider:active {
    cursor: grabbing;
}

/* Accessibility */
.course-card:focus-within {
    outline: 2px solid #ef4444;
    outline-offset: 4px;
    border-radius: 1rem;
}

.course-link:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.menu-item:focus,
.submenu-item:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Loading Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

.mobile-menu.slide-in {
    animation: slideIn 0.3s ease-out;
}

.mobile-menu.slide-out {
    animation: slideOut 0.3s ease-out;
}

.submenu.slide-in {
    animation: slideIn 0.3s ease-out;
}

.submenu.slide-out {
    animation: slideOut 0.3s ease-out;
}

/* ========================================
   FEATURES SECTION STYLES
   ======================================== */

/* Features Section Base */
.features-section {
    position: relative;
    overflow: hidden;
}

/* Features Container */
.features-container {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.features-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Features Header */
.features-header {
    position: relative;
}

.features-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* Features Grid */
.features-grid {
    position: relative;
}

/* Feature Items */
.feature-item {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.feature-item:hover {
    transform: translateY(-4px);
    background: rgba(220, 38, 38, 0.02);
}

/* Feature Icons */
.feature-icon {
    transition: all 0.3s ease;
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Feature Titles */
.feature-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
    color: #dc2626;
}

/* Feature Descriptions */
.feature-description {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    transition: color 0.3s ease;
    grid-column: 2;
    grid-row: 2;
    margin: 0;
}

.feature-item:hover .feature-description {
    color: #374151;
}

/* Motivational Text */
.motivational-text:hover {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.2);
}

/* Features CTA Button */
.features-cta-btn {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.features-cta-btn::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;
}

.features-cta-btn:hover::before {
    left: 100%;
}

.features-cta-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .features-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .features-container {
        border-radius: 1.5rem;
    }
    
    .features-header {
        margin-bottom: 2rem;
    }
    
    .features-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .features-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .features-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 0;
    }
    
    .feature-icon {
        width: auto;
        height: 1.5rem;
        margin-bottom: 0;
    }
    
    .feature-title {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    .feature-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .motivational-text p {
        font-size: 0.875rem;
    }
    
    .features-cta-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .features-container {
        border-radius: 2rem;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1.25rem;
    }
    
    .features-grid {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        grid-template-columns: none;
        gap: 0;
    }
    
    .feature-icon {
        margin-bottom: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .motivational-text p {
        font-size: 1.125rem;
    }
    
    .features-cta-btn {
        font-size: 1.25rem;
        padding: 1rem 3rem;
    }
}

@media (min-width: 1024px) {
    .features-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .features-container {
        border-radius: 2rem;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
    
    .features-title {
        font-size: 4rem;
    }
    
    .features-subtitle {
        font-size: 1.5rem;
    }
    
    .features-grid {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .feature-item {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        grid-template-columns: none;
        gap: 0;
    }
    
    .feature-icon {
        margin-bottom: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 1.125rem;
    }
    
    .motivational-text p {
        font-size: 1.25rem;
    }
    
    .features-cta-btn {
        font-size: 1.5rem;
        padding: 1.25rem 3rem;
    }
}

/* Animation Classes */
.features-header {
    animation: fadeInUp 0.8s ease-out;
}

.features-grid {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.features-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Accessibility */
.feature-item:focus-within {
    outline: 2px solid #ef4444;
    outline-offset: 4px;
    border-radius: 1rem;
}

.features-cta-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* ========================================
   CERTIFICATE BANNER SECTION STYLES
   ======================================== */

/* Certificate Banner Section Base */
.certificate-banner-section {
    position: relative;
    overflow: hidden;
}

/* Banner Container */
.banner-container {
    position: relative;
}

/* Content Card */
.content-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
    transition: all 0.3s ease;
    width: 60%;
}

.content-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Banner Title */
.banner-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Banner Description */
.banner-description {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    max-width: 350px;
}

/* Banner CTA Button */
.banner-cta-btn {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.banner-cta-btn::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;
}

.banner-cta-btn:hover::before {
    left: 100%;
}

.banner-cta-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}


/* Responsive Adjustments */
@media (max-width: 767px) {
    .certificate-banner-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .content-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .banner-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .banner-cta-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .certificate-banner-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1.125rem;
    }
    
    .banner-cta-btn {
        font-size: 1.25rem;
        padding: 1rem 3rem;
    }
}

@media (min-width: 1024px) {
    .certificate-banner-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .content-card {
        padding: 5rem;
    }
    
    .banner-title {
        font-size: 4rem;
    }
    
    .banner-description {
        font-size: 1.25rem;
    }
    
    .banner-cta-btn {
        font-size: 1.5rem;
        padding: 1.25rem 3rem;
    }
}


@media (max-width: 767px) {
  .banner-content {
    flex-direction: column-reverse;
  }
  
  .content-card {
    width: 100%;
  }
  
  .content-certificate {
    width: 100%;
    height: 312px;
    width: 100%;
  }
  
  .banner-description {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .content-certificate {
    width: 40%;
  }
}

/* Animation Classes */
.banner-content {
  display: flex;
    animation: fadeInUp 0.8s ease-out;
    overflow: hidden;
}

.content-certificate {
    margin-left: auto;
}

.content-certificate img {
    height:100%;
    width: 100%;
    object-fit: cover;
}

/* Accessibility */
.content-card:focus-within {
    outline: 2px solid #ef4444;
    outline-offset: 4px;
    border-radius: 1.5rem;
}

.banner-cta-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}


/* ========================================
   LOCATIONS SECTION STYLES
   ======================================== */

/* Locations Section */
.locations-section {
    position: relative;
}

/* Section Header */
.locations-header {
    text-align: center;
}

.locations-title {
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    gap: 1.5rem;
}

/* Location Card */
.location-card {
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
}

.card-inner {
    position: relative;
    background: transparent;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card-inner:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Card Header */
.card-header {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-icon {
}

.location-name {
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.4;
}

.nisv-label {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.nisv-label span {
    color: #6b7280;
}

/* Card Image */
.card-image {
    position: relative;
    overflow: hidden;
}

.location-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Black and White Effect - Desktop Only */
@media (min-width: 768px) {
    .location-image {
        filter: grayscale(100%);
        transition: filter 0.5s ease;
    }
    
    .location-card:hover .location-image {
        filter: grayscale(0%);
    }
}

/* Mobile - Always Color */
@media (max-width: 767px) {
    .location-image {
        filter: grayscale(0%);
    }
}

/* Responsive Adjustments for Locations */
@media (max-width: 767px) {
    .locations-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .locations-header {
        margin-bottom: 2rem;
    }
    
    .locations-title {
        line-height: 1.3;
    }
    
    .locations-grid {
        gap: 1rem;
    }
    
    .card-header {
        padding: 0.75rem;
    }
    
    
    .location-image {
    }
    
    .nisv-label {
        padding: 0.125rem 0.5rem;
    }
    
}

@media (min-width: 768px) and (max-width: 1023px) {
    .locations-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .locations-header {
        margin-bottom: 3rem;
    }
    
    
    .locations-grid {
        gap: 2rem;
    }
    
    .location-image {
    }
}

@media (min-width: 1024px) {
    .locations-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .locations-header {
        margin-bottom: 3rem;
    }
    
    
    .locations-grid {
        gap: 2rem;
    }
    
    .location-image {
    }
    
    .card-inner:hover {
        transform: translateY(-8px);
    }
}

/* Animation Classes */
.locations-header {
    animation: fadeInUp 0.8s ease-out;
}

.location-card {
    animation: fadeInUp 0.8s ease-out;
}

.location-card:nth-child(1) {
    animation-delay: 0.1s;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.location-card:nth-child(3) {
    animation-delay: 0.3s;
}

.location-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Accessibility */
.location-card:focus {
    outline: 2px solid #ef4444;
    outline-offset: 4px;
    border-radius: 1rem;
}

.location-card:focus .card-inner {
    box-shadow: 0 0 0 2px #ef4444;
}

/* ========================================
   Video Testimonials Carousel Styles
   ======================================== */

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    padding: 0 1rem;
    max-width: 100%;
}

/* Navigation Buttons */
.testimonials-nav-btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonials-nav-btn:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.testimonials-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    margin: 0 auto;
    max-width: 100%;
}

/* Slider */
.testimonials-slider {
    will-change: transform;
    gap: 12px;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card-inner {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-card-inner:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Video Placeholder */
.testimonial-video-placeholder {
    position: relative;
    overflow: hidden;
}

.testimonial-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.testimonial-card-inner:hover .testimonial-video-placeholder::before {
    transform: translateX(100%);
}

/* Play Button */
.play-button {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.testimonial-card-inner:hover .play-button::before {
    transform: translate(-50%, -50%) scale(1.2);
}

.testimonial-card-inner:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-dot {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.pagination-dot:hover {
    transform: scale(1.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.pagination-dot.active {
    transform: scale(1.3);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
}

.pagination-dot:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-dot:disabled:hover {
    transform: none;
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        width: 18rem;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-container {
        padding: 0 0.5rem;
    }
    
    .testimonials-nav-btn {
        width: 3rem;
        height: 3rem;
        transform: translateY(-50%) scale(1);
    }
    
    .testimonials-nav-btn:hover:not(:disabled) {
        transform: translateY(-50%) scale(0.9);
    }
    
    .testimonial-card {
        width: auto; /* widths are set dynamically in JS for 2-up layout */
    }
    
    .play-button {
        width: 3rem;
        height: 3rem;
    }
    
    .pagination-dot {
        width: 0.5rem;
        height: 0.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-carousel-container {
        padding: 0 0.25rem;
    }
    
    .testimonial-card {
        width: 100%;
        margin-right: 0 !important;
    }
    .testimonials-slider { gap: 0; }
    
    .testimonials-nav-btn {
        width: 3.25rem;
        height: 3.25rem;
        transform: translateY(-50%) scale(1);
    }
    
    .testimonials-nav-btn:hover:not(:disabled) {
        transform: translateY(-50%) scale(0.8);
    }
}

/* Loading Animation */
.testimonials-slider.loading {
    opacity: 0.7;
}

.testimonials-slider.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2rem;
    border: 2px solid #ef4444;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Accessibility Improvements */
.testimonials-nav-btn:focus,
.pagination-dot:focus,
.testimonial-card-inner:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .testimonial-video-placeholder {
        background: var(--color-theme-black);
        border: 2px solid #fff;
    }
    
    .play-button {
        background: #fff;
        color: var(--color-theme-black);
    }
    
    .pagination-dot {
        border: 2px solid #fff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .testimonials-slider,
    .testimonial-card,
    .testimonial-card-inner,
    .play-button,
    .pagination-dot,
    .testimonials-nav-btn {
        transition: none;
    }
    
    .testimonial-video-placeholder::before {
        display: none;
    }
}

/* ========================================
   MANAGEMENT SECTION STYLES
   ======================================== */

/* Management Section Base */
/* Management Cards */
.management-card {
    background: #1f2937; /* gray-800 */
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.management-card:hover {
    background: #374151; /* gray-700 */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Coming Soon Badge */
.management-card .bg-white {
    background: #ffffff;
    color: var(--color-theme-black);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
}

/* Card Title */
.management-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .management-section {
        padding: 2rem 0;
    }
    
    .management-card {
        min-height: 150px;
        padding: 1.5rem;
    }
    
    .management-card h3 {
        font-size: 1rem;
    }
    
    .management-card .bg-white {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        top: 1rem;
        left: 1rem;
    }
}

@media (max-width: 640px) {
    .management-section .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .management-card {
        min-height: 120px;
        padding: 1rem;
    }
    
    .management-card h3 {
        font-size: 0.875rem;
    }
}

/* Accessibility Improvements */
.management-card:focus-within {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .management-card {
        background: var(--color-theme-black);
        border: 2px solid #ffffff;
    }
    
    .management-card:hover {
        background: #1a1a1a;
    }
    
    .management-card .bg-white {
        background: var(--color-theme-black);
        color: #ffffff;
        border: 1px solid #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .management-card {
        transition: none;
    }
    
    .management-card:hover {
        transform: none;
    }
}

/* ========================================
   SECTION CARDS STYLES
   ======================================== */

/* Section Cards Base */
.section-cards {
    background: var(--color-theme-black);
}

/* Cards Grid */
.section-cards .grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .section-cards .grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .section-cards .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-cards .grid.lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Card */
.section-cards .rounded-\\[28px\\] {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-cards .rounded-\\[28px\\]:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Card Image Placeholder */
.section-cards .aspect-\\[16\\/11\\] {
    aspect-ratio: 16/11;
    background: #ffffff;
    width: 100%;
}

/* Card Content */
.section-cards .p-5 {
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .section-cards .sm\\:p-6 {
        padding: 1.5rem;
    }
}

/* Card Title */
.section-cards h3 {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    margin: 0;
}

@media (min-width: 640px) {
    .section-cards .sm\\:text-base {
        font-size: 1rem;
    }
}

/* Card Description */
.section-cards p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 640px) {
    .section-cards .sm\\:text-sm {
        font-size: 0.875rem;
    }
}

/* Section Title */
.section-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Note Badge */
.section-cards .rounded-xl {
    background: #dc2626;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.6875rem;
    display: inline-block;
}

@media (min-width: 640px) {
    .section-cards .sm\\:text-xs {
        font-size: 0.75rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .section-cards .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-cards .p-5 {
        padding: 1rem;
    }
    
    .section-cards h3 {
        font-size: 0.75rem;
    }
    
    .section-cards p {
        font-size: 0.6875rem;
    }
}

/* Accessibility Improvements */
.section-cards .rounded-\\[28px\\]:focus-within {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .section-cards .rounded-\\[28px\\] {
        background: var(--color-theme-black);
        border: 2px solid #ffffff;
    }
    
    .section-cards .aspect-\\[16\\/11\\] {
        background: #ffffff;
        border: 1px solid var(--color-theme-black);
    }
    
    .section-cards h3,
    .section-cards p {
        color: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .section-cards .rounded-\\[28px\\] {
        transition: none;
    }
    
    .section-cards .rounded-\\[28px\\]:hover {
        transform: none;
    }
}

/* ========================================
   BLOG HEADER SECTION STYLES
   ======================================== */

/* Blog Header Section Base */
.blog-header-section {
    background: var(--color-theme-black);
}

/* Blog Header Title */
.blog-header-section h1 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}

/* Blog Header Breadcrumb */
.blog-header-section nav ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.5;
}

.blog-header-section nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-header-section nav a:hover {
    color: #ffffff;
    opacity: 1;
}

.blog-header-section nav li:last-child {
    color: #ffffff;
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-header-section {
        padding: 2rem 0;
    }
    
    .blog-header-section h1 {
        font-size: 2.5rem;
    }
    
    .blog-header-section nav {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .blog-header-section {
        padding: 1.5rem 0;
    }
    
    .blog-header-section h1 {
        font-size: 2rem;
    }
    
    .blog-header-section nav {
        margin-bottom: 1rem;
    }
    
    .blog-header-section nav ol {
        font-size: 0.75rem;
    }
}

/* Accessibility Improvements */
.blog-header-section nav a:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
    border-radius: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .blog-header-section {
        background: var(--color-theme-black);
    }
    
    .blog-header-section h1 {
        color: #ffffff;
    }
    
    .blog-header-section nav ol {
        color: #ffffff;
    }
    
    .blog-header-section nav a {
        color: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .blog-header-section nav a {
        transition: none;
    }
}

/* ========================================
   BLOG GRID SECTION STYLES
   ======================================== */

/* Blog Grid Section Base */
.blog-grid-section {
    background: var(--color-theme-black);
}

/* Blog Post Cards */
.blog-post-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.blog-post-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


/* Card Content */
.blog-post-card .p-6 {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .blog-post-card .md\\:p-8 {
        padding: 2rem;
    }
}

/* Card Title */
.blog-post-card h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

@media (min-width: 768px) {
    .blog-post-card .md\\:text-xl {
        font-size: 1.25rem;
    }
}

/* Card Description */
.blog-post-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .blog-post-card .md\\:text-base {
        font-size: 1rem;
    }
}

/* Read More Button */
.blog-post-card .bg-red-600 {
    background: #dc2626;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.blog-post-card .bg-red-600:hover {
    background: #b91c1c;
}

/* Section Title */
.blog-grid-section h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

@media (min-width: 768px) {
    .blog-grid-section .md\\:text-3xl {
        font-size: 1.875rem;
    }
}

/* Pagination Styles */
.pagination-nav {
    display: flex;
    justify-content: center;
}

.pagination-nav .flex { display: flex; align-items: center; }

/* Arrow links */
.pagination-arrow-link { display: inline-flex; align-items: center; justify-content: center; }

/* Page numbers */
.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.06);
}

.pagination-number:hover { background: rgba(255,255,255,0.08); }
.pagination-number.active { color: #ef4444; background: rgba(255,255,255,0.08); }

.pagination-ellipsis { color: rgba(255, 255, 255, 0.8); font-size: 1rem; }

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .pagination-nav .flex {
        gap: 1rem;
    }
    
    .pagination-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
    
    .pagination-ellipsis {
        font-size: 0.875rem;
    }
    
    .pagination-arrow-link svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 640px) {
    .pagination-nav .flex {
        gap: 0.5rem;
    }
    
    .pagination-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .pagination-ellipsis {
        font-size: 0.75rem;
    }
    
    .pagination-arrow-link svg {
        width: 1rem;
        height: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-grid-section {
        padding: 2rem 0;
    }
    
    .blog-post-card .p-6 {
        padding: 1rem;
    }
    
    .blog-post-card h3 {
        font-size: 1rem;
    }
    
    .blog-post-card p {
        font-size: 0.75rem;
    }
    
    .blog-post-card .bg-red-600 {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .blog-grid-section h2 {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .pagination-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .pagination-arrow {
        width: 2rem;
        height: 2rem;
    }
    
    .pagination-ellipsis {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .blog-grid-section .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Accessibility Improvements */
.blog-post-card:focus-within,
.pagination-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .blog-post-card {
        background: var(--color-theme-black);
        border: 2px solid #ffffff;
    }
    
    .blog-post-card h3,
    .blog-post-card p {
        color: #ffffff;
    }
    
    .pagination-btn {
        border: 2px solid #ffffff;
        color: #ffffff;
    }
    
    .pagination-btn.active {
        background: #ffffff;
        color: var(--color-theme-black);
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: #FDFAF4;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 6rem 0;
    }
}

.contact-title {
    font-family: 'Inter Tight', serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #56443F;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .contact-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1536px) {
    .contact-title {
        font-size: 4rem;
    }
}

.contact-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    color: #56443F;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.25rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-content {
    flex: 1;
}

.contact-link {
    color: #56443F;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #A38C79;
}

.contact-text {
    color: #56443F;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.contact-map {
    width: 100%;
}

.map-container {
    position: relative;
    width: 100%;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .map-container {
        height: 31.25rem;
    }
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-section .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .contact-link,
    .contact-text {
        font-size: 1rem;
    }
    
    .map-container {
        height: 20rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        gap: 1.25rem;
    }
    
    .contact-item {
        gap: 0.5rem;
    }
    
    .contact-icon {
        width: 1rem;
        height: 1rem;
    }
    
    .contact-link,
    .contact-text {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 16rem;
    }
}

/* Accessibility Improvements for Contact Section */
.contact-link:focus {
    outline: 2px solid #56443F;
    outline-offset: 2px;
    border-radius: 2px;
}

.map-container:focus-within {
    outline: 2px solid #56443F;
    outline-offset: 2px;
}

/* High Contrast Mode Support for Contact Section */
@media (prefers-contrast: high) {
    .contact-section {
        background-color: #ffffff;
        border: 2px solid var(--color-theme-black);
    }
    
    .contact-title,
    .contact-subtitle,
    .contact-link,
    .contact-text {
        color: var(--color-theme-black);
    }
    
    .contact-link:hover {
        color: #333333;
    }
    
    .contact-icon svg {
        stroke: var(--color-theme-black);
        fill: var(--color-theme-black);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .blog-post-card,
    .blog-post-card .bg-red-600,
    .pagination-btn {
        transition: none;
    }
    
    .blog-post-card:hover {
        transform: none;
    }
}

/* ========================================
   TEXT PAGE STYLES (Datenschutz, etc.)
   ======================================== */

/* Text Page Base */
.text-page {
    background: var(--color-theme-black);
    padding: 4rem 0;
}

/* Text Page Container */
.text-page .text-container {
    max-width: 800px;
}

/* Main Title */
.text-page .entry-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 3rem 0;
    letter-spacing: -0.02em;
}

/* Entry Content */
.text-page .entry-content {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Headings */
.text-page .entry-content h1,
.text-page .entry-content h2,
.text-page .entry-content h3,
.text-page .entry-content h4,
.text-page .entry-content h5,
.text-page .entry-content h6 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.text-page .entry-content h1 {
    font-size: 2.5rem;
}

.text-page .entry-content h2 {
    font-size: 2rem;
}

.text-page .entry-content h3 {
    font-size: 1.75rem;
}

.text-page .entry-content h4 {
    font-size: 1.5rem;
}

.text-page .entry-content h5 {
    font-size: 1.25rem;
}

.text-page .entry-content h6 {
    font-size: 1.125rem;
}

/* Paragraphs */
.text-page .entry-content p {
    margin: 0 0 1.5rem 0;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Lists */
.text-page .entry-content ul,
.text-page .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #ffffff;
}

.text-page .entry-content li {
    margin: 0.75rem 0;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-page .entry-content ul li {
    list-style-type: disc;
}

.text-page .entry-content ol li {
    list-style-type: decimal;
}

/* Strong/Bold Text */
.text-page .entry-content strong,
.text-page .entry-content b {
    font-weight: 600;
    color: #ffffff;
}

/* Links */
.text-page .entry-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.text-page .entry-content a:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* Contact Information */
.text-page .entry-content .contact-info {
    margin: 1.5rem 0;
}

.text-page .entry-content .contact-info p {
    margin: 0.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .text-page {
        padding: 2rem 0;
    }
    
    .text-page .a-container {
        padding: 0 1rem;
    }
    
    .text-page .entry-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .text-page .entry-content {
        font-size: 1rem;
    }
    
    .text-page .entry-content p,
    .text-page .entry-content li {
        font-size: 1rem;
    }
    
    .text-page .entry-content h1 {
        font-size: 2rem;
    }
    
    .text-page .entry-content h2 {
        font-size: 1.75rem;
    }
    
    .text-page .entry-content h3 {
        font-size: 1.5rem;
    }
    
    .text-page .entry-content h4 {
        font-size: 1.25rem;
    }
    
    .text-page .entry-content h5 {
        font-size: 1.125rem;
    }
    
    .text-page .entry-content h6 {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .text-page .entry-title {
        font-size: 2rem;
    }
    
    .text-page .entry-content h1 {
        font-size: 1.75rem;
    }
    
    .text-page .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .text-page .entry-content h3 {
        font-size: 1.25rem;
    }
}

/* Accessibility Improvements */
.text-page .entry-content a:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
    border-radius: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .text-page {
        background: var(--color-theme-black);
    }
    
    .text-page .entry-title,
    .text-page .entry-content,
    .text-page .entry-content h1,
    .text-page .entry-content h2,
    .text-page .entry-content h3,
    .text-page .entry-content h4,
    .text-page .entry-content h5,
    .text-page .entry-content h6,
    .text-page .entry-content p,
    .text-page .entry-content li,
    .text-page .entry-content strong,
    .text-page .entry-content b,
    .text-page .entry-content a {
        color: #ffffff;
    }
}

/* ========================================
   AMBASSADOR LEVELS SECTION STYLES
   ======================================== */

/* Ambassador Levels Section Base */
.ambassador-levels-section {
    position: relative;
    overflow: hidden;
}

/* Level Card */
.level-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.level-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Level Number */
.level-number {
    position: relative;
}

.level-number > div {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.level-card:hover .level-number > div {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Level Content */
.level-content h3 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.level-content p:last-child {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Badge */
.level-content span {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.level-card:hover .level-content span {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .level-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .level-number {
        align-self: center;
    }
    
    .level-content {
        text-align: center;
    }
    
    .level-content .flex {
        justify-content: center;
    }
}

/* ========================================
   BONUS FLOW SECTION STYLES
   ======================================== */

/* Bonus Flow Section Base */
.bonus-flow-section {
    position: relative;
    overflow: hidden;
}

/* Flow Steps */
.bonus-flow-section .flex {
    font-family: 'Inter Tight', sans-serif;
}

.bonus-flow-section span {
    font-weight: 500;
}

/* Responsive Flow Steps */
@media (max-width: 767px) {
    .bonus-flow-section .flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bonus-flow-section .hidden {
        display: none;
    }
}

/* ========================================
   REFERRAL FORM SECTION STYLES
   ======================================== */

/* Referral Form Section Base */
.referral-form-section {
    position: relative;
    overflow: hidden;
}

/* Form Styling */
.referral-form {
    font-family: 'Inter Tight', sans-serif;
}

.referral-form .form-group {
    position: relative;
}

.referral-form input,
.referral-form textarea {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.referral-form input:focus,
.referral-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.referral-form label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Submit Button */
.referral-submit-btn {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.referral-submit-btn::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;
}

.referral-submit-btn:hover::before {
    left: 100%;
}

.referral-submit-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Form Validation States */
.referral-form input:invalid:not(:placeholder-shown),
.referral-form textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.referral-form input:valid:not(:placeholder-shown),
.referral-form textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .referral-form-section h2 {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .referral-form .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .referral-submit-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .text-page .entry-content a {
        transition: none;
    }
    
    .level-card,
    .level-number > div,
    .level-content span {
        transition: none;
    }
    
    .level-card:hover {
        transform: none;
    }
    
    .level-card:hover .level-number > div {
        transform: none;
    }
    
    .referral-form input,
    .referral-form textarea,
    .referral-submit-btn {
        transition: none;
    }
    
    .referral-submit-btn:hover {
        transform: none;
    }
    
    .referral-submit-btn::before {
        display: none;
    }
}

/* ========================================
   COURSES PAGE STYLES
   ======================================== */

/* Course Filter Buttons */
.course-filter-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: #2B2827;
    color: white;
}

.course-filter-btn.active {
    background-color: #dc2626; /* red-600 */
    color: white;
}

.course-filter-btn:hover:not(.active) {
    background-color: #3B3837;
    transform: translateY(-1px);
}

/* Course Cards */
.course-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-4px);
}

.course-card .course-image {
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.course-card .course-content {
    transition: all 0.3s ease;
}

.course-card:hover .course-content {
    background-color: #3B3837;
}

/* Course Grid */
.course-grid {
    margin-top: 2rem;
}

/* Responsive adjustments for courses page */
@media (max-width: 768px) {
    .course-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .course-filter-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

.course-steps-1 .course-step:nth-child(3) svg {
    transform: scaleX(-1);
}

.course-steps-2 .course-step:nth-child(2) svg {
    transform: scaleX(-1);
}

.course-steps-2 .course-step:last-child svg {
    display: none;
}