/* ============================================
   BENTOUYA - Components CSS
   Menu, About, Testimonials, Contact, Footer
============================================ */

/* ============================================
   MENU SECTION
============================================ */
.menu-section {
    padding: 10rem 2rem 12rem;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(199, 62, 29, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(184, 134, 11, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--ink-light) 0%, var(--ink) 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-card {
    position: relative;
    background: linear-gradient(160deg, rgba(247, 243, 237, 0.04) 0%, rgba(247, 243, 237, 0.01) 100%);
    border: 1px solid rgba(247, 243, 237, 0.04);
    border-radius: var(--card-radius);
    padding: 3.5rem 2.5rem 3rem;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: none;
    opacity: 0;
    transform: translateY(80px);
    display: block;
}

.menu-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -30%, var(--lantern-strong) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.menu-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vermillion), var(--gold-light), var(--vermillion));
    transform: scaleX(0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover {
    transform: translateY(-18px);
    border-color: rgba(199, 62, 29, 0.3);
    box-shadow: 
        0 60px 120px rgba(0,0,0,0.5),
        0 0 180px var(--lantern);
}

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

.menu-card:hover::after {
    transform: scaleX(1);
}

.menu-card-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: var(--font-fr);
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(247, 243, 237, 0.12);
    letter-spacing: 2px;
}

.menu-card-kanji {
    position: absolute;
    bottom: -2.5rem;
    right: 0;
    font-family: var(--font-jp);
    font-size: 12rem;
    font-weight: 800;
    color: rgba(247, 243, 237, 0.015);
    line-height: 1;
    transition: all 0.7s ease;
    pointer-events: none;
}

.menu-card:hover .menu-card-kanji {
    color: rgba(199, 62, 29, 0.05);
    transform: scale(1.15) rotate(-10deg);
}

.menu-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--vermillion-bright) 0%, var(--vermillion) 50%, #7a1a08 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 20px 50px var(--vermillion-glow),
        inset 0 2px 0 rgba(255,255,255,0.15),
        inset 0 -5px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-icon {
    transform: rotate(-12deg) scale(1.1);
    box-shadow: 
        0 30px 70px var(--vermillion-glow),
        inset 0 2px 0 rgba(255,255,255,0.15);
}

.menu-card-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--paper);
    stroke-width: 1.5;
    fill: none;
}

.menu-card-jp {
    font-family: var(--font-jp);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.menu-card-name {
    font-family: var(--font-fr);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.menu-card-desc {
    color: var(--paper-muted);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 243, 237, 0.04);
    position: relative;
    z-index: 1;
}

.menu-card-count {
    font-family: var(--font-fr);
    font-size: 1rem;
    color: var(--vermillion);
}

.menu-card-count strong {
    font-size: 1.8rem;
    font-weight: 600;
    margin-right: 0.4rem;
}

.menu-card-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(247, 243, 237, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-arrow {
    background: var(--vermillion);
    border-color: var(--vermillion);
    transform: translateX(10px);
    box-shadow: 0 15px 40px var(--vermillion-glow);
}

.menu-card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--paper);
    stroke-width: 2;
    fill: none;
}

/* ============================================
   MENU DOWNLOAD SECTION
============================================ */
.menu-download {
    max-width: 800px;
    margin: 5rem auto 0;
    padding: 0 1rem;
}

.menu-download-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(199, 62, 29, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.menu-download-content:hover {
    border-color: rgba(184, 134, 11, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.menu-download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vermillion-bright) 0%, var(--vermillion) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px var(--vermillion-glow);
}

.menu-download-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--paper);
    stroke-width: 1.5;
    fill: none;
}

.menu-download-text {
    flex: 1;
}

.menu-download-label {
    display: block;
    font-family: var(--font-jp);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 0.25rem;
}

.menu-download-desc {
    display: block;
    font-family: var(--font-fr);
    font-size: 0.95rem;
    color: var(--paper-muted);
}

.menu-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.menu-download-btn:hover {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.menu-download-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ============================================
   MENU DETAIL MODAL
============================================ */
.menu-detail {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.menu-detail.active {
    opacity: 1;
    visibility: visible;
}

.menu-detail-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(20px);
}

.menu-detail-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: var(--ink-light);
    border: 1px solid rgba(247, 243, 237, 0.05);
    border-radius: var(--card-radius);
    padding: 4rem;
    overflow-y: auto;
    transform: translateY(50px) scale(0.95);
    transition: var(--transition-smooth);
}

.menu-detail.active .menu-detail-content {
    transform: translateY(0) scale(1);
}

.menu-detail-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(247, 243, 237, 0.05);
    border: 1px solid rgba(247, 243, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.menu-detail-close:hover {
    background: var(--vermillion);
    border-color: var(--vermillion);
}

.menu-detail-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--paper);
    stroke-width: 2;
}

.menu-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(247, 243, 237, 0.05);
}

.menu-detail-header .jp {
    font-family: var(--font-jp);
    font-size: 3rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.5rem;
}

