/* ============================================================
   HOLY PRINT — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---- Variables ---- */
:root {
    --bg:           #1a1a1a;
    --bg-card:      #222222;
    --bg-card-2:    #2a2a2a;
    --accent:       #FF2E8A;
    --accent-dark:  #d9216f;
    --text:         #FFFFFF;
    --muted:        rgba(255,255,255,0.55);
    --border:       rgba(255,255,255,0.07);
    --border-pink:  rgba(255,46,138,0.35);
    --glow:         0 0 40px rgba(255,46,138,0.18);
    --t:            0.3s ease;
    --nav-h:        72px;
    --pad:          100px;
    --r:            3px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
button { cursor: pointer; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
}
.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--r);
    border: 2px solid transparent;
    transition: var(--t);
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-2px);
}
.btn-outline-pink {
    background: transparent;
    color: var(--accent);
    border-color: var(--border-pink);
}
.btn-outline-pink:hover {
    background: rgba(255,46,138,0.08);
    transform: translateY(-2px);
}

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- Section utilities ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.section-title {
    font-size: clamp(38px, 5.5vw, 68px);
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.0;
}
.section-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }

.divider { width: 56px; height: 3px; background: var(--accent); margin: 20px 0 26px; }
.divider.centered { margin: 20px auto 26px; }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(5,5,5,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.6); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img { height: 34px; width: auto; display: block; }

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color var(--t);
    border-radius: var(--r);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--text); }
.nav-arrow { font-size: 9px; transition: transform 0.2s; }

/* Dropdown */
/* Bridge: invisible zone between nav item and menu so hover doesn't break */
.dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -20px; right: -20px;
    height: 10px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 640px;
    background: #202020;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 2px solid var(--accent);
    border-radius: 0 0 var(--r) var(--r);
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 24px 60px rgba(0,0,0,0.85);
    pointer-events: none;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.dropdown:hover .nav-arrow { transform: rotate(180deg); }

.dropdown-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.dropdown-col a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: var(--muted);
    transition: var(--t);
}
.dropdown-col a:hover { color: var(--text); padding-left: 6px; }

/* Dropdown layout variants */
.dropdown-menu.dropdown-1col { grid-template-columns: 1fr; min-width: 290px; }
.dropdown-menu.dropdown-2col { grid-template-columns: repeat(2, 1fr); min-width: 480px; }

/* Get a Quote button in navbar */
.nav-cta { margin-left: 12px; padding: 11px 22px; font-size: 11px; }

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 15px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: var(--r);
    white-space: nowrap;
    margin-left: 12px;
    transition: var(--t);
}
.nav-phone:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}
.nav-phone svg { flex-shrink: 0; }

.nav-quote { margin-left: 8px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: var(--t);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 999;
    overflow-y: auto;
    padding: 28px 28px 48px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    border-top: 1px solid var(--border);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav > a,
.mobile-nav-link {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: color var(--t);
}
.mobile-nav > a:hover,
.mobile-nav-link:hover { color: var(--accent); }

.mobile-subnav { padding: 0 0 8px 16px; }
.mobile-subnav h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 18px 0 6px;
}
.mobile-subnav a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    transition: color var(--t);
}
.mobile-subnav a:hover { color: var(--text); }
.mobile-nav-cta { margin-top: 28px; display: block; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

/* Scroll-controlled video hero */
.hero-video-wrap {
    height: 100vh;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    overflow: hidden;
    background: #000;
}
.hero-video-wrap .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
    z-index: 0;
}
/* hero grid pattern removed — replaced by animated SVG paths */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(255,46,138,0.07) 0%, transparent 68%);
    pointer-events: none;
}

/* ── Floating paths SVG (animated background) ── */
.hero-paths-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* traveling dash segment along each path */
@keyframes pathFlow {
    from { stroke-dashoffset: 2400; }
    to   { stroke-dashoffset: -2400; }
}

/* opacity pulse per-path — multiplied against --so custom property set by JS */
@keyframes pathPulse {
    0%, 100% { stroke-opacity: var(--so, 0.12); }
    50%       { stroke-opacity: calc(var(--so, 0.12) + 0.14); }
}

