:root {
    --primary: #ff5e14;
    --primary-light: #ff8c52;
    --primary-glow: rgba(255, 94, 20, 0.3);
    --secondary: #00d2ff;
    --secondary-dark: #0088aa;
    --bg-dark: #0a0b0f;
    --bg-section: #0f1115;
    --bg-card: #161a22;
    --text-main: #e8ecf1;
    --text-muted: #94a3b8;
    --text-dim: #555e6e;
    --glass: rgba(22, 26, 34, 0.8);
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,94,20,0.4);
    --radius: 16px;
    --radius-sm: 8px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.1; }
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ═══ NAV ═══ */
#navbar {
    position: fixed; top:0; left:0; width:100%; z-index:1000;
    padding: 1.2rem 0; transition: var(--transition); background: transparent;
}
#navbar.scrolled {
    background: rgba(10,11,15,0.92); backdrop-filter: blur(20px);
    padding: 0.8rem 0; border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1920px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-img {
    width: 48px; height: 48px; object-fit: contain; flex-shrink: 0;
    mix-blend-mode: screen;
}
.logo-img--sm {
    width: 36px; height: 36px;
}
.logo-text { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
.logo-text .inn { color: var(--primary); }
.logo-text .ctrl { color: #fff; }
.logo-text .sub { display: block; font-size: 0.55rem; font-weight: 600; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
    background: linear-gradient(135deg, var(--primary), #e04500) !important;
    color: #fff !important; padding: 0.7rem 1.6rem; border-radius: 50px;
    font-weight: 700 !important; font-size: 0.85rem !important;
    box-shadow: 0 8px 24px var(--primary-glow); transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,94,20,0.5); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }

/* ═══ HERO ═══ */
#hero { position: relative; overflow: hidden; background: #050608; }
.hero-bg { position: absolute; inset: 0; z-index: 0; display: flex; justify-content: center; }
.hero-bg img { width: 100%; max-width: 1920px; height: 100%; object-fit: cover; object-position: 75% center; }
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.82) 32%, rgba(0,0,0,0.42) 58%, rgba(0,0,0,0.05) 100%);
}
.hero-content {
    position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; width: 100%;
    min-height: 90vh; display: flex; align-items: center; justify-content: flex-start;
    padding: 8rem 4rem 4rem;
}
.hero-copy { max-width: 650px; text-align: left; }
.hero-copy h1 {
    font-size: clamp(4rem, 7vw, 7.5rem); font-weight: 900;
    text-transform: uppercase; letter-spacing: -2px; margin: 0 0 1.2rem; line-height: 0.9;
}
.hero-copy h1 .accent { color: var(--primary); }
.hero-copy h1 .dot { color: var(--primary); }

/* FIX: hero subtext much brighter and more readable */
.hero-sub {
    font-size: 1.15rem; font-weight: 600; color: rgba(255,255,255,0.85);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2.5rem; line-height: 1.6;
}
.hero-sub .hl { color: var(--primary); font-weight: 700; }

.hero-bullets {
    display: grid; grid-template-columns: repeat(2, auto); gap: 1.2rem 2rem; margin-bottom: 2.5rem;
    justify-content: flex-start;
}
.hero-bullets li {
    list-style: none; display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; color: var(--text-main); font-weight: 500;
}
.hero-bullets li .icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,94,20,0.2); border: 1px solid rgba(255,94,20,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: var(--primary); flex-shrink: 0;
}

.hero-btns { display: flex; gap: 1rem; margin-bottom: 3rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e04500);
    color: #fff; padding: 1rem 2.2rem; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: var(--transition); display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,94,20,0.5); }
.btn-ghost {
    color: #fff; border: 2px solid rgba(255,255,255,0.25);
    padding: 1rem 2.2rem; border-radius: 50px;
    font-weight: 600; transition: var(--transition); display: inline-block;
}
.btn-ghost:hover { border-color: var(--secondary); color: var(--secondary); }

.hero-trust {
    display: grid; grid-template-columns: repeat(2, auto); gap: 1.2rem 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust span {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: rgba(255,255,255,0.45);
    display: flex; align-items: center; gap: 0.5rem;
}
.hero-trust span::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary); flex-shrink: 0;
}

