/* ============================================
   Contact Page Styles - Minimal Design
   ============================================ */

/* ============================================
   Contact Hero Section - With Background
   ============================================ */
.contact-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)),
                url("../assets/images/shop-6.png");
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    overflow: hidden;
}

/* Overlay gradient */
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 192, 8, 0.05) 0%, transparent 40%, rgba(243, 192, 8, 0.03) 100%);
    pointer-events: none;
}

/* Animated glow */
.contact-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 192, 8, 0.08) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
        opacity: 0.7;
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.contact-hero-title {
    font-family: var(--font-primary);
    font-size: 54px;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.contact-hero-title span {
    color: var(--color-gold);
}

.contact-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-hero-btn.primary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.contact-hero-btn.primary:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
}

.contact-hero-btn.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-hero-btn.secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.contact-hero-btn svg {
    width: 16px;
    height: 16px;
}

/* Hero Decorations */
.contact-hero-decor {
    display: none;
}

/* ============================================
   Contact Info Section - Minimal Horizontal
   ============================================ */
.contact-info-section {
    padding: 0;
    background-color: var(--color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.info-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.info-card:last-child {
    border-right: none;
}

.info-card:hover {
    background: rgba(243, 192, 8, 0.03);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(243, 192, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    background: var(--color-gold);
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon svg {
    color: var(--color-black);
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

.info-card-value {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.3s ease;
}

a.info-card-value:hover {
    color: var(--color-gold);
}

.info-card-note {
    font-size: 12px;
    color: var(--color-white-soft);
}

/* ============================================
   Contact Main Section - With Background Image
   ============================================ */
.contact-main-section {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 44px;
    color: var(--color-black);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: rgba(30, 30, 30, 0.75);
    line-height: 1.7;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* No top bar - clean design */

.contact-form-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--color-black);
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background-color: var(--color-white);
    color: var(--color-black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(30, 30, 30, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(243, 192, 8, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 16px;
    height: 16px;
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* No top bar - clean design */

.map-container:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.map-header {
    margin-bottom: 20px;
}

.map-title {
    font-family: var(--font-primary);
    font-size: 26px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.map-address {
    font-size: 14px;
    color: rgba(30, 30, 30, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-address::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.map-wrapper {
    flex: 1;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 24px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.map-direction-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.map-direction-btn svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
    .contact-info-grid {
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .info-card:nth-child(2) {
        border-right: none;
    }

    .info-card:nth-child(3),
    .info-card:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 42px;
    }

    .contact-main-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-card {
        padding: 40px;
    }

    .map-wrapper {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-desc {
        font-size: 15px;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .info-card {
        flex: 1;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        justify-content: flex-start;
        padding: 24px 20px;
    }

    .info-card:last-child {
        border-bottom: none;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .section-header-center {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px;
    }

    .map-container {
        padding: 24px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .map-direction-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 30px;
    }

    .contact-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-main-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .map-container {
        padding: 20px;
    }

    .map-wrapper {
        min-height: 250px;
    }

    .map-title {
        font-size: 22px;
    }
}

/* ============================================
   Success Popup with Confetti
   ============================================ */
.success-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.success-popup-overlay.active {
    display: flex;
}

.success-popup {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: popupBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    overflow: hidden;
}

#confettiCanvas {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
}

.success-popup-content {
    position: relative;
    z-index: 2;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #D4AF37, #F3C008);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPop 0.6s ease 0.3s both;
}

.success-icon svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
}

.success-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: linear-gradient(135deg, #D4AF37, #F3C008);
    color: #1E1E1E;
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

@keyframes popupBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .success-popup {
        padding: 40px 28px 32px;
        border-radius: 20px;
    }

    .success-icon {
        width: 64px;
        height: 64px;
    }

    .success-icon svg {
        width: 28px;
        height: 28px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-desc {
        font-size: 14px;
    }

    .success-close-btn {
        padding: 12px 32px;
        font-size: 13px;
    }
}
