/* ========== Reset & Theme ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-orange: #fb5519;
    --secondary-orange: #f97731;
    --accent-orange: #ff8330;
    --dark: #1A1A1A;
    --dark-secondary: #2A2A2A;
    --gray: #666;
    --light-gray: #F8F9FA;
    --white: #fff;
    --shadow: 0 20px 40px rgba(255, 107, 53, .1);
    --shadow-hover: 0 30px 60px rgba(255, 107, 53, .2);
    --gradient: linear-gradient(135deg, #FF6B35 0%, #ff7124 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #fff8f6;
}

a {
    color: inherit
}

/* ========== Navbar ========== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 3px 4px rgba(255, 107, 53, .1);
    border-bottom: 1px solid rgba(255, 107, 53, .1);
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all .3s
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, .2);
    z-index: 9999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    width: 100%;
}

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange)
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: .5rem .7rem;
    border-radius: 12px;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, .1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, .15);
    border: 2px solid rgba(255, 107, 53, .1);
}

.cta-nav {
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: .75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow);
    transform: translateY(0)
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover)
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: .3s;
    border-radius: 2px
}

/* ========== Layout helpers ========== */
.page {
    min-height: 100vh
}

.section {
    padding: 4rem 0
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem
}

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

.section-header .subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .9rem;
    margin-bottom: 1rem
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto
}

/* ========== Hero ========== */
.hero {
    min-height: calc(100vh - 70px);
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23FF6B35" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FF6B35" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: .7;
    animation: float 20s infinite ease-in-out;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 131, 48, 0.05) 100%);
    animation: bounce 6s infinite ease-in-out;
    filter: blur(10px);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-30px) scale(1.1);
    }

    50% {
        transform: translateY(-15px) scale(0.95);
    }

    75% {
        transform: translateY(-25px) scale(1.05);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-badge i {
    color: var(--primary-orange);
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2
}

.hero-text .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2rem;
    line-height: 1.6
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block
}

.stat-item .label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7)
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-shine {
    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 ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--white);
    transform: rotate(3deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 131, 48, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-card:hover {
    transform: rotate(0) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.hero-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.card-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

.rating-text {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.card-footer {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.feature i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

/* ========== Services Section ========== */
.services-section {
    background: var(--light-gray);
    position: relative;
}

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

.service-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.2);
}

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

.service-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

.service-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-footer {
    margin-top: auto;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.service-link:hover {
    color: var(--secondary-orange);
    transform: translateX(4px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ========== Stats ========== */
.stats-section {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    z-index: 1;
}

.stats-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(251, 85, 25, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 131, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(249, 119, 49, 0.06) 0%, transparent 50%);
    z-index: 2;
}

.stats-section .section-header {
    position: relative;
    z-index: 3;
}

.stats-section .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.stats-section h2 {
    color: var(--white);
}

.stats-section p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 3;
    margin-top: 3rem;
}

.stat-card {
    position: relative;
    z-index: 4;
}

.stat-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 85, 25, 0.1) 0%, rgba(255, 131, 48, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-card:hover .stat-card-inner {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 85, 25, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 85, 25, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-card-inner::before {
    opacity: 1;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: var(--accent-orange);
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* ========== Testimonials ========== */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.3);
}

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

.testimonial-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    flex: 1;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-orange);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.author-badge i {
    font-size: 0.7rem;
}

/* ========== Pricing ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.pricing-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1200px;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(255, 107, 53, .2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform .4s ease
}

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

.pricing-card.featured {
    border-color: var(--primary-orange);
    position: relative;
    box-shadow: 0 25px 50px rgba(255, 107, 53, .15)
}

.pricing-card.featured::before {
    content: 'Le Plus Populaire';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.2rem 0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, .3);
    z-index: 10
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.01) !important;
    box-shadow: var(--shadow-hover)
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative
}

.price-badge {
    background: var(--gradient);
    color: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.price-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s
}

.price-container {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    font-weight: 600;
    line-height: 1;
    opacity: 0.6;
}

.pricing-card:hover .price-badge::before {
    left: 100%
}

.price-badge .price {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1
}

.price-badge .currency {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: .9
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .5rem
}

.pricing-header .period {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0 1rem
}

.pricing-features li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, .2);
    transition: all .3s;
    position: relative
}

.pricing-features li:last-child {
    border-bottom: none
}

.pricing-features li:hover {
    background: rgba(255, 107, 53, .05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px
}

.pricing-features li i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-top: .2rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center
}

.pricing-features li span {
    flex: 1;
    line-height: 1.5;
    color: var(--dark);
    font-weight: 500
}

.pricing-actions {
    display: flex;
    justify-content: center;
    gap: 1rem
}

/* ========== Empty State ========== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 2px dashed rgba(255, 107, 53, .2);
    position: relative;
    overflow: hidden;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* ========== Contact ========== */
.contact-section {
    background: var(--light-gray);
    color: var(--dark)
}

/* Contact: header overrides for light background */
.contact-section .section-header .subtitle {
    color: var(--primary-orange)
}

.contact-section .section-header h2 {
    color: var(--dark)
}

.contact-section .section-header p {
    color: var(--gray)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info h3 {
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-size: 2rem
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, .2);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all .3s ease
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    width: 20px
}

.contact-info h4 {
    color: var(--dark);
    margin-bottom: .2rem
}

.contact-info p {
    color: var(--gray)
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover)
}

.contact-item:nth-last-child(1) {
    margin-bottom: 0;
}

.form-modern {
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, .2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow)
}

