/* =============================================
   Customs Page Styles
   ============================================= */

.customs-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.customs-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.customs-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.customs-hero__glow--1 {
    width: 500px;
    height: 500px;
    background: #7b2ff7;
    top: -100px;
    left: -100px;
}

.customs-hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: -100px;
    right: -100px;
}

.customs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.customs-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.customs-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(232, 228, 240, 0.65);
    max-width: 560px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

/* ── WhatsApp CTA ── */
.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1;
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta svg {
    width: 20px;
    height: 20px;
}

/* ── Past Customs Gallery ── */
.customs-gallery {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.customs-gallery__header {
    text-align: center;
    margin-bottom: 48px;
}

.customs-gallery__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.customs-gallery__subtitle {
    color: rgba(232, 228, 240, 0.6);
    font-size: 1.05rem;
}

.customs-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.customs-gallery__card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.customs-gallery__card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 120, 150, 0.35);
    box-shadow: 0 16px 48px rgba(0, 105, 135, 0.15);
}

.customs-gallery__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.customs-gallery__info {
    padding: 16px;
}

.customs-gallery__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.customs-gallery__label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(232, 228, 240, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Pricing Guide ── */
.pricing-guide {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.pricing-guide__header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-guide__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.pricing-guide__subtitle {
    color: rgba(232, 228, 240, 0.6);
    font-size: 1.05rem;
}

.pricing-guide__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 120, 150, 0.3);
}

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

.pricing-card__type {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    margin-bottom: 12px;
}

.pricing-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pricing-card__price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.pricing-card__note {
    font-size: 0.82rem;
    color: rgba(232, 228, 240, 0.45);
    margin-bottom: 20px;
}

.pricing-card__sizes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-card__size {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
}

.pricing-card__size-label {
    color: rgba(232, 228, 240, 0.6);
}

.pricing-card__size-price {
    color: var(--light);
    font-weight: 600;
}

/* ── FAQ Accordion ── */
.customs-faq {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.customs-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.customs-faq__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.customs-faq__subtitle {
    color: rgba(232, 228, 240, 0.6);
    font-size: 1.05rem;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: rgba(0, 120, 150, 0.3);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--light);
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    transition: var(--transition);
}

.faq-item__question:hover {
    color: var(--cyan);
}

.faq-item__icon {
    font-size: 1.2rem;
    color: rgba(232, 228, 240, 0.4);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    color: var(--cyan);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-size: 0.92rem;
    color: rgba(232, 228, 240, 0.6);
    line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .customs-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .customs-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-guide__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .customs-gallery__grid {
        grid-template-columns: 1fr;
    }
}