/* Global Styles */
:root {
    --legendary-red: #ff3b30;
    --dark-red: #c62828;
    --accent-red: #ff6347;
    --black: #121212;
    --dark-gray: #212121;
    --light-gray: #424242;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {

    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--legendary-red);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

section {
    padding: 100px 0;
    position: relative;
}

/* Lava Background Effect */
.lava-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
    overflow: hidden;
    z-index: -1;
}

.lava-background:before,
.lava-background:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 59, 48, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 59, 48, 0.3) 0%, transparent 35%),
        radial-gradient(circle at 40% 20%, rgba(198, 40, 40, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255, 99, 71, 0.3) 0%, transparent 45%);
    animation: lavaMove 20s infinite alternate ease-in-out;
    z-index: -1;
}

.lava-background:after {
    filter: blur(30px);
    opacity: 0.7;
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes lavaMove {
    0% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        transform: rotate(5deg) scale(1.1);
    }
}

/* Navigation */
.navbar {
    background-color: rgba(18, 18, 18, 0.9);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Logo Styles */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.logo-animation {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--legendary-red), transparent);
    transform: translateY(-50%);
    transition: width 0.6s ease;
    z-index: 1;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 59, 48, 0.6));
}

.logo-container:hover .logo-animation {
    width: 100%;
    animation: logoGlow 1.5s infinite alternate;
}

@keyframes logoGlow {
    0% {
        opacity: 0.4;
        height: 2px;
    }
    100% {
        opacity: 0.8;
        height: 4px;
    }
}

/* Navigation Links */
.navbar-nav .nav-link {
    position: relative;
    color: var(--white);
    margin: 0 10px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.animated-link {
    position: relative;
    display: inline-block;
}

.link-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.link-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--legendary-red);
    transition: width 0.3s ease;
}

.animated-link:hover .link-text {
    color: var(--legendary-red);
}

.animated-link:hover .link-hover-effect {
    width: 100%;
    animation: linkPulse 1.5s infinite alternate;
}

@keyframes linkPulse {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 5px var(--legendary-red);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--legendary-red), 0 0 20px rgba(255, 59, 48, 0.4);
    }
}

/* Register Button */
.navbar-nav .btn-register {
    background-color: var(--legendary-red);
    border-radius: 25px;
    padding: 8px 20px;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pulsating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.pulsating-btn:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.5);
}

.pulsating-btn:hover::before {
    animation: btnPulse 1.5s infinite;
}

@keyframes btnPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--black);
    overflow: hidden;
}

/* Background Elements */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

/* Animated Floating Elements */
.hero-animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 8px;
    padding: 10px 15px;
    background-color: rgba(33, 33, 33, 0.7);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 5px rgba(255, 59, 48, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    backdrop-filter: blur(3px);
    animation: float 8s infinite ease-in-out;
}

#element1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

#element2 {
    top: 35%;
    right: 10%;
    animation-delay: 1s;
}

#element3 {

    left: 20%;
    animation-delay: 2s;
}

#element4 {
    top: 15%;
    right: 25%;
    animation-delay: 3s;
}

#element5 {

    right: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.code-snippet, .ai-model, .code-block, .ai-badge, .design-component {
    position: relative;
}

.code-snippet::before, .ai-model::before, .code-block::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--legendary-red);
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(18, 18, 18, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Particle Effects */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.7;
    z-index: 1;
    box-shadow: 0 0 10px 2px rgba(255, 59, 48, 0.3);
    animation: particleFloat 15s infinite ease-in-out alternate;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(10px) translateX(20px);
    }
    75% {
        transform: translateY(15px) translateX(-15px);
    }
    100% {
        transform: translateY(-15px) translateX(-10px);
    }
}

/* Animated Title */
.animated-title {
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
    display: inline-block;
}