.form-modern h3 {
    color: var(--dark);
    margin-bottom: 2rem
}

.form-group {
    margin-bottom: 0
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    color: var(--dark);
    font-weight: 500;
    font-size: .9rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid rgba(255, 107, 53, .15);
    border-radius: 10px;
    color: var(--dark);
    font-size: .9rem;
    transition: all .3s
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, .1)
}

.form-control::placeholder {
    color: #999
}

/* Contact: submit button + hint */
.contact-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
    justify-content: center
}

.form-hint {
    color: var(--gray);
    margin-top: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem
}

/* Contact form specific form group spacing */
.contact-section .form-group {
    margin-bottom: 1.5rem
}

.contact-section .form-row .form-group {
    margin-bottom: 0
}

/* Contact form Select2 - uses existing global styles with contact-specific overrides */
.contact-section .select2-container .select2-selection--single {
    height: 48px !important;
    border-radius: 10px !important;
    padding-left: 1rem !important;
}

.contact-section .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    font-size: .9rem !important;
}

.contact-section .select2-container .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 1rem !important;
}

/* ========== About ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-image {
    position: relative
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2
}

/* ========== Loading & Progress ========== */
.loading {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s
}

.loading.hidden {
    opacity: 0;
    pointer-events: none
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 53, .1);
    border-left: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient);
    z-index: 10001;
    transition: width .1s
}

/* ========== Animations helpers ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all .6s
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all .6s
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* ========== RESERVATION PAGE STYLES ========== */
.page.reservation-page {
    background: var(--light-gray);
    padding-top: 6rem
}

.reservation-header {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, .2);
    padding: 2.5rem;
    box-shadow: var(--shadow)
}

.reservation-header .subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .9rem;
    margin-bottom: 1rem
}

.reservation-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem
}

.reservation-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

.course-summary {
    background: var(--gradient);
    color: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

.course-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.course-summary .price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course-summary .details {
    opacity: .95;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.course-summary .details i {
    font-size: 1.2rem;
}

.calendar-section {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, .15);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.calendar-section:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.section-title i {
    color: var(--primary-orange)
}

.week-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem
}

.week-nav button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.week-nav button::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;
}

.week-nav button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.week-nav button:hover::before {
    left: 100%;
}

.week-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.2);
}

.week-display {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    min-width: 200px;
    text-align: center
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem
}

.day-column {
    background: linear-gradient(135deg, #ffefea 0%, #fff5f2 100%);
    border-radius: 20px;
    padding: 1rem;
    min-height: 420px;
    border: 1px solid rgba(255, 107, 53, .15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.day-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.day-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
}

.day-column:hover::before {
    transform: scaleX(1);
}

.day-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.day-header:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.day-name {
    font-weight: 700;
    color: var(--dark);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

.day-date {
    color: var(--gray);
    font-size: .8rem;
    margin-top: .2rem
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.time-slot {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: .8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: .8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.time-slot.available {
    color: var(--dark);
    border-color: rgba(0, 0, 0, .1);
}

.time-slot.available:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.time-slot.available:hover::before {
    left: 100%;
}

.time-slot.selected {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
    position: relative;
}

.time-slot.selected::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.time-slot.unavailable {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    opacity: .5
}

.time-slot.booked {
    background: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
}

.time-slot.booked:hover {
    transform: none;
    box-shadow: none;
    border-color: #dee2e6;
}

.time-slot.booked .booked-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #dc3545;
    display: block;
}

/* Past date styling */
.day-column.past-date {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    position: relative;
}

.day-column.past-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    pointer-events: none;
}

.day-header.past-date {
    background: #e9ecef;
    color: #6c757d;
}

.day-header.past-date .day-name {
    color: #6c757d;
}

.day-header.past-date .day-date {
    color: #adb5bd;
}

.time-slot.past-date-slot {
    background: #e9ecef;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.7;
    text-align: center;
    position: relative;
}

.time-slot.past-date-slot i {
    font-size: 1.2rem;
    color: #dc3545;
}

.time-slot.past-date-slot:hover {
    transform: none;
    box-shadow: none;
    border-color: #dee2e6;
}

/* Week Loader Styles */
.week-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 20px;
}

.loader-content {
    text-align: center;
    color: var(--primary-orange);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: var(--dark);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.booking-summary {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, .15);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 8rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.booking-summary:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.booking-summary h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.summary-item:hover {
    background: rgba(255, 107, 53, 0.05);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.summary-item:last-child {
    border-bottom: 2px solid var(--primary-orange);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
    margin: 1.5rem -0.5rem 0 -0.5rem;
    padding: 1rem;
    border-radius: 12px;
}

.btn-confirm {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-confirm:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

.btn-confirm:hover:not(:disabled)::before {
    left: 100%;
}

.btn-confirm:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start
}

/* ========== CONFIRMATION PAGE STYLES ========== */
.confirmation-page {
    background: var(--light-gray);
}


.confirmation-header {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, .2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.confirmation-header .subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .9rem;
    margin-bottom: 1rem
}

.confirmation-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem
}

.confirmation-header h1 i {
    color: var(--primary-orange)
}

.confirmation-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

.confirmation-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: start
}

.booking-recap {
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, .2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 8rem
}

.recap-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--dark)
}

