/*** Custom Enhanced Styles for Taller de Artes Providencia ***/

/* Parallax Effect for Header */
.header-carousel {
    position: relative;
    overflow: hidden;
}

.header-carousel img {
    transform: scale(1);
    transition: transform 8s ease-out;
}

.header-carousel .active img {
    transform: scale(1.1);
}

/* Floating Animation */
@keyframes float {

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

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

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #ffaa00 0%, #dd9000 50%, #ffaa00 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Card Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Pulse Animation for Icons */
@keyframes pulse {

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

    50% {
        transform: scale(1.1);
    }
}

.pulse-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* Hover Glow Effect */
.glow-on-hover {
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.6), 0 0 40px rgba(255, 170, 0, 0.4);
}

/* Image Overlay Effect */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::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.5s ease;
}

.image-overlay:hover::before {
    left: 100%;
}

/* Stagger Animation for Lists */
.stagger-animation>* {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-animation>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-animation>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-animation>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-animation>*:nth-child(5) {
    animation-delay: 0.5s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #dd9000, #ffaa00);
}

/* Section Divider */
.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffaa00, transparent);
    margin: 30px auto;
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ffaa00, #dd9000);
    transition: width 0.3s ease;
}

.animated-underline:hover::after {
    width: 100%;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.counter {
    animation: countUp 1s ease forwards;
}

/* Ribbon Effect */
.ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.ribbon::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    border-left: 5px solid #bb7000;
    border-bottom: 5px solid transparent;
}

/* Hover Lift Effect */
.lift-on-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lift-on-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.reveal-text {
    opacity: 0;
    animation: textReveal 0.8s ease forwards;
}

/* Icon Bounce on Hover */
.bounce-on-hover {
    transition: transform 0.3s ease;
}