.letter-animation {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation delay to each letter */
.letter-animation:nth-child(1) { animation-delay: 0.1s; }
.letter-animation:nth-child(2) { animation-delay: 0.15s; }
.letter-animation:nth-child(3) { animation-delay: 0.2s; }
.letter-animation:nth-child(4) { animation-delay: 0.25s; }
.letter-animation:nth-child(5) { animation-delay: 0.3s; }
.letter-animation:nth-child(6) { animation-delay: 0.35s; }
.letter-animation:nth-child(7) { animation-delay: 0.4s; }
.letter-animation:nth-child(8) { animation-delay: 0.45s; }
.letter-animation:nth-child(9) { animation-delay: 0.5s; }
.letter-animation:nth-child(10) { animation-delay: 0.55s; }
.letter-animation:nth-child(11) { animation-delay: 0.6s; }
.letter-animation:nth-child(12) { animation-delay: 0.65s; }
.letter-animation:nth-child(13) { animation-delay: 0.7s; }
.letter-animation:nth-child(14) { animation-delay: 0.75s; }
.letter-animation:nth-child(15) { animation-delay: 0.8s; }
.letter-animation:nth-child(16) { animation-delay: 0.85s; }
.letter-animation:nth-child(17) { animation-delay: 0.9s; }
.letter-animation:nth-child(18) { animation-delay: 0.95s; }
.letter-animation:nth-child(19) { animation-delay: 1s; }
.letter-animation:nth-child(20) { animation-delay: 1.05s; }
.letter-animation:nth-child(21) { animation-delay: 1.1s; }
.letter-animation:nth-child(22) { animation-delay: 1.15s; }
.letter-animation:nth-child(23) { animation-delay: 1.2s; }
.letter-animation:nth-child(24) { animation-delay: 1.25s; }
.letter-animation:nth-child(25) { animation-delay: 1.3s; }
.letter-animation:nth-child(26) { animation-delay: 1.35s; }
.letter-animation:nth-child(27) { animation-delay: 1.4s; }
.letter-animation:nth-child(28) { animation-delay: 1.45s; }
.letter-animation:nth-child(29) { animation-delay: 1.5s; }
.letter-animation:nth-child(30) { animation-delay: 1.55s; }
.letter-animation:nth-child(31) { animation-delay: 1.6s; }

/* Subtitle Styling */
.subtitle-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: var(--legendary-red);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 1.7s;
}

.subtitle-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--legendary-red), transparent);
    margin: 0 auto;
    animation: expandLine 1.5s forwards;
    animation-delay: 2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes expandLine {
    to {
        width: 80%;
    }
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 2.2s;
}

/* Hero Buttons */
.hero-buttons {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 2.5s;
}

.hero-btn {
    background-color: var(--legendary-red);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
    margin: 0 10px;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--legendary-red);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 59, 48, 0.5);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

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

.glow-btn:hover::after {
    left: 100%;
}

.explore-btn {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--legendary-red);
    color: var(--legendary-red);
    transform: translateY(-3px);
}

/* Decorative Shapes */
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 59, 48, 0.1);
    filter: blur(30px);
    z-index: 1;
    animation: shapeFloat 15s infinite alternate ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    background: rgba(255, 99, 71, 0.1);
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    background: rgba(198, 40, 40, 0.1);
    animation-delay: -8s;
}

@keyframes shapeFloat {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        transform: translateY(30px) scale(1.1) rotate(5deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 3s;
    z-index: 10;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-buttons .btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}

/* Showcase Section */
.showcase-section {
    background-color: var(--dark-gray);
    padding: 100px 0;
}

.showcase-card {
    background-color: var(--black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.showcase-img {
    height: 200px;
    overflow: hidden;
}

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

.showcase-card:hover .showcase-img img {
    transform: scale(1.1);
}

.showcase-content {
    padding: 20px;
}

.showcase-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.showcase-content p {
    color: var(--light-gray);
}

/* Registration Section */
.register-section {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.register-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 59, 48, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 59, 48, 0.15) 0%, transparent 35%);
    z-index: 0;
}

.register-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.register-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.cta-features {
    list-style: none;
    margin-bottom: 2rem;
}

.cta-features li {
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-features li i {
    color: var(--legendary-red);
    margin-right: 10px;
}

/* Luxury Registration Card */
.register-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.register-background {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
}

.register-background:before,
.register-background:after {
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 59, 48, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(255, 59, 48, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 40% 20%, rgba(198, 40, 40, 0.5) 0%, transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(255, 99, 71, 0.4) 0%, transparent 50%);
    animation: lavaMove 25s infinite alternate ease-in-out;
}

.register-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.5;
    animation: shapeFloat 20s infinite alternate ease-in-out;
}

.register-shapes .register-shape-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    left: -150px;
    background: rgba(255, 59, 48, 0.15);
    animation-delay: 0s;
}