.recap-header i {
    color: var(--primary-orange);
    font-size: 2rem
}

.recap-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
}

.recap-content {
    margin-bottom: 2rem
}

.recap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.recap-item:last-child {
    border-bottom: none
}

.recap-item.total {
    border-top: 2px solid var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-top: 1rem;
    padding-top: 1rem
}

.recap-label {
    color: var(--gray);
    font-size: .9rem
}

.recap-value {
    color: var(--dark);
    font-weight: 500
}

#recapPrice {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem
}

.payment-info {
    background: rgba(255, 107, 53, .1);
    border: 1px solid rgba(255, 107, 53, .2);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--primary-orange);
    font-size: .9rem
}

.payment-info i {
    font-size: 1rem
}

.confirmation-form {
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, .2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow)
}

.form-header {
    margin-bottom: 2rem
}

.form-header h3 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem
}

.form-header h3 i {
    color: var(--primary-orange)
}

.form-header p {
    color: var(--gray);
    font-size: .9rem
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.modern-form .form-group {
    position: relative
}

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

.input-container {
    position: relative
}

/* Modern form input styles */
.modern-form .input-container .form-control {
    padding-left: 2.5rem;
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: #fafafa;
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 8px;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    min-height: 44px
}

/* Modern form focus styles */
.modern-form .input-container .form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px)
}

/* Modern form placeholder styles */
.modern-form .input-container .form-control::placeholder {
    color: #999;
    font-size: 0.85rem
}

/* Modern form icon styles */
.modern-form .input-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 0.8rem;
    opacity: 0.7;
    pointer-events: none
}

/* Modern form select icon styles */
.modern-form .select-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 0.8rem;
    opacity: 0.7;
    pointer-events: none
}

/* Select2 styling for modern form - Complete Orange Theme */
.modern-form .select2-container {
    width: 100% !important;
}

.modern-form .select2-container .select2-selection--single {
    height: 44px !important;
    border: 2px solid rgba(255, 107, 53, 0.15) !important;
    border-radius: 8px !important;
    background: #fafafa !important;
    padding-left: 2.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.modern-form .select2-container .select2-selection--single:focus {
    border-color: var(--primary-orange) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
    transform: translateY(-1px) !important;
}

.modern-form .select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--dark) !important;
    line-height: 40px !important;
    padding-left: 0 !important;
    font-size: 0.9rem !important;
}

.modern-form .select2-container .select2-selection--single .select2-selection__placeholder {
    color: #999 !important;
    font-size: 0.85rem !important;
}

.modern-form .select2-container .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    right: 0.8rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.modern-form .select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: var(--primary-orange) transparent transparent transparent !important;
    border-width: 5px 4px 0 4px !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
}

/* Location icon for city select */
.modern-form .city-select-container .input-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 0.8rem;
    opacity: 0.7;
    pointer-events: none;
    z-index: 10;
}

/* Select2 dropdown styling */
.modern-form .select2-dropdown {
    border: 2px solid var(--primary-orange) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin-top: 4px !important;
    background: var(--white) !important;
}

/* Global Select2 styling with orange theme */
.select2-container--default .select2-selection--single {
    border: 2px solid rgba(255, 107, 53, 0.15) !important;
    border-radius: 8px !important;
    background: #fafafa !important;
    height: 44px !important;
    padding-left: 2.5rem !important;
}

.select2-container--default .select2-selection--single:focus {
    border-color: var(--primary-orange) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--dark) !important;
    line-height: 40px !important;
    padding-left: 0 !important;
    font-size: 0.9rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999 !important;
    font-size: 0.85rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    right: 0.8rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--primary-orange) transparent transparent transparent !important;
    border-width: 5px 4px 0 4px !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
}

/* Select2 dropdown global styling */
.select2-container--default .select2-dropdown {
    border: 2px solid var(--primary-orange) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin-top: 4px !important;
    background: var(--white) !important;
}

.select2-container--default .select2-results__option {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    color: var(--dark) !important;
    transition: all 0.2s ease !important;
    background: var(--white) !important;
}

.select2-container--default .select2-results__option--highlighted {
    background: rgba(255, 107, 53, 0.1) !important;
    color: var(--primary-orange) !important;
}

.select2-container--default .select2-results__option--selected {
    background: var(--primary-orange) !important;
    color: var(--white) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--primary-orange) !important;
    color: var(--white) !important;
}

/* Select2 search box styling */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    border-radius: 6px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.9rem !important;
    color: var(--dark) !important;
    background: #fafafa !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--primary-orange) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1) !important;
    outline: none !important;
}

/* Select2 loading spinner */
.select2-container--default .select2-results__option .select2-results__option--loading {
    background: rgba(255, 107, 53, 0.05) !important;
    color: var(--primary-orange) !important;
}

/* Select2 no results message */
.select2-container--default .select2-results__option--no-results {
    background: #f8f9fa !important;
    color: var(--gray) !important;
    font-style: italic !important;
}

/* Select2 container focus states */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--primary-orange) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Select2 container open state */
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--primary-orange) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Select2 container disabled state */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background: #f8f9fa !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
    cursor: not-allowed !important;
}

