/* ===================================================================
   GREWAL SHOPFRONT & SHUTTERS — MAIN STYLESHEET
   =================================================================== */

:root {
    --bg-primary: #F9F7F4;
    --bg-secondary: #FFFFFF;
    --bg-alt: #F2EDE4;
    --gold: #C9A84C;
    --gold-dark: #A8832A;
    --gold-light: #F0D080;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #888888;
    --border-color: #E5DDD0;
    --dark-bg: #111111;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 6px;
    --shadow-gold: 0 20px 60px rgba(201, 168, 76, 0.25);
    --container-max: 1380px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ---------- Base icon sizing (prevents unsized inline SVGs rendering huge) ---------- */
.icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
.icon-sm { width: 15px; height: 15px; }
.icon-lg { width: 32px; height: 32px; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-primary); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section--white { background: var(--bg-secondary); }
.section--dark { background: var(--dark-bg); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 1;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--gold {
    background: var(--gold);
    color: #fff;
}
.btn--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-dark);
    transform: translateX(-101%);
    transition: transform 0.35s ease;
    z-index: -1;
}
.btn--gold:hover::before { transform: translateX(0); }
.btn--gold:hover { box-shadow: var(--shadow-gold); transform: scale(1.03); }
.btn--outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.btn--outline.on-light { border-color: var(--text-primary); color: var(--text-primary); }
.btn--outline:hover { background: #fff; color: var(--text-primary); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Section Titles ---------- */
.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-title.align-left { text-align: left; margin: 0 0 50px; }
.pill {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 18px;
}
.section-title .underline {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 22px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.65,0,0.35,1);
}
.section-title.align-left .underline { margin: 0 0 22px; }
.section-title.in-view .underline { transform: scaleX(1); }
.section-title p { color: var(--text-secondary); font-size: 17px; }
.section-title.on-dark p { color: rgba(255,255,255,0.7); }

/* ---------- Cards ---------- */
.card { border-radius: 10px; overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

/* ---------- Icon Boxes ---------- */
.icon-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.icon-box__icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,168,76,0.12);
    border-radius: 12px;
    color: var(--gold-dark);
}
.icon-box__icon .icon,
.icon-box__icon svg { width: 26px; height: 26px; }
.icon-box h4 { font-size: 18px; margin-bottom: 6px; }
.icon-box p { color: var(--text-secondary); font-size: 14.5px; }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(10,10,10,0.88) 20%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.35)), url('/assets/images/hero-bg.webp') center/cover fixed;
    color: #fff;
    padding-top: 180px;
    padding-bottom: 80px;
    overflow: hidden;
}
.hero__lines { position: absolute; inset: 0; pointer-events: none; opacity: 0.15; background:
    repeating-linear-gradient(115deg, transparent 0 60px, var(--gold) 60px 61px);
}
.hero .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero__content .pill { background: rgba(201,168,76,0.18); color: var(--gold-light); }
.hero__heading { font-size: clamp(36px, 5.2vw, 64px); margin-bottom: 22px; color: #fff; }
.hero__heading .word { display: inline-block; overflow: hidden; }
.hero__heading .word span { display: inline-block; transform: translateY(110%); }
.hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 560px; margin-bottom: 34px; opacity: 0; }
.hero__actions { display: flex; gap: 18px; margin-bottom: 56px; flex-wrap: wrap; }
.hero__actions .btn { opacity: 0; transform: translateY(30px); }
.hero__counters { display: flex; gap: 50px; flex-wrap: wrap; }
.hero__counter { }
.hero__counter .num { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--gold); }
.hero__counter .label { font-size: 13px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }
.hero__visual { position: relative; perspective: 1200px; }

/* Glowing animated LED backlight behind the video "screen" — a soft, slowly
   rotating multi-colour halo that peeks out from the edges of the bezel. */
.hero__visual-card {
    position: relative;
    border-radius: 18px;
    padding: 8px;
    background: linear-gradient(160deg, #1e1e1e, #0a0a0a);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    animation: floatY 5s ease-in-out infinite;
    transform: rotateY(-8deg) rotateX(4deg);
}
.hero__visual-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    padding: 3px;
    background: conic-gradient(from 0deg, var(--gold), #ffe9b0, #6ec6ff, var(--gold-light), var(--gold));
    filter: blur(14px) saturate(140%);
    opacity: 0.85;
    z-index: 0;
    animation: ledSpin 6s linear infinite;
}
.hero__visual-card::after {
    /* Thin crisp LED strip line sitting right on the bezel edge, on top of the glow */
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: conic-gradient(from 0deg, var(--gold), #ffe9b0, #6ec6ff, var(--gold-light), var(--gold));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    animation: ledSpin 6s linear infinite;
}
@keyframes ledSpin { to { transform: rotate(360deg); } }

.hero__visual-video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
}
@keyframes floatY { 0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0);} 50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-18px);} }