/* Floating shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-shape  { position: absolute; border: 1px solid rgba(255,46,138,0.12); }
.hs-1 { width: 320px; height: 320px; top: 8%; right: 4%; transform: rotate(12deg); animation: hfloat 9s ease-in-out infinite; }
.hs-2 { width: 180px; height: 180px; bottom: 12%; right: 12%; border-color: rgba(255,46,138,0.07); animation: hfloat 7s ease-in-out infinite reverse; }
.hs-3 { width: 90px;  height: 90px;  top: 35%; left: 3%; border-color: rgba(255,46,138,0.09); animation: hfloat 11s ease-in-out infinite; }
.hs-4 { width: 50px;  height: 50px;  top: 15%; left: 20%; border-color: rgba(255,46,138,0.06); animation: hfloat 6s ease-in-out infinite 2s; }

@keyframes hfloat {
    0%, 100% { transform: rotate(12deg) translateY(0);   }
    50%       { transform: rotate(12deg) translateY(-22px); }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 26px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 2px;
    background: var(--accent);
}
.hero-headline {
    font-size: clamp(54px, 9.5vw, 128px);
    line-height: 0.94;
    color: var(--text);
    margin-bottom: 30px;
}
.hero-headline .color-word { color: var(--accent); }
.hero-subline {
    font-size: 17px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 50px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse {
    0%, 100% { opacity: 1;   transform: scaleY(1); }
    50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================================
   VALUE PROPS
   ============================================================ */

.values {
    padding: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--border);
    gap: 1px;
}
.value-item {
    background: var(--bg-card);
    padding: 60px 44px;
    position: relative;
    overflow: hidden;
    transition: background var(--t);
}
.value-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.value-item:hover { background: var(--bg-card-2); }
.value-item:hover::before { transform: scaleX(1); }

.value-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 119px;
    color: rgba(255,46,138,0.12);
    line-height: 1;
    margin-bottom: 8px;
    pointer-events: none;
    transition: color 0.35s;
}
.value-item:hover .value-num { color: rgba(255,46,138,0.22); }
.value-title {
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   SERVICES GRID (homepage)
   ============================================================ */

.services-preview { padding: var(--pad) 0; background: var(--bg); }

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.srv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 0 0 32px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}
.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,46,138,0.35);
    border-color: var(--border-pink);
}

/* image placeholder */
.srv-img {
    width: 100%;
    height: 240px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,46,138,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.srv-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg, transparent, transparent 14px,
            rgba(255,46,138,0.04) 14px, rgba(255,46,138,0.04) 15px
        );
}
.srv-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.srv-img.has-logo::before { display: none; }
.srv-img.has-logo .srv-img-label { display: none; }
.srv-img-label {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,46,138,0.45);
    border: 1px solid rgba(255,46,138,0.2);
    padding: 7px 14px;
    border-radius: var(--r);
}
.srv-body { padding: 0 28px; flex: 1; display: flex; flex-direction: column; }
.srv-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.srv-card h3 { font-size: 22px; margin-bottom: 12px; }
.srv-card p  { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; flex: 1; }

.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    background: rgba(255,46,138,0.07);
    border: 1px solid rgba(255,46,138,0.18);
    border-radius: 2px;
    color: rgba(255,255,255,0.65);
    transition: var(--t);
}
.srv-card:hover .tag { background: rgba(255,46,138,0.14); color: var(--text); }

.section-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
    padding: var(--pad) 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 38px;
    position: relative;
    transition: border-color var(--t), box-shadow var(--t);
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 18px; right: 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 88px;
    color: rgba(255,46,138,0.08);
    line-height: 1;
}
.testi-card:hover {
    border-color: rgba(255,46,138,0.28);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: var(--accent); font-size: 13px; }
