/* ============================================
   WORKSHOPS PAGE STYLES
   Dr. HREL Workshops Portal
   ============================================ */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--navy) 0%, #2c5282 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 139, 139, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Stats counter animation effects */
.stat-number.animating {
    color: #FFD700;
    transform: scale(1.08);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-number.animated {
    animation: statPulse 0.6s ease;
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        color: #4FD1C5;
    }
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Workshops Section */
.workshops-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.85;
}

/* Workshop Cards */
.workshop-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.workshop-card.featured {
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.workshop-card.featured::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.workshop-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--teal);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    z-index: 10;
}

.workshop-badge.featured-badge {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.workshop-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 50px 50px 30px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(0, 139, 139, 0.05) 100%);
}

.workshop-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.2);
}

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

.workshop-meta {
    flex: 1;
}

.workshop-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.workshop-tagline {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
    font-style: italic;
}

.workshop-body {
    padding: 40px 50px 50px;
}

.workshop-description {
    margin-bottom: 40px;
}

.workshop-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.workshop-description strong {
    color: var(--navy);
    font-weight: 600;
}

/* Feature Grid */
.workshop-features {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--teal);
}

.feature-content h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.85;
}

/* Workshop Highlights */
.workshop-highlights {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--teal);
}

.workshop-highlights h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.workshop-highlights h4 i {
    color: var(--gold);
    font-size: 1.4rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlights-list li i {
    color: var(--teal);
    margin-top: 5px;
    flex-shrink: 0;
}

/* Workshop Details */
.workshop-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--light-gray);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.detail-item i {
    color: var(--navy);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Workshop Actions */
.workshop-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-text {
    background: transparent;
    color: var(--teal);
    border: none;
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--navy);
    transform: translateX(5px);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--teal);
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.pricing-title {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.75;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
}

.price-currency {
    font-size: 1.3rem;
    color: var(--teal);
    margin-left: 5px;
    font-weight: 600;
}

.price-save {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.pricing-features li i {
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Certificate Add-on */
.certificate-addon {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 30px;
}

.addon-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.addon-content h4 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.addon-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 12px;
}

.addon-price {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Stagger floating animation for each card */
.testimonial-card:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 4s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 1s;
}

.testimonial-card:nth-child(5) {
    animation-delay: 3s;
}

.testimonial-card:nth-child(6) {
    animation-delay: 5s;
}

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

.testimonial-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

.testimonial-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
    border-left: 4px solid var(--teal);
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.8rem;
    color: var(--white);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 2px;
}

.author-company {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.75;
}

.testimonial-badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--navy);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-badge i {
    color: var(--gold);
    margin-right: 5px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2c5282 100%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons .btn-large {
    min-width: 300px;
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-buttons .btn-large:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--navy);
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f0c14b, var(--gold));
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn i {
    font-size: 1.2rem;
    margin-right: 12px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.85;
}

.cta-note i {
    color: var(--gold);
}

.cta-note a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1rem;
}

.cta-stat i {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Corporate CTA Section */
.corporate-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.corporate-cta-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(0, 139, 139, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid var(--teal);
}

.corporate-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

.corporate-title {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.corporate-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
}

.corporate-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-size: 1rem;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--teal);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.corporate-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.corporate-cta-buttons .btn {
    min-width: 280px;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.corporate-cta-buttons .btn:hover::before {
    left: 100%;
}

.corporate-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--teal), #0a7d7d);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.3);
}

.corporate-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 139, 139, 0.4);
    background: linear-gradient(135deg, #0a9999, var(--teal));
}

.corporate-cta-buttons .btn-secondary-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--teal);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.1);
}

.corporate-cta-buttons .btn-secondary-outline:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.3);
}

.corporate-cta-buttons .btn i {
    font-size: 1.15rem;
    margin-right: 10px;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: var(--white);
}

.booking-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.calendly-inline-widget {
    border-radius: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--teal);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.5;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.85;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-stats {
        gap: 30px;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .workshop-title {
        font-size: 1.8rem;
    }

    .workshop-header {
        padding: 40px 35px 25px;
    }

    .workshop-body {
        padding: 30px 35px 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .workshop-details {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .cta-title {
        font-size: 2.5rem;
    }

    .corporate-benefits {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 20px;
    }

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

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .workshop-title {
        font-size: 1.5rem;
    }

    .workshop-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px 20px;
    }

    .workshop-icon {
        margin: 0 auto;
    }

    .workshop-body {
        padding: 25px;
    }

    .workshop-badge {
        top: 20px;
        right: 20px;
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .workshop-actions {
        flex-direction: column;
    }

    .workshop-actions .btn {
        width: 100%;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.05rem;
    }

    .cta-card {
        padding: 40px 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }

    .certificate-addon {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .corporate-cta-card {
        padding: 35px 25px;
    }

    .corporate-title {
        font-size: 1.8rem;
    }

    .corporate-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .corporate-cta-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn-large {
        width: 100%;
        min-width: auto;
        padding: 18px 35px;
        font-size: 1.05rem;
    }

    .booking-wrapper {
        border-radius: 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .workshop-title {
        font-size: 1.3rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}