/* Mobile responsive for Select2 */
@media (max-width: 768px) {

    .modern-form .select2-container .select2-selection--single,
    .select2-container--default .select2-selection--single {
        height: 42px !important;
        padding-left: 2.2rem !important;
    }

    .modern-form .select2-container .select2-selection--single .select2-selection__rendered,
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 38px !important;
        font-size: 0.85rem !important;
    }

    .modern-form .city-select-container .input-icon {
        left: 0.7rem;
        font-size: 0.75rem;
    }

    .modern-form .select2-container .select2-selection--single .select2-selection__arrow,
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px !important;
        right: 0.7rem !important;
    }

    .select2-container--default .select2-search--dropdown .select2-search__field {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    .select2-container--default .select2-results__option {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem !important;
    }

    .contact-info {
        position: relative;
        top: 0;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .form-modern {
        padding: 1.5rem;
    }
}

.modern-form .form-group.success .form-control {
    border-color: #28a745;
    background: rgba(40, 167, 69, .05)
}

.modern-form .form-group.error .form-control {
    border-color: #dc3545;
    background: rgba(220, 53, 69, .05)
}

.error-message {
    color: #dc3545;
    font-size: .8rem;
    margin-top: .5rem;
    display: flex;
    align-items: center;
    gap: .3rem
}

.error-message::before {
    content: '⚠';
    font-size: .9rem
}

.form-help {
    font-size: .8rem;
    color: var(--gray);
    margin-top: .5rem;
    display: block
}

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

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem
}

.date-inputs .input-container {
    position: relative
}

/* Modern form date label styles */
.modern-form .form-group .date-label {
    position: absolute;
    top: -6px;
    left: 12px;
    background: var(--white);
    color: var(--primary-orange);
    font-size: 0.6rem;
    margin: 0;
    padding: 0 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    line-height: 1.2
}

select.form-control {
    appearance: none;
    background-image: none;
    cursor: pointer
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    padding-top: 1rem
}

.checkbox-group {
    margin: 1rem 0
}

.modern-form .form-group .checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    display: none
}

/* Modern form checkmark styles */
.modern-form .checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-orange);
    border-radius: 4px;
    position: relative;
    transition: all .3s;
    margin-top: 1px;
    background: transparent;
    cursor: pointer;
}

.modern-form .checkmark:hover {
    border-color: var(--secondary-orange);
    background: rgba(255, 107, 53, 0.05);
}

/* Modern form checked checkmark styles */
.modern-form .checkbox-container input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.modern-form .checkbox-container input[type="checkbox"]:checked+.checkmark:hover {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
    transform: scale(1.05);
}

.modern-form .checkbox-container input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 11px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    line-height: 1;
}

/* Focus states for accessibility */
.modern-form .checkbox-container input[type="checkbox"]:focus+.checkmark {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Disabled state */
.modern-form .checkbox-container input[type="checkbox"]:disabled+.checkmark {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #dee2e6;
}

.modern-form .checkbox-container input[type="checkbox"]:disabled:checked+.checkmark {
    background: #6c757d;
    border-color: #6c757d;
}

.checkbox-container a {
    color: var(--primary-orange);
    text-decoration: underline
}

/* Modern form actions */
.modern-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 107, 53, 0.1)
}

/* Completion page actions */
.completion-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 107, 53, 0.1)
}

/* 2-column layout for completion page */
.recap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Date-wise slot display styles */
.date-slot-group {
    margin-bottom: 12px;
}

.date-header {
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 6px;
    font-size: 14px;
}

.slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.slot-badge {
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 13px;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.slot-badge:hover {
    background-color: #FF6B35;
    color: white;
    transform: translateY(-1px);
}

.recap-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recap-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recap-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Modern form button styles */
.modern-form .form-actions .btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    min-height: 44px
}

.modern-form .form-actions .btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-1px)
}

.modern-form .form-actions .btn-primary {
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    min-height: 44px
}

.modern-form .form-actions .btn-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none
}

/* Modern form additional styles */
.modern-form .form-group {
    margin-bottom: 0
}

.modern-form .form-row {
    gap: 0.8rem
}

.modern-form .date-inputs {
    gap: 0.6rem
}

.modern-form .form-help {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.3rem;
    font-style: italic
}

/* Success and error states for modern form */
.modern-form .form-group.success .input-container .form-control {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05) !important
}

.modern-form .form-group.error .input-container .form-control {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important
}

.modern-form .error-message {
    font-size: 0.75rem;
    margin-top: 0.3rem;
    color: #ef4444;
    font-weight: 500
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width:1024px) {
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .booking-summary {
        position: static
    }

    .days-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .confirmation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .booking-recap {
        position: static;
    }
}

@media (max-width:768px) {
    .nav-menu {
        display: none
    }

    .mobile-menu {
        display: flex
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-stats {
        justify-content: center
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        transform: rotate(0);
        max-width: 100%;
    }

    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr
    }

    .pricing-card.featured {
        transform: none
    }

    .pricing-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }

    .price-badge {
        padding: 1.2rem 1.5rem;
        margin-bottom: 1.2rem
    }

    .price-badge .price {
        font-size: 2rem
    }

    .price-badge .currency {
        font-size: 1rem
    }

    .original-price {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center
    }

    .nav-menu.mobile-open {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        border-radius: 0 0 20px 20px;
        display: flex
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-card-inner {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    /* Réservation responsive */
    .days-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem
    }

    .day-column {
        padding: .8rem
    }

    .time-slot {
        padding: .6rem;
        font-size: .8rem
    }

    .container {
        padding: 0 1rem
    }

    /* Confirmation responsive */
    .confirmation-header h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: .3rem
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .date-inputs {
        grid-template-columns: 1fr 1fr 1fr
    }

    .form-actions {
        flex-direction: column;
        gap: .8rem
    }

    .form-actions .btn-primary {
        max-width: none
    }

    .recap-item {
        flex-direction: column;
        align-items: flex-start;
        gap: .3rem
    }

    .recap-value {
        font-weight: 600;
        color: var(--primary-orange)
    }
}