.bounce-on-hover:hover {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Gradient Border */
.gradient-border {
    position: relative;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(135deg, #ffaa00, #dd9000, #ffaa00);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.gradient-border-inner {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

/* Shine Effect */
@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

/* Modal Enhancement */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Tooltip Enhancement */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* Loading Dots Animation */
@keyframes loadingDots {

    0%,
    20% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.loading-dots span {
    animation: loadingDots 1.4s infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Font Sizes */
@media (max-width: 992px) {
    .display-1 {
        font-size: 3.5rem;
    }

    .display-2 {
        font-size: 3rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 2.5rem;
    }

    .display-2 {
        font-size: 2.25rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }
}


/* =========================================
   STYLES FROM GIFT-CARDS.HTML
   ========================================= */

/* Gift Card Styles */
.gift-card-hero {
    background: linear-gradient(135deg, #ffaa00 0%, #dd9000 100%);
    padding: 100px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.gift-card-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../media/principal.jpeg') center center no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.gift-card-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 3px solid transparent;
    height: 100%;
}

.gift-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #ffaa00;
}

.gift-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 36px;
}

.benefit-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.gift-card-visual {
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 170, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.gift-card-visual::before {
    content: '🎨';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    right: -20px;
    bottom: -30px;
}

/* =========================================
   STYLES FROM HORARIOS.HTML
   ========================================= */

/* Page Header */
.page-header-horarios {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/principal.jpeg') center center no-repeat;
    background-size: cover;
    padding: 100px 0;
    margin-bottom: 60px;
}

/* Schedule Table Styles */
.schedule-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.schedule-table thead th {
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    color: white;
    font-weight: 700;
    padding: 20px 15px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.schedule-table thead th:first-child {
    border-top-left-radius: 15px;
}

.schedule-table thead th:last-child {
    border-top-right-radius: 15px;
}

.schedule-table tbody td {
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.schedule-table tbody tr:hover td {
    background-color: #f8f9fa;
}

.schedule-table tbody td.time-cell {
    font-weight: 700;
    color: #282F34;
    background-color: #f8f9fa;
}

.schedule-table tbody td.block-cell {
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    font-size: 18px;
}

.schedule-table tbody td.class-available {
    background: linear-gradient(135deg, #49b0ca, #3a8fa3);
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.schedule-table tbody td.class-available::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.5s ease;
}

.schedule-table tbody td.class-available:hover::before {
    left: 100%;
}

.schedule-table tbody td.class-available:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(73, 176, 202, 0.4);
    z-index: 5;
}

.schedule-table tbody td.empty-cell {
    background-color: #fafafa;
    color: #ccc;
}

/* Legend */
.schedule-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 40px;
    height: 25px;
    border-radius: 5px;
}

.legend-color.available {
    background: linear-gradient(135deg, #49b0ca, #3a8fa3);
}

.legend-color.block {
    background: linear-gradient(135deg, #ffaa00, #dd9000);
}

.legend-text {
    font-weight: 600;
    color: #282F34;
    font-size: 14px;
}

/* Mobile horizontal scroll indicator */
@media (max-width: 991px) {
    .schedule-container::after {
        content: '← Desliza para ver más →';
        display: block;
        text-align: center;
        color: #6c757d;
        font-size: 12px;
        margin-top: 15px;
        font-weight: 600;
    }
}

/* =========================================
   STYLES FROM VALORES.HTML
   ========================================= */

/* Pricing Cards Styles */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 3px solid transparent;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ffaa00, #dd9000);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #ffaa00;
}

.pricing-card.featured {
    border: 3px solid #ffaa00;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    height: 8px;
    background: linear-gradient(90deg, #ffaa00, #dd9000, #ffaa00);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

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

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #282F34;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #ffaa00;
    margin-bottom: 5px;
}

.pricing-price .currency {
    font-size: 24px;
    vertical-align: super;
}

.pricing-period {
    font-size: 16px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
}

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

.pricing-features li i {
    color: #ffaa00;
    margin-right: 12px;
    font-size: 18px;
}

.pricing-features li strong {
    color: #ffaa00;
    font-weight: 700;
}

.pricing-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.3);
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
    background: linear-gradient(135deg, #dd9000, #ffaa00);
    color: white;
}

.pricing-buttons {
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #282F34;
    margin-bottom: 15px;
}

.benefit-text {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

/* Page Header */
.page-header-valores {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/principal.jpeg') center center no-repeat;
    background-size: cover;
    padding: 100px 0;
    margin-bottom: 80px;
}

/* Color Variants */
.pricing-card.pink::before {
    background: linear-gradient(90deg, #f06ace, #c5589f);
}

.pricing-card.pink .pricing-price {
    color: #f06ace;
}

.pricing-card.pink .pricing-features li i,
.pricing-card.pink .pricing-features li strong {
    color: #f06ace;
}

.pricing-card.pink .pricing-btn {
    background: linear-gradient(135deg, #f06ace, #c5589f);
    box-shadow: 0 5px 15px rgba(240, 106, 206, 0.3);
}

.pricing-card.pink .pricing-btn:hover {
    background: linear-gradient(135deg, #c5589f, #f06ace);
    box-shadow: 0 8px 25px rgba(240, 106, 206, 0.4);
}

.pricing-card.blue::before {
    background: linear-gradient(90deg, #49b0ca, #3a8fa3);
}

.pricing-card.blue .pricing-price {
    color: #49b0ca;
}

.pricing-card.blue .pricing-features li i,
.pricing-card.blue .pricing-features li strong {
    color: #49b0ca;
}

.pricing-card.blue .pricing-btn {
    background: linear-gradient(135deg, #49b0ca, #3a8fa3);
    box-shadow: 0 5px 15px rgba(73, 176, 202, 0.3);
}

.pricing-card.blue .pricing-btn:hover {
    background: linear-gradient(135deg, #3a8fa3, #49b0ca);
    box-shadow: 0 8px 25px rgba(73, 176, 202, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-price {
        font-size: 36px;
    }

    .schedule-container {
        padding: 20px 10px;
    }

    .schedule-table {
        font-size: 12px;
    }

    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 12px 8px;
    }

    .schedule-legend {
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }
}


/* =========================================
   STYLES FROM CONTACTO.HTML & NOSOTROS.HTML
   ========================================= */

/* Page Header */
.page-header-contacto {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/principal.jpeg') center center no-repeat;
    background-size: cover;
    padding: 100px 0;
    margin-bottom: 60px;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 5px solid #ffaa00;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #282F34;
    margin-bottom: 15px;
}

.contact-text {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-link {
    color: #ffaa00;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #dd9000;
    text-decoration: underline;
}

/* Steps Section */
.steps-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 100px;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #282F34;
    margin-bottom: 10px;
}

.step-text {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 20px;
}

/* Social Media Buttons */
.social-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.social-contact-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: white;
}

.social-contact-btn.instagram {
    background: linear-gradient(135deg, #e1306c, #833ab4);
    color: white;
}

.social-contact-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    background: linear-gradient(135deg, #833ab4, #e1306c);
    color: white;
}

.social-contact-btn.email {
    background: linear-gradient(135deg, #ffaa00, #dd9000);
    color: white;
}

.social-contact-btn.email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
    background: linear-gradient(135deg, #dd9000, #ffaa00);
    color: white;
}

/* Info Box */
.info-box {
    background: white;
    border-left: 5px solid #ffaa00;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #282F34;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-box-title i {
    color: #ffaa00;
    margin-right: 10px;
    font-size: 20px;
}

/* Hover Effect for Columns */
[class*="col-"]>div:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        padding-left: 30px;
        padding-top: 80px;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
    }

    .social-contact-btn {
        width: 100%;
        margin: 10px 0;
    }
}

/* Workshop Pages Styles */
.modal-content {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
    background: white;
    color: #ffaa00 !important;
}