.register-shapes .register-shape-2 {
    width: 450px;
    height: 450px;
    bottom: -200px;
    right: -200px;
    background: rgba(255, 99, 71, 0.15);
    animation-delay: -8s;
}

.register-shapes .register-shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 15%;
    background: rgba(198, 40, 40, 0.15);
    animation-delay: -4s;
}

.register-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.register-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    animation: fadeIn 1s forwards;
}

.register-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    animation: fadeIn 1s forwards;
    animation-delay: 0.3s;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInLeft 0.6s forwards;
}

.cta-features li:nth-child(1) { animation-delay: 0.4s; }
.cta-features li:nth-child(2) { animation-delay: 0.6s; }
.cta-features li:nth-child(3) { animation-delay: 0.8s; }
.cta-features li:nth-child(4) { animation-delay: 1s; }

.cta-features li i {
    color: var(--legendary-red);
    margin-right: 15px;
    font-size: 1.2rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Luxury Card */
.luxury-card-container {
    position: relative;
    z-index: 2;
    perspective: 1000px;
    padding: 20px;
}

.luxury-card {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: cardFloat 6s infinite alternate ease-in-out;
}

@keyframes cardFloat {
    0% {
        transform: translateY(0) rotateX(0) rotateY(0);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    }
}

.luxury-card-inner {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.luxury-card-content {
    text-align: center;
}

.luxury-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--legendary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
    animation: iconPulse 4s infinite alternate;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 15px 30px rgba(198, 40, 40, 0.5), 0 0 40px rgba(255, 59, 48, 0.4);
    }
}

.luxury-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.luxury-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.luxury-description {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.luxury-details {
    margin-bottom: 30px;
}

.luxury-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white);
}

.luxury-detail i {
    margin-right: 10px;
    color: var(--legendary-red);
}

/* Card effects */
.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.05) 0%, 
                rgba(255, 255, 255, 0) 20%, 
                rgba(255, 255, 255, 0) 80%, 
                rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    opacity: 0.7;
    z-index: 2;
}

/* Corners animation */
.luxury-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 3;
}

.luxury-corner::before,
.luxury-corner::after {
    content: '';
    position: absolute;
    background-color: var(--legendary-red);
}

.top-left {
    top: 0;
    left: 0;
}

.top-left::before {
    top: 0;
    left: 10px;
    width: 3px;
    height: 20px;
    animation: cornerPulse 2s infinite;
}

.top-left::after {
    top: 10px;
    left: 0;
    width: 20px;
    height: 3px;
    animation: cornerPulse 2s infinite 0.5s;
}

.top-right {
    top: 0;
    right: 0;
}

.top-right::before {
    top: 0;
    right: 10px;
    width: 3px;
    height: 20px;
    animation: cornerPulse 2s infinite 0.7s;
}

.top-right::after {
    top: 10px;
    right: 0;
    width: 20px;
    height: 3px;
    animation: cornerPulse 2s infinite 0.2s;
}

.bottom-left {
    bottom: 0;
    left: 0;
}

.bottom-left::before {
    bottom: 0;
    left: 10px;
    width: 3px;
    height: 20px;
    animation: cornerPulse 2s infinite 0.9s;
}

.bottom-left::after {
    bottom: 10px;
    left: 0;
    width: 20px;
    height: 3px;
    animation: cornerPulse 2s infinite 0.3s;
}

.bottom-right {
    bottom: 0;
    right: 0;
}

.bottom-right::before {
    bottom: 0;
    right: 10px;
    width: 3px;
    height: 20px;
    animation: cornerPulse 2s infinite 0.1s;
}