@media (max-width:480px) {
    .hero h1 {
        font-size: 2rem
    }

    .hero-stats {
        gap: 1rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center
    }

    .hero-card {
        transform: rotate(0);
        max-width: 100%;
    }

    .card-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-inner {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card-inner {
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }

    .stat-card-inner {
        padding: 1.8rem 1.2rem;
    }

    .stat-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    /* Réservation mobile */
    .days-grid {
        grid-template-columns: 1fr;
        gap: .5rem
    }

    .week-nav {
        flex-wrap: wrap;
        gap: .5rem
    }

    .course-summary .price {
        font-size: 1.5rem
    }

    /* Confirmation mobile */
    .confirmation-header {
        padding: 1.5rem
    }

    .confirmation-form {
        padding: 1.5rem
    }

    .booking-recap {
        padding: 1.5rem
    }

    /* Modern form mobile styles */
    .modern-form .input-container .form-control {
        padding: 0.7rem 0.8rem 0.7rem 2.2rem;
        font-size: 0.85rem;
        min-height: 42px
    }

    .modern-form .input-icon {
        left: 0.7rem;
        font-size: 0.75rem
    }

    .modern-form .select-icon {
        right: 0.7rem;
        font-size: 0.75rem
    }

    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.6rem
    }

    .modern-form .date-inputs {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem
    }

    .modern-form .form-actions {
        flex-direction: column;
        gap: 0.8rem
    }

    .modern-form .form-actions .btn-primary,
    .modern-form .form-actions .btn-secondary {
        width: 100%;
        justify-content: center
    }

    /* Mobile responsive for 2-column layout */
    .recap-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slots-container {
        gap: 4px;
    }

    .slot-badge {
        font-size: 12px;
        padding: 3px 8px;
    }

    .recap-section-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .modern-form .date-inputs {
        grid-template-columns: 1fr;
        gap: 0.4rem
    }

    .modern-form .date-label {
        font-size: 0.55rem;
        top: -5px;
        left: 8px;
        padding: 0 0.25rem;
        line-height: 1.1
    }

    .checkbox-container {
        font-size: .85rem
    }

    .form-actions {
        gap: .5rem
    }

    .price-badge {
        padding: 1rem 1.2rem;
        margin-bottom: 1rem
    }

    .price-badge .price {
        font-size: 1.8rem
    }

    .price-badge .currency {
        font-size: .9rem
    }

    .pricing-features {
        padding: 0 .5rem
    }

    .pricing-features li {
        padding: .8rem 0;
        gap: .8rem
    }

    .pricing-grid-3col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .empty-state {
        padding: 3rem 1.5rem;
    }

    .empty-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .empty-state h3 {
        font-size: 1.5rem;
    }

    .empty-state p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

}

/* ========== Modern Alert System ========== */
.alert-container {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.modern-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideInDown 0.5s ease-out;
}

.modern-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
    opacity: 0.8;
}

.modern-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.alert-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-top: 2px;
}

.alert-content {
    flex: 1;
    min-width: 0;
}

.alert-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.alert-content p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.alert-close {
    flex-shrink: 0;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: inherit;
    opacity: 0.7;
}

.alert-close:hover {
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: scale(1.1);
}

/* Success Alert */
.alert-success {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    color: #166534;
    border-color: rgba(34, 197, 94, 0.2);
}

.alert-success .alert-icon {
    color: #22c55e;
}

.alert-success::before {
    background: #22c55e;
}

/* Warning Alert */
.alert-warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #92400e;
    border-color: rgba(234, 179, 8, 0.2);
}

.alert-warning .alert-icon {
    color: #eab308;
}

.alert-warning::before {
    background: #eab308;
}

/* Error Alert */
.alert-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-color: rgba(239, 68, 68, 0.2);
}

.alert-error .alert-icon {
    color: #ef4444;
}

.alert-error::before {
    background: #ef4444;
}

/* Info Alert */
.alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.2);
}

.alert-info .alert-icon {
    color: #3b82f6;
}

.alert-info::before {
    background: #3b82f6;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.modern-alert.fade-out {
    animation: slideOutUp 0.3s ease-in forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-alert {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .alert-icon {
        width: 20px;
        height: 20px;
        font-size: 1.1rem;
    }

    .alert-content h4 {
        font-size: 1rem;
    }

    .alert-content p {
        font-size: 0.9rem;
    }

    .alert-close {
        width: 28px;
        height: 28px;
    }
}

/* ========== User Menu Styles ========== */
.nav-user-menu {
    margin-left: auto;
    position: relative;
}

.nav-user-menu .dropdown-toggle::after {
    display: none;
}

.user-menu-btn {
    color: var(--dark) !important;
    text-decoration: none !important;
    padding: 0.5rem 0.7rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.user-menu-btn:hover {
    color: var(--primary-orange) !important;
    background: rgba(255, 107, 53, .1) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, .15) !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
}

.user-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
}