/* ═══ SECTION: SERVICES LIST ═══ */
.services-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}
.services-intro {
    text-align: center; margin-bottom: 3rem;
}
.services-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 0.8rem;
}
.services-intro h2 .hl { color: var(--primary); }
.services-intro p {
    color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto;
}

.services-list {
    max-width: 700px; margin: 0 auto;
}
.svc-item {
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.svc-item:first-child { border-top: 1px solid var(--border); }

.accordion-header {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; cursor: pointer; user-select: none;
}
.accordion-header:hover h4 { color: var(--primary); }
.ah-left {
    display: flex; align-items: baseline; gap: 1.5rem; flex-grow: 1;
}
.svc-num {
    font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 800;
    color: var(--primary); flex-shrink: 0; min-width: 28px;
}
.ah-left h4 {
    font-size: 1.05rem; font-weight: 600; text-transform: none;
    letter-spacing: 0; line-height: 1.4; transition: var(--transition); margin: 0;
}
.accordion-icon {
    font-size: 1.5rem; font-weight: 300; color: var(--primary);
    transition: transform 0.3s ease; display: inline-block;
    width: 24px; text-align: center;
}
.accordion-content {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    padding-left: calc(28px + 1.5rem); padding-right: 2rem;
}
.accordion-content p {
    color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; margin: 0;
}
.accordion-item.active .accordion-content {
    max-height: 400px; opacity: 1; margin-top: 1rem;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* ═══ GALLERY & SERVICES ═══ */
.gallery-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}
.gallery-intro {
    text-align: center; margin-bottom: 5rem;
}
.gallery-intro h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); text-transform: uppercase; margin-bottom: 0.8rem;
}
.gallery-intro h2 .hl { color: var(--primary); }
.gallery-intro p {
    color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto;
}

.gallery-block {
    margin-bottom: 7rem;
}
.gallery-block:last-child { margin-bottom: 0; }

.g-title {
    font-size: clamp(1.4rem, 3vw, 2rem); text-transform: uppercase; margin-bottom: 1.8rem; text-align: center; color: var(--text-main);
}
.gallery-row {
    display: flex; gap: 1.5rem; margin-bottom: 2rem; justify-content: center;
}
.gallery-row.split-2 {
    display: grid; grid-template-columns: 1fr 1fr;
}
.gallery-item {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
    background: var(--bg-card); display: flex; flex-direction: column;
}
.gallery-item.full-width { max-width: 900px; width: 100%; margin: 0 auto; }
.g-media-wrap {
    position: relative; width: 100%; padding-bottom: 65%;
}
.g-media-wrap img, .g-media-wrap video, .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
}
.g-media-wrap img, .g-media-wrap video {
    position: absolute; top: 0; left: 0;
}
.g-tag {
    position: absolute; top: 1rem; left: 1rem; z-index: 10;
    background: rgba(0,0,0,0.85); color: #fff; padding: 0.5rem 1rem;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; border-radius: 4px; border-left: 3px solid var(--primary);
    backdrop-filter: blur(4px);
}
.g-desc {
    padding: 1.8rem; color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-style: italic; border-top: 1px solid var(--border);
}
.g-desc-center {
    text-align: center; max-width: 800px; margin: 0 auto; padding: 0; font-style: italic; color: var(--text-muted); font-size: 1.1rem; line-height: 1.8;
}

/* ═══ SECTION: THE PROCESS ═══ */
.process-section {
    padding: 8rem 0;
    background: var(--bg-section);
}
.process-hero-img {
    width: 100%; max-height: 550px; border-radius: var(--radius);
    overflow: hidden; margin-bottom: 5rem;
    border: 1px solid var(--border);
}
.process-hero-img img { width: 100%; height: 100%; object-fit: cover; max-height: 550px; }

.process-intro {
    text-align: center; margin-bottom: 4rem;
}
.process-intro h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem); text-transform: uppercase;
    margin-bottom: 1rem;
}
.process-intro p {
    color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto;
}

.process-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.pstep {
    text-align: center; padding: 2.5rem 1.5rem;
}
.pstep-num {
    font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900;
    color: rgba(255,94,20,0.15); line-height: 1; margin-bottom: 1rem;
    transition: color 0.4s;
}
.pstep:hover .pstep-num { color: var(--primary); }
.pstep h4 {
    font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 0.8rem;
}
.pstep p {
    color: var(--text-muted); font-size: 0.9rem; line-height: 1.7;
    max-width: 260px; margin: 0 auto;
}