.bottom-right::after {
    bottom: 10px;
    right: 0;
    width: 20px;
    height: 3px;
    animation: cornerPulse 2s infinite 0.6s;
}

@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--legendary-red), 0 0 10px var(--legendary-red);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 10px var(--legendary-red), 0 0 20px var(--legendary-red);
    }
}

.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    z-index: 0;
    box-shadow: inset 0 0 20px rgba(255, 59, 48, 0.1);
    animation: borderGlow 4s infinite alternate;
}

@keyframes borderGlow {
    0% {
        box-shadow: inset 0 0 15px rgba(255, 59, 48, 0.3), 0 0 10px rgba(255, 59, 48, 0.2);
    }
    100% {
        box-shadow: inset 0 0 30px rgba(255, 59, 48, 0.5), 0 0 20px rgba(255, 59, 48, 0.4);
    }
}

/* Registration Button */
.registration-button-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 20px;
}

.registration-button {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--legendary-red), var(--dark-red));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
}

.registration-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(198, 40, 40, 0.5);
    color: var(--white);
    text-decoration: none;
}

.button-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.button-icon {
    position: relative;
    margin-left: 10px;
    z-index: 2;
    transition: all 0.3s ease;
    display: inline-block;
}

.registration-button:hover .button-icon {
    transform: translateX(5px);
}

.button-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    transition: all 0.5s ease;
}

.registration-button:hover .button-overlay {
    left: 100%;
    transition: 0.5s;
}

/* Media Queries */
@media (max-width: 991px) {
    .register-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .cta-features li {
        justify-content: center;
    }
    
    .register-title {
        font-size: 2.2rem;
    }
}

/* Instructors Section */
/* Luxury Instructors Section */
.instructors-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.instructors-background {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
}

.instructors-background:before,
.instructors-background:after {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 59, 48, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 59, 48, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(198, 40, 40, 0.4) 0%, transparent 40%);
    animation: lavaMove 30s infinite alternate ease-in-out;
}

.instructors-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    opacity: 0.4;
    animation: shapeFloat 25s infinite alternate ease-in-out;
}

.instructors-shapes .instructor-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -150px;
    background: rgba(255, 59, 48, 0.1);
    animation-delay: -5s;
}

.instructors-shapes .instructor-shape-2 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -100px;
    background: rgba(255, 99, 71, 0.1);
    animation-delay: -12s;
}

.instructors-shapes .instructor-shape-3 {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: 40%;
    background: rgba(198, 40, 40, 0.1);
    animation-delay: -8s;
}

.luxury-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeIn 1s forwards;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--legendary-red), transparent);
    margin: 15px auto 25px;
    position: relative;
    animation: glowLine 3s infinite alternate;
}

@keyframes glowLine {
    0% {
        box-shadow: 0 0 5px rgba(255, 59, 48, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 59, 48, 0.8);
    }
}

.luxury-section-subtitle {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s forwards;
    animation-delay: 0.3s;
}

.instructor-row {
    margin-top: 60px;
}

/* Luxury Instructor Cards */
.luxury-instructor-card {
    perspective: 1000px;
    margin-bottom: 40px;
    height: 520px;
}

.luxury-instructor-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #282828);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    animation: cardFloat 8s infinite alternate ease-in-out;
    overflow: hidden;
}

.luxury-instructor-inner.flipped {
    transform: rotateY(180deg);
}

.luxury-instructor-front,
.luxury-instructor-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.luxury-instructor-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #1a1a1a, #282828);
    display: flex;
    flex-direction: column;
}

.instructor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--legendary-red), var(--dark-red));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
    z-index: 2;
    animation: badgePulse 3s infinite alternate;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
    }
    100% {
        box-shadow: 0 5px 20px rgba(255, 59, 48, 0.6);
    }
}

.instructor-img-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    animation: fadeIn 0.8s forwards;
}