.testi-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 28px;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-av {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,46,138,0.12);
    border: 2px solid rgba(255,46,138,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: var(--accent);
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-co   { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   SCROLLING TESTIMONIALS COLUMNS
   ============================================================ */

.ts-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-height: 740px;
    overflow: hidden;
    /* fade cards in/out at top and bottom */
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    margin-top: 56px;
}

.ts-col          { flex-shrink: 0; width: 300px; }
.ts-col-md       { display: none; }
.ts-col-lg       { display: none; }

.ts-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px; /* matches gap — makes loop seamless */
    animation: tsScrollUp var(--dur, 15s) linear infinite;
}

/* pause on hover */
.ts-col:hover .ts-track { animation-play-state: paused; }

@keyframes tsScrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

/* compact card padding for narrow columns */
.ts-wrap .testi-card { padding: 24px 26px; width: 100%; }
.ts-wrap .testi-card::before { font-size: 60px; top: 10px; right: 16px; }

@media (min-width: 768px)  { .ts-col-md { display: block; } }
@media (min-width: 1024px) { .ts-col-lg { display: block; } }
@media (max-width: 500px)  { .ts-col { width: calc(100vw - 56px); max-width: 300px; } }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-sec {
    padding: 120px 0;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-sec::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,46,138,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.cta-sec h2  { font-size: clamp(40px, 6vw, 76px); position: relative; }
.cta-sec p   { font-size: 17px; color: var(--muted); max-width: 480px; margin: 20px auto 48px; line-height: 1.75; position: relative; }
.cta-btns    { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: #141414;
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 52px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 34px; margin-bottom: 10px; }
.footer-slogan {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
}
.footer-ci {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}
.footer-ci a { color: var(--muted); transition: color var(--t); }
.footer-ci a:hover { color: var(--accent); }
.footer-ci-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    transition: var(--t);
}
.social-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255,46,138,0.08);
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: var(--t); }
.footer-links a:hover { color: var(--text); padding-left: 4px; }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
    padding: calc(var(--nav-h) + 90px) 0 90px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent 0, transparent 119px,
            rgba(255,46,138,0.04) 119px, rgba(255,46,138,0.04) 120px
        ),
        repeating-linear-gradient(
            180deg,
            transparent 0, transparent 79px,
            rgba(255,46,138,0.025) 79px, rgba(255,46,138,0.025) 80px
        );
    pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(50px, 9vw, 100px); line-height: 0.95; margin-bottom: 20px; }
.page-hero-sub   { font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.75; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-page { padding: var(--pad) 0; }

.svc-intro-grid {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.svc-intro-grid.rev { direction: rtl; }
.svc-intro-grid.rev > * { direction: ltr; }

.svc-ph {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg-card);
    border: 1px solid rgba(255,46,138,0.2);
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.svc-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg, transparent, transparent 19px,
            rgba(255,46,138,0.04) 19px, rgba(255,46,138,0.04) 20px
        );
}
.svc-ph-label {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,46,138,0.5);
    border: 1px solid rgba(255,46,138,0.2);
    padding: 8px 18px;
    border-radius: var(--r);
}

.svc-list { margin-top: 28px; }
.svc-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
    transition: var(--t);
}
.svc-list-item:hover { color: var(--text); padding-left: 6px; }
.svc-list-item::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Full tile grid (services overview) */
.svc-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 80px;
}
.svc-tile {
    background: var(--bg-card);
    padding: 40px 34px;
    transition: background var(--t);
    position: relative;
    overflow: hidden;
}
.svc-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,46,138,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.svc-tile:hover { background: #111; }
.svc-tile:hover::after { opacity: 1; }
.tile-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: rgba(255,46,138,0.1);
    line-height: 1;
    margin-bottom: 18px;
}
.svc-tile h3 { font-size: 20px; margin-bottom: 10px; }
.svc-tile p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

.svc-section-sep {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 80px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page { padding: var(--pad) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: start;
}

.ci-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 30px 32px;
    margin-bottom: 14px;
    transition: border-color var(--t);
}
.ci-card:hover { border-color: var(--border-pink); }
.ci-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.ci-value { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.ci-note  { font-size: 13px; color: var(--muted); }

.map-ph {
    width: 100%;
    height: 210px;
    background: var(--bg-card);
    border: 1px solid rgba(255,46,138,0.18);
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.map-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg, transparent, transparent 39px,
            rgba(255,46,138,0.04) 39px, rgba(255,46,138,0.04) 40px
        ),
        repeating-linear-gradient(
            180deg, transparent, transparent 39px,
            rgba(255,46,138,0.04) 39px, rgba(255,46,138,0.04) 40px
        );
}
.map-pin { position: relative; z-index: 1; font-size: 28px; }