/* ═══ SECTION: BEFORE & AFTER ═══ */
.ba-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}
.ba-intro {
    text-align: center; margin-bottom: 4rem;
}
.ba-intro h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem); text-transform: uppercase;
    margin-bottom: 1rem;
}
.ba-intro h2 .hl { color: var(--primary); }
.ba-intro p {
    color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto;
}

/* Before/After Slider */
.ba-slider-wrap { margin-bottom: 4rem; }
.ba-slider-img {
    position: relative; width: 100%; aspect-ratio: 16/9;
    border-radius: var(--radius); overflow: hidden;
    cursor: ew-resize; border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.ba-img-before, .ba-img-after {
    position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;
}
.ba-img-after { clip-path: inset(0 0 0 50%); }

.ba-handle {
    position: absolute; top:0; bottom:0; left:50%; z-index: 10;
    transform: translateX(-50%); pointer-events: none;
}
.ba-handle-line {
    position: absolute; top:0; bottom:0; left:50%; width: 4px;
    background: rgba(255,255,255,0.95); transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
}
.ba-handle-grip {
    position: absolute; top:50%; left:50%; transform: translate(-50%,-50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--primary); display: flex; align-items: center; justify-content: center;
    gap: 0.4rem; box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.7);
    font-size: 0.85rem; color: #fff; font-weight: 900; border: 3px solid #fff;
    animation: pulse-grip 2s infinite;
}
@keyframes pulse-grip {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.7), 0 4px 20px rgba(0,0,0,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 94, 20, 0), 0 4px 20px rgba(0,0,0,0.4); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0), 0 4px 20px rgba(0,0,0,0.4); }
}

.ba-tag {
    position: absolute; bottom: 1.5rem; padding: 0.4rem 1rem;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 4px; z-index: 5;
}
.ba-tag.before { left: 1.5rem; background: rgba(0,0,0,0.7); color: #fff; }
.ba-tag.after { right: 1.5rem; background: var(--primary); color: #fff; }

.ba-caption {
    text-align: center; color: var(--text-dim); font-size: 0.85rem;
    margin-top: 1.2rem; font-style: italic;
}
.ba-caption-center {
    text-align: center; color: var(--text-dim); font-size: 0.85rem;
    margin-bottom: 4rem; font-style: italic;
}

/* Side-by-side pair */
.ba-pair {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    margin-bottom: 1rem;
}
.ba-pair-img {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3; border: 1px solid var(--border);
}
.ba-pair-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.ba-pair-item:hover .ba-pair-img img { transform: scale(1.03); }

/* ═══ SECTION: WHY HOTELS ═══ */
.why-section {
    padding: 8rem 0;
    background: var(--bg-section);
}
.why-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-img {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); aspect-ratio: 3/4; max-height: 650px;
}
.why-img img { width:100%; height:100%; object-fit:cover; }

.why-text h2 {
    font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.why-text h2 .hl { color: var(--primary); }

.why-list {
    list-style: none; display: flex; flex-direction: column; gap: 1.5rem;
}
.why-list li {
    display: flex; gap: 1rem; align-items: flex-start;
}
.wl-marker {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary); flex-shrink: 0; margin-top: 0.55rem;
    box-shadow: 0 0 8px var(--primary-glow);
}
.why-list li div { font-size: 0.95rem; line-height: 1.7; }
.why-list li strong { color: var(--text-main); display: block; margin-bottom: 0.1rem; }
.why-list li div br + * { color: var(--text-muted); }
/* Target text after the <br> inside the div */
.why-list li div { color: var(--text-muted); }
.why-list li div strong { color: var(--text-main); }

/* ═══ SECTION: PTAC DETAILING ═══ */
.detailing-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}
.detailing-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.detailing-img {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
}
.detailing-img img { width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3; }
.detailing-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); text-transform: uppercase;
    margin-bottom: 2rem; line-height: 1.2;
}
.detailing-text h2 .hl { color: var(--primary); }
.detailing-text p {
    color: var(--text-muted); font-size: 1rem; line-height: 1.8;
    margin-bottom: 1.2rem;
}
.detailing-text p:last-child { margin-bottom: 0; }