@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.user-info {
    text-align: left;
    flex: 1;
}

.dropdown-icon {
    color: #6b7280;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.user-menu-btn:hover .dropdown-icon {
    color: var(--primary-orange);
    transform: rotate(180deg);
}

.dropdown-header {
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.user-info-dropdown .user-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.user-info-dropdown .user-email {
    color: #6b7280;
    font-size: 0.8rem;
}

.logout-btn {
    color: #ef4444 !important;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #dc2626 !important;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.2;
}

.user-role {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.2;
}

.user-menu .dropdown-menu {
    position: absolute;
    display: none;
    right: 0;
    top: 100%;
    border: 1px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    background: #fff;
    z-index: 1001;
    list-style: none;
    margin-left: 0;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.user-menu.open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.user-menu .dropdown-item {
    padding: 0.875rem 1.5rem;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: transparent;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    font-size: 0.9rem;
    border-radius: 0;
}

.user-menu .dropdown-menu li {
    list-style: none;
}

.user-menu .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.12));
    color: var(--primary-orange);
}

.user-menu .dropdown-item.text-danger {
    color: #dc3545;
}

.user-menu .dropdown-item.text-danger:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08), rgba(220, 53, 69, 0.12));
    color: #dc3545 !important;
    transform: translateX(4px);
}

.user-menu .dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.user-menu .dropdown-divider {
    margin: 0.75rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.nav-auth-links {
    margin-left: auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-auth-links .btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-auth-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, .15);
}