/* Respect reduced-motion preference: keep the glow but stop the spin */
@media (prefers-reduced-motion: reduce) {
    .hero__visual-card::before,
    .hero__visual-card::after { animation: none; }
}

/* ===================== TRUST / LOGO BAR ===================== */
.trust-bar { background: #fff; padding: 34px 0; border-bottom: 1px solid var(--border-color); border-top: 1px solid var(--border-color); overflow: hidden; }
.trust-bar__track { display: flex; gap: 70px; width: max-content; animation: marquee 28s linear infinite; }
.trust-bar:hover .trust-bar__track { animation-play-state: paused; }
.trust-bar__item { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--text-muted); white-space: nowrap; letter-spacing: 1px; text-transform: uppercase; opacity: 0.7; border-left: 2px solid var(--gold); padding-left: 20px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== ABOUT ===================== */
.about-section .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.about-section__img { position: relative; display: flex; align-items: center; justify-content: center; }
.about-section__img img { border-radius: 14px; width: 100%; max-width: 480px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 34px 0; }

/* ===================== SERVICES GRID ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    position: relative;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.35s ease, transform 0.35s ease;
}
.service-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.service-card:hover .service-card__bg { transform: scale(1.08); }
.service-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.85) 100%); }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.service-card__content { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; color: #fff; }
.service-card__content h3 { color: #fff; font-size: 21px; margin-bottom: 8px; }
.service-card__content p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.service-card__arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: 14px; }
.service-card__arrow .icon { transition: transform 0.3s ease; }
.service-card:hover .service-card__arrow .icon { transform: translateX(6px); }

/* ===================== WHY CHOOSE US ===================== */
.why-choose { position: relative; background: var(--bg-alt); overflow: hidden; }
.why-choose__pattern { position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(var(--gold) 1px, transparent 1px); background-size: 26px 26px; opacity: 0.08; }
.why-choose .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.why-grid .icon-box__icon svg { animation: none; }
.why-choose__img { border: 8px solid #fff; border-radius: 14px; box-shadow: 0 30px 70px rgba(0,0,0,0.12); outline: 2px solid var(--gold); outline-offset: 6px; }

/* ===================== STATS ===================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-box .icon-box__icon { margin: 0 auto 18px; background: rgba(201,168,76,0.15); }
.stat-box .num { font-family: var(--font-heading); font-size: 46px; font-weight: 800; color: var(--gold); }
.stat-box .label { color: rgba(255,255,255,0.7); font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }

/* ===================== FEATURED PRODUCTS ===================== */
.products-scroll { display: grid; grid-template-columns: repeat(6, minmax(230px, 1fr)); gap: 24px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: thin; }
.product-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.product-card__img { height: 180px; overflow: hidden; }
.product-card__img img { height: 100%; width: 100%; object-fit: cover; }
.product-card__body { padding: 20px; }
.product-card__body h4 { font-size: 16px; margin-bottom: 8px; }
.product-card__body p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }

/* ===================== PROCESS ===================== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-line { position: absolute; top: 44px; left: 12%; right: 12%; height: 2px; background: var(--border-color); overflow: hidden; }
.process-line__fill { height: 100%; width: 0; background: var(--gold); transition: width 1.4s cubic-bezier(0.65,0,0.35,1); }
.process-line.in-view .process-line__fill { width: 100%; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__icon { width: 88px; height: 88px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold-dark); }
.process-step__icon .icon, .process-step__icon svg { width: 32px; height: 32px; }
.map-pin .icon, .map-pin svg { width: 26px; height: 26px; }
.gallery-item__overlay .icon, .gallery-item__overlay svg { width: 24px; height: 24px; }
.process-step__num { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 8px; display: block; }
.process-step h4 { font-size: 18px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-secondary); }

/* ===================== PORTFOLIO / GALLERY ===================== */
.filter-bar { display: flex; justify-content: center; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 14px;
    background: #fff;
    transition: all 0.25s ease;
}
.filter-btn.is-active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.gallery-grid { columns: 3 260px; column-gap: 24px; }
.gallery-item { break-inside: avoid; margin-bottom: 24px; position: relative; border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; transition: transform 0.5s ease; }
.gallery-item__overlay {
    position: absolute; inset: 0;
    background: rgba(201,168,76,0.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.35s ease;
    color: #fff;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
    position: relative;
    background: linear-gradient(rgba(10,10,10,0.82), rgba(10,10,10,0.9)), url('/assets/images/cta-banner-bg.webp') center/cover fixed;
    color: #fff;
    text-align: center;
    padding: 110px 0;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 36px; font-size: 17px; }
.cta-banner__actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5);} 50% { box-shadow: 0 0 0 16px rgba(201,168,76,0);} }