.instructor-img-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 59, 48, 0.5);
    border-radius: 50%;
    animation: borderRotate 10s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
        border-color: rgba(255, 59, 48, 0.5) rgba(255, 59, 48, 0.2) rgba(255, 59, 48, 0.5) rgba(255, 59, 48, 0.2);
    }
    100% {
        transform: rotate(360deg);
        border-color: rgba(255, 59, 48, 0.2) rgba(255, 59, 48, 0.5) rgba(255, 59, 48, 0.2) rgba(255, 59, 48, 0.5);
    }
}

.instructor-img {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #222;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.luxury-instructor-card:hover .instructor-img img {
    transform: scale(1.1);
}

.instructor-details {
    text-align: center;
    animation: fadeIn 0.8s forwards;
    animation-delay: 0.2s;
}

.instructor-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.instructor-title-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.instructor-title {
    color: var(--legendary-red);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

.instructor-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--legendary-red);
    font-size: 1rem;
}

.luxury-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instructor-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--legendary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4);
}

.instructor-more-btn,
.instructor-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 59, 48, 0.5);
    color: var(--white);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.instructor-back-btn {
    align-self: flex-start;
    margin-bottom: 25px;
}

.instructor-more-btn:hover,
.instructor-back-btn:hover {
    background: var(--legendary-red);
    border-color: var(--legendary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4);
}

.instructor-more-btn i {
    transition: transform 0.3s ease;
}

.instructor-more-btn:hover i {
    transform: translateX(4px);
}

.instructor-back-btn:hover i {
    transform: translateX(-4px);
}

.instructor-bio-full {
    color: var(--light-gray);
    line-height: 1.7;
}

.instructor-bio-full p {
    margin-bottom: 15px;
}

.instructor-expertise {
    margin-top: 25px;
}

.instructor-expertise h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 15px;
}

.instructor-expertise ul {
    list-style: none;
    padding: 0;
}

.instructor-expertise li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.instructor-expertise li i {
    color: var(--legendary-red);
    font-size: 1rem;
    margin-top: 4px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .luxury-instructor-card {
        height: 540px;
    }
}

@media (max-width: 767px) {
    .luxury-section-title {
        font-size: 2.2rem;
    }
    
    .instructor-row {
        margin-top: 30px;
    }
}

/* Bio Modal Popup Styles */
.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bio-modal.active {
    display: flex;
    opacity: 1;
}

.bio-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.bio-modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: auto;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bio-modal.active .bio-modal-container {
    transform: translateY(0);
    opacity: 1;
}

.bio-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #282828);
    border-radius: 15px;
    padding: 40px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-height: calc(90vh - 40px);
    overflow-y: auto;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.bio-modal-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 59, 48, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(255, 59, 48, 0.05) 0%, transparent 70%);
    border-radius: 15px;
    pointer-events: none;
}

.bio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.bio-modal-close:hover {
    background: var(--legendary-red);
    transform: rotate(90deg);
}

.bio-content {
    display: none;
    animation: fadeIn 0.5s forwards;
}

.bio-content.active {
    display: block;
}

.bio-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 59, 48, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-right: 20px;
    position: relative;
}

.bio-img:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 59, 48, 0.3);
    border-radius: 50%;
    animation: borderRotate 10s linear infinite;
    pointer-events: none;
}

.bio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-title h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
}

.bio-title p {
    color: var(--legendary-red);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.bio-description {
    line-height: 1.7;
    color: var(--light-gray);
}

.bio-description p {
    margin-bottom: 15px;
}

.bio-expertise {
    margin: 25px 0;
}

.bio-expertise h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.bio-expertise h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--legendary-red);
}

.bio-expertise ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.bio-expertise li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--light-gray);
}

.bio-expertise li i {
    color: var(--legendary-red);
}

.bio-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.achievement-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--legendary-red), var(--dark-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-details h5 {
    font-size: 1rem;
    margin: 0 0 5px;
    color: var(--white);
}

.achievement-details p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--light-gray);
    line-height: 1.4;
}

@media (max-width: 767px) {
    .bio-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bio-img {
        margin: 0 auto 15px;
    }
    
    .bio-modal-content {
        padding: 30px 20px;
    }
    
    .bio-expertise ul,
    .bio-achievements {
        grid-template-columns: 1fr;
    }
}