.menu-detail-header .name {
    font-family: var(--font-fr);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
}

.menu-detail-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu-detail-item {
    display: grid;
    grid-template-columns: 45px 1fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: rgba(247, 243, 237, 0.02);
    border: 1px solid rgba(247, 243, 237, 0.03);
    border-radius: 14px;
    transition: var(--transition-fast);
}

.menu-detail-item:hover {
    background: rgba(199, 62, 29, 0.08);
    border-color: rgba(199, 62, 29, 0.15);
}

.menu-detail-item .code {
    font-family: var(--font-fr);
    font-size: 0.9rem;
    color: var(--vermillion);
    font-weight: 600;
}

.menu-detail-item .name-jp {
    font-family: var(--font-jp);
    font-size: 1rem;
    color: var(--paper);
}

.menu-detail-item .name-fr {
    font-family: var(--font-fr);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold);
    text-align: right;
}

/* ============================================
   QUOTE BANNERS
============================================ */
.quote-banner {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 9, 8, 0.75) 0%, rgba(10, 9, 8, 0.6) 50%, rgba(10, 9, 8, 0.75) 100%);
    z-index: 1;
}

.quote-banner.anime-bg {
    background: 
        linear-gradient(135deg, 
            rgba(199, 62, 29, 0.2) 0%, 
            rgba(26, 22, 19, 0.95) 25%,
            rgba(15, 13, 11, 0.9) 50%,
            rgba(26, 22, 19, 0.95) 75%,
            rgba(184, 134, 11, 0.15) 100%
        ),
        radial-gradient(ellipse at 20% 50%, rgba(255, 147, 41, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(199, 62, 29, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* When anime background image is added */
.quote-banner.has-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-banner blockquote {
    position: relative;
    z-index: 2;
    font-family: var(--font-fr);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-style: italic;
    font-weight: 400;
    color: var(--paper);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.quote-banner blockquote::before {
    content: '"';
    position: absolute;
    top: -0.3em;
    left: -0.4em;
    font-size: 5em;
    color: var(--vermillion);
    opacity: 0.25;
    font-family: var(--font-jp);
    line-height: 1;
}

.quote-banner cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-light) 50%, var(--ink) 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonials-rating .count {
    font-family: var(--font-fr);
    font-size: 1.1rem;
    color: var(--paper-muted);
}

.testimonials-rating .score {
    font-family: var(--font-jp);
    font-size: 2rem;
    font-weight: 700;
    color: var(--paper);
}

.testimonials-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.testimonials-rating .stars svg {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
    stroke: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--ink);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink);
}

.testimonial-stars {
    display: flex;
    gap: 0.15rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
    stroke: none;
}

.testimonial-text {
    font-family: var(--font-fr);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.testimonial-text::before { content: '"'; }
.testimonial-text::after { content: '"'; }

/* ============================================
   PHILOSOPHY SECTION
============================================ */
.philosophy-section {
    padding: 8rem 2rem;
    background: var(--ink-light);
}

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

.philosophy-item {
    text-align: center;
    padding: 3rem 2rem;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--vermillion-bright) 0%, #e8456b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(199, 62, 29, 0.3);
    transition: var(--transition-smooth);
}

.philosophy-item:hover .philosophy-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 25px 60px rgba(199, 62, 29, 0.4);
}

.philosophy-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    stroke-width: 1.5;
    fill: none;
}

.philosophy-item h3 {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--paper);
}

.philosophy-item p {
    font-family: var(--font-fr);
    font-size: 1.1rem;
    color: var(--paper-muted);
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    padding: 14rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 10% 30%, rgba(199, 62, 29, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(184, 134, 11, 0.07) 0%, transparent 50%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
}

.hanko-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hanko {
    width: 340px;
    height: 340px;
    border: 4px solid var(--vermillion);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: hankoSway 12s ease-in-out infinite;
    box-shadow: 
        inset 0 0 100px rgba(199, 62, 29, 0.15),
        0 0 120px var(--vermillion-glow);
}

.hanko::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 2px solid var(--vermillion);
    border-radius: 50%;
    opacity: 0.3;
}

.hanko::after {
    content: '';
    position: absolute;
    inset: -50px;
    border: 1px solid rgba(199, 62, 29, 0.1);
    border-radius: 50%;
    animation: hankoOrbit 20s linear infinite;
}

.hanko-kanji {
    font-family: var(--font-jp);
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--vermillion);
    line-height: 1;
    text-shadow: 5px 5px 0 rgba(199, 62, 29, 0.12);
}

.hanko-sub {
    font-family: var(--font-jp);
    font-size: 1.1rem;
    color: var(--vermillion);
    letter-spacing: 0.6em;
    margin-top: 0.5rem;
    opacity: 0.65;
}

.hanko-text {
    font-family: var(--font-fr);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--vermillion);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 1.25rem;
    opacity: 0.5;
}