/* Mobile Responsive for User Menu */
@media (max-width: 768px) {
    .nav-user-menu {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .user-menu .btn-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem;
    }

    .user-menu .dropdown-menu {
        position: static !important;
        display: none;
        transform: none !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 107, 53, .15);
        border-radius: 12px;
        margin-top: 0.5rem;
        opacity: 1;
    }

    .user-menu.open .dropdown-menu {
        display: block;
    }

    .nav-auth-links {
        margin-left: 0;
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-auth-links .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* ========== USER DASHBOARD STYLES ========== */
.ud-dashboard-page {
    background: var(--light-gray);
    min-height: 100vh;
    padding: 2rem 0;
}

.ud-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.ud-welcome-section h1.ud-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ud-welcome-section h1.ud-title i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.ud-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.ud-avatar-section {
    display: flex;
    align-items: center;
}

.ud-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

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


/* Statistics Cards */
.ud-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ud-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ud-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ud-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.ud-stat-card.pending::before {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.ud-stat-card.confirmed::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.ud-stat-card.completed::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.ud-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.ud-stat-card.pending .ud-stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.ud-stat-card.confirmed .ud-stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.ud-stat-card.completed .ud-stat-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.ud-stat-content h3.ud-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.ud-stat-label {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Quick Actions */
.ud-quick {
    margin-bottom: 3rem;
}

.ud-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ud-section-title i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.ud-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ud-action-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.ud-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.ud-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: inherit;
    text-decoration: none;
}

.ud-action-card:hover::before {
    left: 100%;
}

.ud-action-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.ud-action-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.ud-action-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Reservations Section */
.ud-reservations {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.ud-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.ud-view-all {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.ud-view-all:hover {
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.ud-reservations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.ud-reservation-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ud-reservation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ud-reservation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.ud-reservation-card.pending::before {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.ud-reservation-card.confirmed::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.ud-reservation-card.completed::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.ud-reservation-card.cancelled::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.ud-reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}


.ud-reservation-date {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.ud-reservation-content {
    margin-bottom: 1.5rem;
}

.ud-training-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ud-training-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ud-reservation-slots {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.ud-reservation-slots h6 {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ud-slots-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ud-slot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    font-size: 0.8rem;
}

.ud-slot-time {
    font-weight: 600;
    color: var(--dark);
}

.ud-slot-date {
    color: var(--gray);
}

.ud-reservation-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* Custom Button Styles */
.ud-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
}

.ud-btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.ud-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: var(--white);
    text-decoration: none;
}

.ud-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Empty State */
.ud-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 2px dashed rgba(255, 107, 53, 0.2);
    margin: 2rem 0;
}

.ud-empty-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow);
}

.ud-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.ud-empty p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination */
.ud-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.ud-pagination .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ud-pagination .page-item {
    margin: 0;
}

.ud-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ud-pagination .page-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.ud-pagination .page-item.active .page-link {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

/* Responsive Design for Dashboard */
@media (max-width: 1024px) {
    .ud-dashboard-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .ud-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ud-reservations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ud-dashboard-page {
        padding: 1rem 0;
    }

    .ud-dashboard-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .ud-welcome-section h1.ud-title {
        font-size: 1.5rem;
    }

    .ud-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ud-stat-card {
        padding: 1.5rem;
    }

    .ud-actions {
        grid-template-columns: 1fr;
    }

    .ud-action-card {
        padding: 1.5rem;
    }

    .ud-reservations {
        padding: 1.5rem;
    }

    .ud-section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .ud-reservation-card {
        padding: 1.25rem;
    }

    .ud-reservation-actions {
        flex-direction: column;
    }

    .ud-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Modern Footer Styles */
.footer-modern-footer {
    position: relative;
    background: var(--dark);
    color: white;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    z-index: 1;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(251, 85, 25, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 131, 48, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.footer-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(251, 85, 25, 0.3));
}

.footer-logo-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}


/* Quick Links */
.footer-quick-links-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-quick-links-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.footer-quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.footer-quick-link:hover {
    background: rgba(251, 85, 25, 0.1);
    border-color: rgba(251, 85, 25, 0.3);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 85, 25, 0.2);
}

.footer-quick-link i {
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-quick-link:hover i {
    transform: scale(1.1);
}

.footer-quick-link span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Quick Links */
@media (max-width: 768px) {
    .footer-quick-links-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .footer-quick-link {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .footer-quick-links-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-quick-link {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .footer-quick-link i {
        font-size: 0.8rem;
        width: 14px;
    }
}

/* Social Media */
.footer-social-links h5 {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 8px 25px rgba(251, 85, 25, 0.3);
}

.footer-social-link-facebook:hover {
    background: #1877f2;
}

.footer-social-link-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-link-youtube:hover {
    background: #ff0000;
}

.footer-social-link-whatsapp:hover {
    background: #25d366;
}

.footer-social-link-twitter:hover {
    background: #1da1f2;
}

.footer-social-link-linkedin:hover {
    background: #0077b5;
}

.footer-social-link-tiktok:hover {
    background: #000000;
}

/* Additional Popular Social Media Platforms */
.footer-social-link-twitter:hover {
    background: #1da1f2;
}

.footer-social-link-linkedin:hover {
    background: #0077b5;
}

.footer-social-link-pinterest:hover {
    background: #bd081c;
}

.footer-social-link-snapchat:hover {
    background: #fffc00;
    color: #000;
}

.footer-social-link-telegram:hover {
    background: #0088cc;
}

.footer-social-link-discord:hover {
    background: #5865f2;
}

.footer-social-link-reddit:hover {
    background: #ff4500;
}

.footer-social-link-twitch:hover {
    background: #9146ff;
}

.footer-social-link-vimeo:hover {
    background: #1ab7ea;
}

.footer-social-link-tumblr:hover {
    background: #001935;
}

.footer-social-link-medium:hover {
    background: #00ab6c;
}

.footer-social-link-github:hover {
    background: #333;
}

.footer-social-link-skype:hover {
    background: #00aff0;
}

.footer-social-link-slack:hover {
    background: #4a154b;
}

/* Footer Titles */
.footer-title {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
    border-radius: 1px;
}

/* Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 85, 25, 0.2);
    transform: translateY(-1px);
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(251, 85, 25, 0.15);
    color: var(--primary-orange);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-value {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact-value:hover {
    color: var(--primary-orange);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange);
    padding-left: 1rem;
}

.footer-link:hover::before {
    width: 0.5rem;
}

/* Hours Info */
.footer-hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours-item:last-child {
    border-bottom: none;
}

.footer-day {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-time-closed {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-main {
        padding: 2rem 0 1rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
}

/* ========== About Page Modern Styles ========== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #fff8f6 0%, #fff0eb 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23FF6B35" stop-opacity="0.05"/><stop offset="100%" stop-color="%23FF6B35" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="200" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="180" fill="url(%23a)"/></svg>');
    z-index: 1;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.about-hero-badge:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-title .about-highlight {
    color: var(--primary-orange);
    font-weight: 900;
}

.about-hero-description {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.about-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.about-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
}

.about-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
}

.about-image-container img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.1;
    animation: about-float 6s ease-in-out infinite;
}

@keyframes about-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-content-full {
    max-width: 100%;
    width: 100%;
}

.about-text-content {
    margin-bottom: 3rem;
}

.about-content-header {
    text-align: left;
    margin-bottom: 3rem;
}

.about-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-content-title i {
    font-size: 2rem;
}

.about-content-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-content-text {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-certifications-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.about-certifications-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-card-header i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.about-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0;
}

.about-certifications-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-cert-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.about-cert-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.about-cert-item span {
    font-weight: 500;
    color: var(--dark);
}

/* Approach Section */
.about-approach-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff0eb 100%);
    border-radius: 20px;
}

.about-approach-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about-approach-title i {
    font-size: 1.8rem;
}

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

.about-approach-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.about-approach-item:hover::before {
    transform: scaleX(1);
}

.about-approach-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.about-approach-item:hover .about-approach-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.about-approach-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-approach-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline Section */
.about-timeline-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff0eb 100%);
    position: relative;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.about-section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 4rem;
}

/* Horizontal Timeline */
.about-timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
}

.about-timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 1;
}

.about-timeline-item-horizontal {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.about-timeline-marker-horizontal {
    position: relative;
    margin-bottom: 2rem;
}

.about-marker-year {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.about-timeline-item-horizontal:hover .about-marker-year {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.about-timeline-content-horizontal {
    width: 100%;
    max-width: 280px;
}

.about-timeline-card-horizontal {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-timeline-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.about-timeline-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.about-timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.about-timeline-card-horizontal:hover .about-timeline-icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
}

.about-timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.about-timeline-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.about-values-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-value-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.15);
}

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

.about-value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.about-value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-value-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-value-decoration {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-value-card:hover .about-value-decoration {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-hero-stats {
        justify-content: center;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-approach-item {
        padding: 1.5rem;
    }

    .about-certifications-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-content-title,
    .about-approach-title {
        font-size: 1.8rem;
        text-align: left;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-certifications-card {
        padding: 1.5rem;
    }

    .about-timeline-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .about-timeline-horizontal::before {
        display: none;
    }

    .about-timeline-item-horizontal {
        width: 100%;
        max-width: 400px;
    }

    .about-timeline-content-horizontal {
        max-width: 100%;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-value-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-stats {
        gap: 1rem;
    }

    .about-stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }

    .about-timeline-card-horizontal {
        padding: 1.5rem;
    }

    .about-timeline-item-horizontal {
        max-width: 100%;
    }
}

/* ========== Custom Review Modal Styles ========== */
.ud-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ud-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

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

.ud-modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    margin: auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow: hidden;
}

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

.ud-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.ud-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.ud-modal-title i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.ud-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.ud-modal-close:hover {
    background: #f3f4f6;
    color: var(--dark);
    transform: scale(1.1);
}

.ud-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

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

.ud-form-label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ud-form-label i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.ud-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.2s ease;
    background: var(--white);
}

.ud-form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(251, 85, 25, 0.1);
}

.ud-form-textarea::placeholder {
    color: #9ca3af;
}

.ud-rating-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ud-stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.ud-star-input {
    display: none;
}

.ud-star-label {
    font-size: 2rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.25rem;
    border-radius: 4px;
}

.ud-star-label:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

/* Selected state - highlight selected star and all previous stars */
.ud-star-label.selected {
    color: var(--primary-orange);
}

/* Hover state - highlight current star and all previous stars */
.ud-star-label.hover {
    color: var(--primary-orange);
}

/* When hovering, reset following stars */
.ud-star-label:hover~.ud-star-label {
    color: #d1d5db;
}

.ud-rating-text {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    min-height: 1.2rem;
}

.ud-form-error {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.ud-form-error.show {
    display: block;
}

.ud-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #f9fafb;
}

.ud-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ud-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ud-btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(251, 85, 25, 0.3);
}

.ud-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 85, 25, 0.4);
}