/* Curriculum Section */
.curriculum-section {
    background-color: var(--dark-gray);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Tools Covers Section */
.tools-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--black);
}

.tools-background {
    opacity: 0.9;
}

.tools-shapes .tool-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    background: rgba(255, 59, 48, 0.08);
    animation-delay: -5s;
}

.tools-shapes .tool-shape-2 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: -100px;
    background: rgba(255, 99, 71, 0.1);
    animation-delay: -12s;
}

.tools-shapes .tool-shape-3 {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: 40%;
    background: rgba(198, 40, 40, 0.1);
    animation-delay: -8s;
}

.tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    margin-bottom: 20px;
}

.tool-item.featured {
    transform: scale(1.1);
    z-index: 3;
}

.tool-item.featured .tool-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.3), rgba(255, 59, 48, 0.1));
    animation: featuredPulse 3s infinite alternate;
    z-index: -1;
}

@keyframes featuredPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.tool-circle {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.tool-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a1a, #282828);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(255, 59, 48, 0.3));
}

.tool-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--legendary-red);
    border-bottom-color: var(--legendary-red);
    opacity: 0.7;
    animation: toolBorderRotate 8s linear infinite;
}

@keyframes toolBorderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tool-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.tool-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--legendary-red);
    transition: width 0.3s ease;
}

.tool-item:hover .tool-name::after {
    width: 70%;
}

.tool-item:hover {
    transform: translateY(-10px);
}

.tool-item.featured:hover {
    transform: scale(1.15) translateY(-10px);
}

.tool-item:hover .tool-circle {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 59, 48, 0.2);
}

.tool-item:hover .tool-image img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(255, 59, 48, 0.5));
}

@media (max-width: 991px) {
    .tools-container {
        gap: 20px;
    }
    
    .tool-item {
        width: 170px;
    }
    
    .tool-circle {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 767px) {
    .tools-container {
        gap: 15px;
    }
    
    .tool-item {
        width: 130px;
    }
    
    .tool-circle {
        width: 110px;
        height: 110px;
    }
    
    .tool-name {
        font-size: 1rem;
    }
    
    .tool-item.featured {
        transform: scale(1.05);
    }
    
    .tool-item.featured:hover {
        transform: scale(1.1) translateY(-5px);
    }
}

.curriculum-section::before,
.curriculum-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 70% 20%, rgba(255, 59, 48, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(255, 59, 48, 0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.curriculum-section .container {
    position: relative;
    z-index: 3;
}

.curriculum-section .section-header {
    position: relative;
    margin-bottom: 60px;
}

.curriculum-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #fff, var(--legendary-red));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.curriculum-section .section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--legendary-red), transparent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: expandLine 3s infinite alternate;
}

.curriculum-section .section-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.curriculum-chapters {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.7s;
}

.curriculum-chapter {
    background: linear-gradient(135deg, rgba(35, 35, 40, 0.9), rgba(20, 20, 25, 0.95));
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(5px);
}

.curriculum-chapter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.curriculum-chapter:hover::before {
    opacity: 1;
}

.curriculum-chapter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 59, 48, 0.05), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.curriculum-chapter:hover::after {
    opacity: 1;
}

.curriculum-chapter.active {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 59, 48, 0.1);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(40, 40, 45, 0.9), rgba(25, 25, 30, 0.95));
}

.chapter-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.1), rgba(255, 59, 48, 0.05), rgba(255, 59, 48, 0.1));
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.chapter-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--legendary-red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.chapter-header::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.chapter-header[aria-expanded='true']::after {
    transform: translateY(-50%) rotate(-135deg);
}

.curriculum-chapter.active .chapter-header::before {
    transform: scaleY(1);
}

.chapter-header:hover {
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.15), rgba(255, 59, 48, 0.1), rgba(255, 59, 48, 0.15));
}

.chapter-header:hover h3 {
    transform: translateX(10px);
    color: #fff;
}

.chapter-header:hover .lessons-count {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.chapter-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 5px;
}