/* Floating badges */
.badge {
    position: absolute;
    background: rgba(10, 9, 8, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 243, 237, 0.05);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.badge:hover {
    border-color: rgba(184, 134, 11, 0.4);
    transform: scale(1.08) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.badge:nth-child(1) { top: 3%; left: 3%; animation: badgeFloat1 9s ease-in-out infinite; }
.badge:nth-child(2) { bottom: 18%; left: -10%; animation: badgeFloat2 11s ease-in-out infinite; }
.badge:nth-child(3) { top: 18%; right: -8%; animation: badgeFloat3 10s ease-in-out infinite; }
.badge:nth-child(4) { bottom: 3%; right: 8%; animation: badgeFloat1 12s ease-in-out infinite reverse; }

.badge-icon {
    width: 44px;
    height: 44px;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.badge-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--paper-muted);
}

.about-text h2 {
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

.about-text h2 .highlight {
    color: var(--vermillion);
}

.about-text h2 .gold {
    color: var(--gold);
}

.about-text p {
    font-family: var(--font-fr);
    font-size: 1.25rem;
    color: var(--paper-muted);
    line-height: 2.2;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: rgba(247, 243, 237, 0.015);
    border: 1px solid rgba(247, 243, 237, 0.03);
    border-radius: 18px;
    transition: var(--transition-smooth);
}

.about-feature:hover {
    background: rgba(199, 62, 29, 0.08);
    border-color: rgba(199, 62, 29, 0.25);
    transform: translateX(10px);
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--vermillion-bright), #7a1a08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 30px var(--vermillion-glow);
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--paper);
    stroke-width: 1.5;
    fill: none;
}

.about-feature span {
    font-size: 1rem;
    font-weight: 400;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
    padding: 12rem 2rem;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-light) 100%);
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 0;
    background: linear-gradient(160deg, rgba(247, 243, 237, 0.04) 0%, rgba(247, 243, 237, 0.01) 100%);
    border: 1px solid rgba(247, 243, 237, 0.04);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 
        0 80px 150px rgba(0,0,0,0.4),
        0 0 250px rgba(199, 62, 29, 0.05);
}

.contact-info {
    padding: 5rem 4rem;
    background: linear-gradient(160deg, rgba(199, 62, 29, 0.12) 0%, transparent 100%);
    border-right: 1px solid rgba(247, 243, 237, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '場所';
    position: absolute;
    top: 4rem;
    right: -3rem;
    font-family: var(--font-jp);
    font-size: 10rem;
    font-weight: 800;
    color: rgba(247, 243, 237, 0.012);
    pointer-events: none;
}

.contact-info h2 {
    font-family: var(--font-jp);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info .jp {
    font-family: var(--font-jp);
    font-size: 1rem;
    color: var(--vermillion);
    margin-bottom: 3.5rem;
    letter-spacing: 0.4em;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.75rem;
}

.contact-item-icon {
    width: 62px;
    height: 62px;
    background: rgba(247, 243, 237, 0.025);
    border: 1px solid rgba(247, 243, 237, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-item-icon {
    border-color: var(--vermillion);
    background: rgba(199, 62, 29, 0.12);
    transform: rotate(-8deg);
}

.contact-item-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--vermillion);
    stroke-width: 1.5;
    fill: none;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-item-text p {
    font-family: var(--font-fr);
    font-size: 1.1rem;
    color: var(--paper-muted);
    line-height: 1.8;
}

.contact-item-text p strong {
    color: var(--paper);
    font-weight: 600;
}

.halal-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #166534 0%, #14532d 100%);
    padding: 1.75rem 2.5rem;
    border-radius: 20px;
    margin-top: 3.5rem;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 25px 60px rgba(22, 101, 52, 0.4);
    transition: var(--transition-smooth);
}

.halal-badge-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(22, 101, 52, 0.5);
}

.halal-badge-large svg {
    width: 30px;
    height: 30px;
    stroke: var(--paper);
    stroke-width: 1.5;
    fill: none;
}

.contact-map {
    position: relative;
    min-height: 600px;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(80%);
    opacity: 0.75;
}

.contact-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 9, 8, 0.7) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   FOOTER
============================================ */
footer {
    padding: 5rem 2rem 3.5rem;
    border-top: 1px solid rgba(247, 243, 237, 0.03);
    background: var(--ink);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo {
    font-family: var(--font-jp);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--paper);
}

.footer-divider {
    width: 1px;
    height: 28px;
    background: rgba(247, 243, 237, 0.12);
}

.footer-copy {
    font-family: var(--font-fr);
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(247, 243, 237, 0.25);
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    width: 56px;
    height: 56px;
    background: rgba(247, 243, 237, 0.02);
    border: 1px solid rgba(247, 243, 237, 0.04);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--vermillion);
    border-color: var(--vermillion);
    transform: translateY(-6px) rotate(-6deg);
    box-shadow: 0 20px 50px var(--vermillion-glow);
}

.footer-social svg {
    width: 24px;
    height: 24px;
    stroke: var(--paper);
    stroke-width: 1.5;
    fill: none;
}