/* ═══ CONTACT ═══ */
.contact-section { padding: 8rem 0; background: var(--bg-section); }
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info h2 { font-size: 2.5rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.contact-tagline { font-size: 1.3rem; font-style: italic; color: var(--primary); margin-bottom: 2rem; font-weight: 600; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.contact-detail {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-detail .cd-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-detail p { font-weight: 500; }
.contact-detail small { display: block; color: var(--text-dim); font-size: 0.8rem; }

.contact-form {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 0; }
.field { margin-bottom: 1.2rem; }
.field label {
    display: block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.field input, .field textarea, .field select {
    width: 100%; background: var(--bg-dark); border: 1px solid var(--border);
    padding: 0.9rem 1rem; border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.95rem; color: #fff; transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,94,20,0.1);
}
.field select { cursor: pointer; }
.field select option { background: var(--bg-dark); }
.btn-submit {
    width: 100%; background: linear-gradient(135deg, var(--primary), #e04500);
    color: #fff; border: none; padding: 1rem; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { box-shadow: 0 12px 30px var(--primary-glow); transform: translateY(-2px); }

/* ═══ BUSINESS CARD ═══ */
.card-section { padding: 6rem 0; background: var(--bg-dark); }
.cards-showcase {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    max-width: 850px; margin: 0 auto;
}
.bcard-premium {
    position: relative; overflow: hidden;
    background: #080a0f;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    max-width: 650px; margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.4s var(--ease);
}
.bcard-premium:hover { transform: translateY(-5px); border-color: rgba(255,94,20,0.3); }
.bcp-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
    background: radial-gradient(circle at top right, rgba(255,94,20,0.1) 0%, transparent 50%);
}
.bcp-left {
    padding: 3rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between;
}
.bcp-right {
    padding: 3rem; background: rgba(255,255,255,0.02); border-left: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.bcp-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2rem; }
.bcp-logo-img { width: 44px; height: 44px; object-fit: contain; mix-blend-mode: screen; }
.bcp-brand { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
.bcp-brand .inn { color: var(--primary); }
.bcp-brand .sub { display: block; font-size: 0.5rem; letter-spacing: 2px; color: var(--text-dim); font-weight: 600; margin-top: 2px; }

.bcp-person { margin-bottom: 2rem; }
.bcp-name { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; color: #fff; margin-bottom: 0.2rem; }
.bcp-title { font-size: 0.85rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }

.bcp-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.bcp-contact a {
    display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem;
    color: var(--text-muted); transition: color 0.3s;
}
.bcp-contact a:hover { color: var(--primary); }
.bcp-contact .icon { font-size: 1rem; color: var(--text-dim); }

.bcp-qr-wrapper { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.bcp-qr { width: 120px; height: 120px; border-radius: 8px; border: 4px solid #fff; }
.bcp-qr-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); font-weight: 600; text-align: center; }

@media (max-width: 600px) {
    .bcard-premium { flex-direction: column; }
    .bcp-left, .bcp-right { padding: 2rem; }
    .bcp-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
    .bcp-qr { width: 100px; height: 100px; }
}

/* ═══ FOOTER ═══ */
footer {
    background: #050608; padding: 5rem 0 2rem; border-top: 1px solid var(--border);
}
.footer-inner {
    display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer-col h5 {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-main); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--text-dim);
}

/* ═══ SCROLL REVEAL ═══ */
.reveal { opacity:0; transform:translateY(25px); transition: all 0.7s var(--ease); }
.reveal.visible { opacity:1; transform:none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .why-layout { grid-template-columns: 1fr; gap: 3rem; }
    .why-img { max-height: 400px; aspect-ratio: 16/9; }
    .detailing-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .cards-showcase { grid-template-columns: 1fr; max-width: 420px; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .gallery-row.split-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(10,11,15,0.98); backdrop-filter: blur(20px);
        padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border);
    }
    .hero-copy h1 { font-size: 3rem; }
    #hero { min-height: 82vh; }
    .hero-bg img { object-position: 75% center; }
    .hero-content { padding: 8rem 2rem 4rem; justify-content: center; }
    .hero-copy { text-align: center; }
    .hero-bullets { justify-content: center; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { text-align: center; }
    .process-steps { grid-template-columns: 1fr; }
    .process-hero-img { max-height: 300px; }
    .ba-pair { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ═══ PREMIUM EMPHASIS ═══ */
.emphasis {
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 0 16px rgba(255, 255, 255, 0.3);
}
