/* ============================
   Mento Goods - Contact Page Styles
   Modern & Professional Design
   ============================ */

/* ============================
   HERO SECTION
   ============================ */

.contact-hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, 
        #6B4423 0%, 
        #8B5A2B 50%, 
        #A06838 100%
    );
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stat-icon {
    font-size: 2rem;
}

.hero-stat-content {
    text-align: left;
}

.hero-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================
   CONTACT MAIN SECTION
   ============================ */

.contact-main {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #FAF7F2, #F5F1E8);
}

.contact-info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-intro-text {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Method Cards */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method-card {
    background: white;
    border: 2px solid #E7E1D6;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B4423, #A06838);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    transform: translateY(-6px);
    border-color: #A06838;
    box-shadow: 0 12px 30px rgba(160, 104, 56, 0.2);
}

.method-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F5F1E8, #EBE3D5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-card-icon {
    background: linear-gradient(135deg, #6B4423, #A06838);
    transform: scale(1.1) rotate(5deg);
}

.contact-method-card.whatsapp-card:hover .method-card-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-method-card.instagram-card:hover .method-card-icon {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

.contact-method-card.shopier-card:hover .method-card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.method-card-icon svg {
    width: 35px;
    height: 35px;
    color: #6B4423;
    transition: color 0.3s ease;
}

.contact-method-card:hover .method-card-icon svg {
    color: white;
}

.method-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.method-card-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.method-card-detail {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #6B4423;
    margin-bottom: 1rem;
}

.method-card-action {
    font-size: 0.875rem;
    font-weight: 600;
    color: #A06838;
    transition: transform 0.3s ease;
}

.contact-method-card:hover .method-card-action {
    transform: translateX(4px);
}

/* Contact Hours Info */
.contact-hours-info {
    background: white;
    border: 2px solid #E7E1D6;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hours-icon-large {
    font-size: 3rem;
    flex-shrink: 0;
}

.hours-info-content {
    flex: 1;
}

.hours-info-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.hours-info-text {
    font-size: 1rem;
    color: #6B4423;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hours-info-note {
    font-size: 0.875rem;
    color: #64748b;
}


/* ============================
   CONTACT CHANNELS
   ============================ */

.contact-channels {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #EBE3D5, #E7E1D6);
    border-radius: 100px;
    color: #6B4423;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.channel-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: white;
    border: 2px solid #E7E1D6;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B4423, #A06838);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.channel-card:hover::before {
    transform: scaleX(1);
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: #A06838;
    box-shadow: 0 20px 40px rgba(160, 104, 56, 0.25);
}

.channel-card.whatsapp-card:hover {
    border-color: #25D366;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.25);
}

.channel-card.whatsapp-card::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.channel-card.instagram-card:hover {
    border-color: #E1306C;
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.25);
}

.channel-card.instagram-card::before {
    background: linear-gradient(90deg, #E1306C, #C13584);
}

.channel-card.shopier-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
}

.channel-card.shopier-card::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.channel-icon-wrapper {
    margin-bottom: 1.5rem;
}

.channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F1E8, #EBE3D5);
    border-radius: 20px;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.channel-card:hover .channel-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #6B4423, #A06838);
}

.channel-card.whatsapp-card:hover .channel-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.channel-card.whatsapp-card .channel-icon svg {
    width: 40px;
    height: 40px;
    color: #25D366;
    transition: color 0.4s ease;
}

.channel-card.whatsapp-card:hover .channel-icon svg {
    color: white;
}

.channel-card.instagram-card:hover .channel-icon {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

.channel-card.shopier-card:hover .channel-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.channel-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.channel-text {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.channel-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #A06838;
    transition: all 0.3s ease;
}

.channel-card:hover .channel-link {
    transform: translateX(4px);
    display: inline-block;
}

/* ============================
   WORKSHOP VISIT
   ============================ */

.workshop-visit {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6B4423 0%, #A06838 100%);
    position: relative;
    overflow: hidden;
}

.workshop-visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.workshop-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.workshop-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.workshop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.workshop-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.workshop-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.workshop-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.workshop-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.workshop-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #6B4423;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.workshop-cta:hover {
    background: #FAF7F2;
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.workshop-cta svg {
    transition: transform 0.3s ease;
}

.workshop-cta:hover svg {
    transform: translateX(4px);
}

.workshop-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

/* Workshop Slider Styles */
.workshop-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.workshop-slider .slider-container {
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: relative;
}

.workshop-slider .slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
    height: 100%;
}

.workshop-slider .slider-item {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    flex-grow: 0;
}

.workshop-slider .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.workshop-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #6B4423;
    border: 2px solid #6B4423;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.3);
    user-select: none;
}

.workshop-slider .slider-btn:hover {
    background: #6B4423;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 68, 35, 0.45);
}

.workshop-slider .slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.workshop-slider .slider-prev {
    left: 15px;
}

.workshop-slider .slider-next {
    right: 15px;
}

.workshop-slider .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.workshop-slider .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.workshop-slider .slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.workshop-slider .slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

/* Slider Image Zoom Effect */
.workshop-slider .slider-item img {
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.workshop-slider .slider-item img:hover {
    opacity: 0.95;
    filter: brightness(1.05);
    transform: scale(1.02);
}

/* ============================
   IMAGE LIGHTBOX MODAL
   ============================ */

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: #6B4423;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    background: #6B4423;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================
   FAQ SECTION
   ============================ */

.faq-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #E7E1D6;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #A06838;
    box-shadow: 0 8px 20px rgba(160, 104, 56, 0.1);
}

.faq-item.active {
    border-color: #A06838;
    box-shadow: 0 8px 20px rgba(160, 104, 56, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #FAF7F2;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #F5F1E8, #EBE3D5);
    color: #6B4423;
}

.faq-icon {
    font-size: 1.25rem;
    color: #A06838;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

@media (max-width: 1024px) {
    .workshop-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .workshop-image {
        order: -1;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat {
        width: 100%;
        justify-content: center;
    }
    
    .contact-intro-title {
        font-size: 2rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .contact-hours-info {
        flex-direction: column;
        text-align: center;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .workshop-title {
        font-size: 2rem;
    }
    
    .workshop-features {
        gap: 1rem;
    }
    
    /* Hide slider buttons on mobile - use swipe instead */
    .workshop-slider .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-intro-title {
        font-size: 1.75rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        padding: 1.5rem 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .workshop-image {
        height: 250px;
    }
    
    .workshop-slider .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .workshop-slider .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}