/* ===================== TESTIMONIALS ===================== */
.testimonial-card { background: #fff; border-radius: 14px; padding: 34px; border: 1px solid var(--border-color); height: 100%; }
.testimonial-card__stars { color: var(--gold); display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-card__stars .icon { width: 18px; height: 18px; }
.testimonial-card p.quote-text { font-size: 15.5px; color: var(--text-secondary); margin-bottom: 24px; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--gold-dark); }
.testimonial-card__author strong { display: block; font-size: 15px; }
.testimonial-card__author span { font-size: 13px; color: var(--text-muted); }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; }

/* ===================== COVERAGE ===================== */
.coverage .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.coverage-list li { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-weight: 500; padding: 6px 0; border-bottom: 1px dashed var(--border-color); }
.coverage-list li .icon { color: var(--gold); flex-shrink: 0; width: 20px; height: 20px; }
.coverage-map { position: relative; }
.coverage-map img { border-radius: 14px; }
.map-pin { position: absolute; color: var(--gold); animation: dropPin 0.6s ease both; }
@keyframes dropPin { from { transform: translateY(-30px); opacity: 0;} to { transform: translateY(0); opacity: 1;} }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--gold); }
.blog-card__img { position: relative; height: 210px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }
.blog-card__body { padding: 24px; }
.blog-card__date { font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px; display: block; }
.blog-card__body h3 { font-size: 19px; margin-bottom: 12px; }
.blog-card__body p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.blog-card__link { color: var(--gold-dark); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* ===================== PAGE BANNER ===================== */
.page-banner {
    position: relative;
    padding: 220px 0 90px;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.85)), var(--banner-bg, url('/assets/images/hero-bg.webp')) center/cover;
}
.page-banner h1 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 16px; color: #fff; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }
.breadcrumb a { color: var(--gold-light); }

/* ===================== FORMS ===================== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card { background: #fff; border-radius: 14px; padding: 40px; box-shadow: 0 30px 70px rgba(0,0,0,0.08); }
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 14.5px; }
.alert--success { background: #e8f7ee; color: #1c7c40; border: 1px solid #b7e5c6; }
.alert--error { background: #fdeceb; color: #b23122; border: 1px solid #f3c3bd; }

/* ===================== CONTACT PAGE ===================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}
.contact-info-card {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-6px);
    background: #fff;
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 24px 50px rgba(0,0,0,0.08);
}
.contact-info-card a:hover { color: var(--gold-dark); }

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: stretch;
}

/* Dark "get in touch" panel */
.contact-panel {
    background: var(--dark-bg);
    border-radius: 18px;
    padding: 44px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
.contact-panel::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.14), transparent 70%);
    pointer-events: none;
}
.contact-panel h3 { color: #fff; font-size: 25px; margin: 12px 0 10px; }
.contact-panel > div > p { color: rgba(255,255,255,0.6); font-size: 14.5px; line-height: 1.7; }

.contact-panel__list { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.contact-panel__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-panel__list .icon-box__icon {
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
    width: 42px; height: 42px;
    border-radius: 10px;
}
.contact-panel__list strong { display: block; color: #fff; font-size: 15px; font-weight: 700; }
.contact-panel__list span { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 2px; }

.contact-panel__map { border-radius: 14px; overflow: hidden; position: relative; z-index: 1; }
.contact-panel__map iframe { width: 100%; height: 210px; border: 0; display: block; }

.contact-panel__social { display: flex; gap: 10px; margin-top: auto; position: relative; z-index: 1; }
.contact-panel__social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all 0.25s ease;
}
.contact-panel__social a:hover { background: var(--gold); border-color: var(--gold); color: #111; transform: translateY(-3px); }

@media (max-width: 1000px) {
    .contact-main { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .contact-info-grid { grid-template-columns: 1fr; margin-bottom: 40px; }
    .contact-panel { padding: 34px 26px; }
}

/* ===================== FAQ ===================== */
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item__q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-weight: 600; font-size: 16px; cursor: pointer; }
.faq-item__q .icon { transition: transform 0.3s ease; color: var(--gold); flex-shrink: 0; }
.faq-item.is-open .faq-item__q .icon { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--text-secondary); font-size: 14.5px; }
.faq-item__a-inner { padding-bottom: 22px; }

/* ===================== TEAM ===================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { perspective: 1200px; height: 340px; }
.team-card__inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s; transform-style: preserve-3d; border-radius: 14px; }
.team-card:hover .team-card__inner { transform: rotateY(180deg); }
.team-card__front, .team-card__back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 14px; overflow: hidden; }
.team-card__front img { width: 100%; height: 100%; object-fit: cover; }
.team-card__front-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; padding: 20px; }
.team-card__back { transform: rotateY(180deg); background: var(--dark-bg); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.team-card__back .icon { color: var(--gold); margin-bottom: 14px; }

/* ===================== UTIL ===================== */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }
.gold-text { color: var(--gold-dark); }
.tilt-card { transform-style: preserve-3d; }