.ud-btn-secondary {
    background: var(--white);
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.ud-btn-secondary:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #d1d5db;
    color: var(--dark);
}

.ud-btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.ud-btn.loading .ud-btn-text {
    opacity: 0;
}

.ud-btn.loading .ud-btn-loading {
    display: block !important;
}

/* Modal Animation States */
.ud-modal.fade-in {
    animation: udModalFadeIn 0.3s ease forwards;
}

.ud-modal.fade-out {
    animation: udModalFadeOut 0.3s ease forwards;
}

@keyframes udModalFadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes udModalFadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .ud-modal-container {
        width: 95%;
        margin: 1rem auto;
        max-height: 85vh;
    }

    .ud-modal-header,
    .ud-modal-body,
    .ud-modal-footer {
        padding: 1rem 1.5rem;
    }

    .ud-modal-title {
        font-size: 1.1rem;
    }

    .ud-stars {
        gap: 0.1rem;
    }

    .ud-star-label {
        font-size: 1.8rem;
    }

    .ud-modal-footer {
        flex-direction: column;
    }

    .ud-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ud-modal-container {
        width: 98%;
        margin: 0.5rem auto;
        border-radius: 12px;
    }

    .ud-modal-header,
    .ud-modal-body,
    .ud-modal-footer {
        padding: 1rem;
    }

    .ud-star-label {
        font-size: 1.6rem;
    }
}

/* ========== User Review Display Styles ========== */
.ud-review-section {
    margin-bottom: 3rem;
}

.ud-review-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ud-review-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.ud-review-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ud-review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ud-review-rating .fas.fa-star {
    font-size: 1.2rem;
    color: #d1d5db;
    transition: all 0.2s ease;
}

.ud-review-rating .fas.fa-star.active {
    color: var(--primary-orange);
}

.ud-review-rating-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.ud-review-status {
    display: flex;
    align-items: center;
}

.ud-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ud-status-badge.pending {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fbbf24;
}

.ud-status-badge.approved {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #34d399;
}

.ud-status-badge.rejected {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #f87171;
}

.ud-review-content {
    padding: 2rem;
}

.ud-review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin: 0;
    font-style: italic;
    position: relative;
}

.ud-review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-orange);
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    opacity: 0.3;
    font-family: serif;
}

.ud-review-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-orange);
    position: absolute;
    bottom: -1.5rem;
    right: -0.5rem;
    opacity: 0.3;
    font-family: serif;
}

.ud-review-footer {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ud-review-date,
.ud-review-published {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.ud-review-published {
    color: var(--primary-orange);
    font-weight: 500;
}

.ud-review-published i {
    color: #059669;
}

/* Responsive Design for Review Section */
@media (max-width: 768px) {
    .ud-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ud-review-rating {
        order: 1;
    }

    .ud-review-status {
        order: 2;
    }

    .ud-review-content {
        padding: 1.5rem;
    }

    .ud-review-text {
        font-size: 0.95rem;
    }

    .ud-review-text::before {
        font-size: 2.5rem;
        top: -0.3rem;
        left: -0.8rem;
    }

    .ud-review-text::after {
        font-size: 2.5rem;
        bottom: -1.2rem;
        right: -0.3rem;
    }

    .ud-review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {

    .ud-review-header,
    .ud-review-content,
    .ud-review-footer {
        padding: 1rem 1.5rem;
    }

    .ud-review-rating .fas.fa-star {
        font-size: 1rem;
    }

    .ud-review-rating-text {
        font-size: 0.8rem;
    }

    .ud-status-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}