.lessons-count {
    color: var(--legendary-red);
    font-weight: 600;
    background: rgba(255, 59, 48, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.chapter-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, rgba(25, 25, 30, 0.7), rgba(20, 20, 22, 0.8));
}

.chapter-content.show {
    padding: 25px 30px;
    max-height: 500px;
}

.lessons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
}

.lessons-list li {
    padding: 15px 0;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    transform: translateX(-10px);
    opacity: 0;
}

.chapter-content.show .lessons-list {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease 0.2s;
}

.chapter-content.show .lessons-list li {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.5s ease;
}

.chapter-content.show .lessons-list li:nth-child(1) { transition-delay: 0.1s; }
.chapter-content.show .lessons-list li:nth-child(2) { transition-delay: 0.2s; }
.chapter-content.show .lessons-list li:nth-child(3) { transition-delay: 0.3s; }
.chapter-content.show .lessons-list li:nth-child(4) { transition-delay: 0.4s; }
.chapter-content.show .lessons-list li:nth-child(5) { transition-delay: 0.5s; }
.chapter-content.show .lessons-list li:nth-child(6) { transition-delay: 0.6s; }
.chapter-content.show .lessons-list li:nth-child(7) { transition-delay: 0.7s; }
.chapter-content.show .lessons-list li:nth-child(8) { transition-delay: 0.8s; }
.chapter-content.show .lessons-list li:nth-child(9) { transition-delay: 0.9s; }

.lessons-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--legendary-red);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 59, 48, 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.lessons-list li:hover {
    color: var(--white);
    padding-left: 30px;
}

.lessons-list li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.8);
}

.lessons-list li:last-child {
    border-bottom: none;
}

/* Curriculum animations */
@keyframes curriculumChapterAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lessonItemAppear {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes chapterPulse {
    0% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 0 0 rgba(255, 59, 48, 0);
    }
    100% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 59, 48, 0.2);
    }
}

/* Outcomes Section */
.outcomes-section {
    background-color: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.outcomes-section::before,
.outcomes-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 59, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 59, 48, 0.1) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.outcomes-section .container {
    position: relative;
    z-index: 3;
}

.outcomes-section .section-header {
    position: relative;
    margin-bottom: 60px;
}

.outcomes-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #fff, var(--legendary-red));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    position: relative;
}

.outcomes-section .section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--legendary-red), transparent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: expandLine 3s infinite alternate;
}

.outcomes-section .section-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}

/* Student Showcase Section */
.showcase-section {
    background-color: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.showcase-background {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.95));
}

.showcase-background:before,
.showcase-background:after {
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 59, 48, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(255, 59, 48, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 40% 20%, rgba(198, 40, 40, 0.5) 0%, transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(255, 99, 71, 0.4) 0%, transparent 50%);
    animation: lavaMove 25s infinite alternate ease-in-out;
}

.showcase-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.5;
    animation: shapeFloat 20s infinite alternate ease-in-out;
}

.showcase-shapes .shape-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    left: -150px;
    background: rgba(255, 59, 48, 0.15);
    animation-delay: 0s;
}

.showcase-shapes .shape-2 {
    width: 450px;
    height: 450px;
    bottom: -200px;
    right: -200px;
    background: rgba(255, 99, 71, 0.15);
    animation-delay: -8s;
}

.showcase-shapes .shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 15%;
    background: rgba(198, 40, 40, 0.15);
    animation-delay: -4s;
}

.showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    animation: fadeIn 1s forwards;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    animation: fadeIn 1s forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.showcase-gallery {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.showcase-card-wrapper {
    margin-bottom: 50px;
    height: 420px;
    perspective: 1500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.showcase-card-wrapper:nth-child(1) {
    animation-delay: 0.3s;
}

.showcase-card-wrapper:nth-child(2) {
    animation-delay: 0.5s;
}

.showcase-card-wrapper:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-card {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.showcase-card:hover {
    transform: rotateY(180deg);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.card-front {
    background-color: var(--dark-gray);
    transform: rotateY(0deg);
    z-index: 2;
}

.card-back {
    background: linear-gradient(145deg, var(--dark-gray), var(--light-gray));
    transform: rotateY(180deg);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-content {
    text-align: center;
}

.back-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.back-content h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--legendary-red);
}

.back-content p {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.project-features li {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.9rem;
}

.project-features li i {
    color: var(--legendary-red);
    margin-right: 8px;
}

.view-more {
    margin-top: 20px;
}

.view-more a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--legendary-red);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.view-more a:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4);
}

.showcase-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

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

.showcase-card .card-front:hover .project-overlay {
    opacity: 1;
}

.view-project {
    padding: 8px 15px;
    background-color: var(--legendary-red);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.showcase-card .card-front:hover .view-project {
    transform: translateY(0);
}

.showcase-content {
    padding: 20px;
}

.showcase-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.showcase-content p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(255, 59, 48, 0.2);
    color: var(--legendary-red);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.showcase-nav {
    margin-top: 20px;
}

.nav-dots {
    margin-bottom: 15px;
}

.nav-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dots span.active {
    background-color: var(--legendary-red);
    transform: scale(1.3);
}

.showcase-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: var(--legendary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
}

/* Responsive Styles for Showcase */
@media (max-width: 991px) {
    .showcase-card-wrapper {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .showcase-card-wrapper {
        height: 400px;
        margin-bottom: 40px;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
}

.outcome-card {
    background: linear-gradient(135deg, rgba(40, 40, 45, 0.9), rgba(25, 25, 30, 0.95));
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    transform: translateY(30px);
    opacity: 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--legendary-red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.outcome-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 59, 48, 0.1);
    background: linear-gradient(135deg, rgba(45, 45, 50, 0.9), rgba(30, 30, 35, 0.95));
}

.outcome-card:hover::before {
    transform: scaleX(1);
}

.outcome-card:hover .outcome-icon {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 59, 48, 0.6);
}

.outcome-card:hover h3 {
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.outcome-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.08), transparent 70%);
    border-radius: 50%;
    bottom: -75px;
    right: -75px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.outcome-card:hover::after {
    opacity: 1;
}

.outcome-icon {
    font-size: 2.8rem;
    color: var(--legendary-red);
    margin-bottom: 25px;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
}

.outcome-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: iconPulse 3s infinite alternate;
}

.outcome-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.outcome-card h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.6), transparent);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.outcome-card:hover h3::after {
    width: 80%;
}

.outcome-card p {
    color: var(--light-gray);
    line-height: 1.6;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.outcome-card:hover p {
    color: #d0d0d0;
}

/* Outcomes Section Animations */
@keyframes outcomeCardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes outcomeIconFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

@keyframes glowEffect {
    0% {
        box-shadow: 0 0 5px rgba(255, 59, 48, 0.1), 0 15px 30px rgba(0, 0, 0, 0.25);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 59, 48, 0.3), 0 15px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Partners Section */
.partners-section {
    background-color: var(--dark-gray);
    padding: 100px 0;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.partner-logo {
    width: 150px;
    height: 80px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 59, 48, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 59, 48, 0.15) 0%, transparent 35%);
    z-index: 0;
}

.owner-message {
    background-color: var(--dark-gray);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 59, 48, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.owner-info {
    display: flex;
    align-items: center;
}

.owner-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--legendary-red);
}

.owner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.owner-details p {
    color: var(--legendary-red);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    padding: 20px 0;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--legendary-red);
    margin-bottom: 15px;
}

.footer-logo-img {
    display: inline-block;
    max-width: 180px;
    margin-bottom: 10px;
}

.footer-logo-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 59, 48, 0.4));
    transition: all 0.3s ease;
}

.footer-logo-img:hover img {
    filter: drop-shadow(0 0 12px rgba(255, 59, 48, 0.6));
    transform: scale(1.05);
}

.italy-flag {
    margin: 15px 0;
    display: inline-block;
}

.italy-flag img {
    width: 30px;
    height: auto;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--legendary-red);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 20px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .instructor-card {
        flex-direction: column;
    }
    
    .instructor-img {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .registration-form {
        margin-top: 50px;
    }
    
    .owner-message {
        padding: 30px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}