/* ============================================================
   FORMS
   ============================================================ */

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 48px;
}
.form-group { margin-bottom: 22px; }
.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
    outline: none;
    appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
    background: rgba(255,46,138,0.04);
    box-shadow: 0 0 0 3px rgba(255,46,138,0.1);
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF2E8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: rgba(255,255,255,0.03);
    cursor: pointer;
}
.form-select option { background: #111; color: var(--text); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-note { font-size: 12px; color: var(--muted); margin-top: 6px; }

.form-title {
    font-size: 26px;
    margin-bottom: 8px;
}
.form-intro {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}
.form-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 28px 0;
}
.form-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    margin-top: -4px;
}

/* ============================================================
   QUOTE PAGE
   ============================================================ */

.quote-page { padding: calc(var(--nav-h) + 60px) 0 var(--pad); }
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: 40px;
    align-items: start;
}
.quote-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.q-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 30px;
    margin-bottom: 14px;
}
.q-info-card h3 { font-size: 18px; margin-bottom: 12px; }
.q-info-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

.checklist { margin-top: 16px; }
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.q-contact-card {
    background: rgba(255,46,138,0.06);
    border: 1px solid var(--border-pink);
    border-radius: var(--r);
    padding: 28px 30px;
}
.q-contact-card p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.q-contact-card a { color: var(--accent); font-weight: 600; font-size: 14px; }
.q-contact-card a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1060px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .srv-grid     { grid-template-columns: repeat(2, 1fr); }
    .testi-grid   { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .svc-intro-grid  { grid-template-columns: 1fr; gap: 40px; }
    .svc-intro-grid.rev { direction: ltr; }
    .svc-tile-grid   { grid-template-columns: repeat(2, 1fr); }
    .quote-grid      { grid-template-columns: 1fr; }
    .quote-sidebar   { position: static; }
}

@media (max-width: 768px) {
    :root { --pad: 64px; --nav-h: 60px; }

    .nav-menu, .nav-phone { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
    .nav-cta { padding: 8px 14px; font-size: 10px; }

    .hero-video-wrap { height: auto; aspect-ratio: 16 / 10; margin-top: var(--nav-h); }
    .hero-video-wrap .hero-video { object-fit: cover; }

    .hero-headline { font-size: clamp(44px, 13vw, 72px); }
    .hero-subline  { font-size: 15px; }
    .hero-ctas     { flex-direction: column; align-items: flex-start; }

    .values-grid { grid-template-columns: 1fr; }
    .srv-grid     { grid-template-columns: 1fr; }
    .svc-tile-grid { grid-template-columns: 1fr; }
    .form-row     { grid-template-columns: 1fr; }

    .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .form-card { padding: 28px 20px; }
    .page-hero-title { font-size: clamp(38px, 12vw, 64px); }
    .section-title   { font-size: clamp(30px, 8vw, 54px); }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .value-item { padding: 40px 24px; }
    .hero-headline { font-size: clamp(40px, 14vw, 62px); }
}

/* ── Card Swiper (stacked deck, landscape) ───────────────────── */
.card-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 36px;
    cursor: pointer;
}

.swipe-card {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    transform:
        perspective(700px)
        translateZ(calc(-12px * var(--i, 1)))
        translateY(calc(7px * var(--i, 1)))
        translateX(var(--swipe-x, 0px))
        rotateY(var(--swipe-rotate, 0deg));
    transition: transform 0.38s ease, opacity 0.38s ease;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.swipe-card[data-reset] {
    transition: none !important;
}

.swipe-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    display: block;
    position: relative;
    z-index: 1;
}
.swipe-card .bg-blur {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.5);
    transform: scale(1.1);
    z-index: 0;
    pointer-events: none;
}
